/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    height: 170px;
    width: auto;
    object-fit: contain;
}

.nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #2c3e50;
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #1a252f;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link-login {
    background-color: #2c3e50;
    color: #ffffff !important;
    padding: 0.5rem 1.5rem !important;
    border-radius: 50px;
    margin-left: 1rem;
    transition: all 0.3s ease;
}

.nav-link-login::after {
    display: none;
}

.nav-link-login:hover {
    background-color: #1a252f;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(44, 62, 80, 0.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 2rem;
    padding-top: 10rem;
    background-image: url('https://afqnrbwwkseseegfreyr.supabase.co/storage/v1/object/public/eulogia/landing/3_hor-nar.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-content {
    text-align: left;
    z-index: 2;
    max-width: 900px;
    position: relative;
    width: 100%;
    padding-left: 4rem;
}

.slogan {
    font-size: 4.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.tagline {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 2rem;
    font-weight: 300;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.btn-contacto {
    display: inline-block;
    padding: 1.25rem 3.5rem;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.btn-cta {
    display: inline-block;
    padding: 1.25rem 3.5rem;
    background-color: #2c3550;
    color: #c0d235;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    margin-right: 1rem;
}

.btn-cta:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

.btn-contacto:hover {
    background-color: #1a252f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
}

/* Trust Section */
.trust {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
    text-align: center;
}

.trust-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.trust-text {
    font-size: 2.5rem;
    color: #2c3e50;
    font-weight: 600;
    margin: 0;
}

.trust-logo-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    position: relative;
}

.trust-logo-link:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.trust-logo {
    max-height: 180px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.linkedin-icon {
    width: 24px;
    height: 24px;
    fill: #0077b5;
    transition: fill 0.3s ease;
}

.trust-logo-link:hover .linkedin-icon {
    fill: #005885;
}

/* Features Section */
.features {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.features-image {
    flex: 0 0 400px;
}

.features-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.features-content {
    flex: 1;
}

.features-list {
    list-style: none;
}

.features-list li {
    margin-bottom: 2.5rem;
    padding-left: 2rem;
    position: relative;
}

.features-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background-color: #2c3e50;
    border-radius: 50%;
}

.features-list h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.features-list p {
    font-size: 1.1rem;
    color: #546e7a;
    line-height: 1.8;
}

/* Contact Section */
.contact {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 1rem;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: #546e7a;
    text-align: center;
    margin-bottom: 3rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form-wrapper,
.contact-info-wrapper {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-form-wrapper h3,
.contact-info-wrapper h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    font-weight: 600;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 0.95rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 0.875rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background-color: #ffffff;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c3e50;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    padding: 1rem 2rem;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(44, 62, 80, 0.2);
    margin-top: 0.5rem;
}

.btn-submit:hover:not(:disabled) {
    background-color: #1a252f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 62, 80, 0.3);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-loader {
    display: inline-block;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item h4 {
    font-size: 1rem;
    color: #546e7a;
    margin-bottom: 0.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
}

.contact-item a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-item a:hover {
    color: #1a252f;
    text-decoration: underline;
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background-color: #25D366;
    color: #ffffff !important;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none !important;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-link:hover {
    background-color: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    text-decoration: none !important;
}

.whatsapp-link svg {
    width: 24px;
    height: 24px;
}

/* Footer */
.footer {
    padding: 2rem;
    text-align: center;
    background-color: #f5f7fa;
    color: #546e7a;
    font-size: 0.95rem;
}

/* Chatbot Widget */
.chatbot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    font-family: inherit;
}

.chatbot-window {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 380px;
    height: 600px;
    max-height: calc(100vh - 100px);
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    overflow: hidden;
    animation: slideUp 0.3s ease-out;
}

.chatbot-window.active {
    display: flex;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chatbot-header {
    background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
    color: #ffffff;
    padding: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-header-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.chatbot-avatar {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.chatbot-header-text h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.chatbot-status {
    font-size: 0.75rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.chatbot-status::before {
    content: '';
    width: 8px;
    height: 8px;
    background-color: #4caf50;
    border-radius: 50%;
    display: inline-block;
}

.chatbot-close {
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: background-color 0.2s;
}

.chatbot-close:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background-color: #f8f9fa;
}

.chatbot-message {
    display: flex;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chatbot-message-user {
    justify-content: flex-end;
}

.chatbot-message-bot {
    justify-content: flex-start;
}

.message-content {
    max-width: 75%;
    padding: 0.75rem 1rem;
    border-radius: 12px;
    word-wrap: break-word;
}

.chatbot-message-user .message-content {
    background-color: #2c3e50;
    color: #ffffff;
    border-bottom-right-radius: 4px;
}

.chatbot-message-bot .message-content {
    background-color: #ffffff;
    color: #333333;
    border: 1px solid #e0e0e0;
    border-bottom-left-radius: 4px;
}

.message-content p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Markdown styles in chatbot messages */
.message-content h1,
.message-content h2,
.message-content h3,
.message-content h4,
.message-content h5,
.message-content h6 {
    margin: 0.75rem 0 0.5rem 0;
    font-weight: 600;
    line-height: 1.3;
}

.message-content h1 { font-size: 1.25rem; }
.message-content h2 { font-size: 1.15rem; }
.message-content h3 { font-size: 1.05rem; }
.message-content h4 { font-size: 1rem; }
.message-content h5 { font-size: 0.95rem; }
.message-content h6 { font-size: 0.9rem; }

.message-content p {
    margin: 0.5rem 0;
}

.message-content p:first-child {
    margin-top: 0;
}

.message-content p:last-child {
    margin-bottom: 0;
}

.message-content ul,
.message-content ol {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
}

.message-content li {
    margin: 0.25rem 0;
    line-height: 1.5;
}

.message-content code {
    background-color: rgba(0, 0, 0, 0.1);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-size: 0.85em;
    font-family: 'Courier New', monospace;
}

.chatbot-message-user .message-content code {
    background-color: rgba(255, 255, 255, 0.2);
}

.message-content pre {
    background-color: rgba(0, 0, 0, 0.05);
    padding: 0.75rem;
    border-radius: 6px;
    overflow-x: auto;
    margin: 0.5rem 0;
}

.chatbot-message-user .message-content pre {
    background-color: rgba(255, 255, 255, 0.15);
}

.message-content pre code {
    background-color: transparent;
    padding: 0;
}

.message-content blockquote {
    border-left: 3px solid rgba(0, 0, 0, 0.2);
    padding-left: 1rem;
    margin: 0.5rem 0;
    font-style: italic;
}

.chatbot-message-user .message-content blockquote {
    border-left-color: rgba(255, 255, 255, 0.3);
}

.message-content a {
    color: #2c3e50;
    text-decoration: underline;
}

.chatbot-message-user .message-content a {
    color: #ffffff;
}

.message-content a:hover {
    opacity: 0.8;
}

.message-content strong {
    font-weight: 600;
}

.message-content em {
    font-style: italic;
}

.message-content hr {
    border: none;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin: 1rem 0;
}

.chatbot-message-user .message-content hr {
    border-top-color: rgba(255, 255, 255, 0.2);
}

.message-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 0.5rem 0;
    font-size: 0.9rem;
}

.message-content th,
.message-content td {
    padding: 0.5rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    text-align: left;
}

.chatbot-message-user .message-content th,
.chatbot-message-user .message-content td {
    border-color: rgba(255, 255, 255, 0.2);
}

.message-content th {
    background-color: rgba(0, 0, 0, 0.05);
    font-weight: 600;
}

.chatbot-message-user .message-content th {
    background-color: rgba(255, 255, 255, 0.1);
}

.chatbot-message-loading {
    display: flex;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
}

.chatbot-message-loading span {
    width: 8px;
    height: 8px;
    background-color: #2c3e50;
    border-radius: 50%;
    animation: bounce 1.4s infinite ease-in-out both;
}

.chatbot-message-loading span:nth-child(1) {
    animation-delay: -0.32s;
}

.chatbot-message-loading span:nth-child(2) {
    animation-delay: -0.16s;
}

.chatbot-message-streaming {
    opacity: 1;
}

.streaming-content {
    min-height: 1em;
}

@keyframes bounce {
    0%, 80%, 100% {
        transform: scale(0);
    }
    40% {
        transform: scale(1);
    }
}

.chatbot-input-container {
    padding: 1rem;
    background-color: #ffffff;
    border-top: 1px solid #e0e0e0;
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.chatbot-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 24px;
    font-size: 0.9rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
}

.chatbot-input:focus {
    border-color: #2c3e50;
}

.chatbot-send {
    width: 44px;
    height: 44px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
}

.chatbot-send:hover:not(:disabled) {
    background-color: #1a252f;
    transform: scale(1.05);
}

.chatbot-send:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.chatbot-toggle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(44, 62, 80, 0.4);
    transition: all 0.3s ease;
    position: relative;
}

.chatbot-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(44, 62, 80, 0.5);
}

.chatbot-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background-color: #e74c3c;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
}

.chatbot-invitation {
    position: absolute;
    bottom: 75px;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 0.875rem 1rem;
    border-radius: 12px;
    font-size: 0.875rem;
    line-height: 1.4;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    animation: slideInRight 0.4s ease-out;
    white-space: nowrap;
}

.chatbot-invitation::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #2c3e50;
}

.chatbot-invitation p {
    margin: 0;
    font-weight: 500;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Chatbot */
@media (max-width: 480px) {
    .chatbot-container {
        bottom: 15px;
        right: 15px;
    }

    .chatbot-window {
        width: calc(100vw - 30px);
        height: calc(100vh - 100px);
        max-height: calc(100vh - 100px);
        bottom: 75px;
        right: 0;
        border-radius: 12px;
    }

    .chatbot-toggle {
        width: 56px;
        height: 56px;
    }

    .chatbot-invitation {
        max-width: 240px;
        font-size: 0.8rem;
        padding: 0.75rem 0.875rem;
        bottom: 70px;
        white-space: normal;
    }

    .chatbot-invitation::after {
        right: 15px;
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .features-container {
        flex-direction: column;
    }

    .features-image {
        flex: 0 0 auto;
        max-width: 400px;
        display: none;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 1rem 1.5rem;
    }

    .logo img {
        height: 40px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 3rem;
        gap: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        font-size: 1.2rem;
        padding: 1rem 0;
    }

    .nav-link-login {
        margin-left: 0;
        margin-top: 1rem;
        display: inline-block;
    }

    .hero {
        padding-top: 7rem;
        background-image: url('https://afqnrbwwkseseegfreyr.supabase.co/storage/v1/object/public/eulogia/landing/1_vert-nar.png');
        justify-content: flex-start;
        align-items: center;
        padding-top: 5.5rem;
    }

    .hero-content {
        padding-left: 0;
        margin-top: 1rem;
        text-align: center;
    }

    .slogan {
        font-size: 3rem;
    }

    .tagline {
        font-size: 1.3rem;
    }

    .btn-contacto {
        padding: 1rem 2.5rem;
        font-size: 1.1rem;
    }

    .btn-cta {
        padding: 1rem 2.5rem;
        font-size: 1.1rem;
        margin-right: 0.75rem;
    }

    .trust {
        padding: 3rem 1.5rem;
    }

    .trust-text {
        font-size: 1.3rem;
    }

    .trust-logo {
        max-height: 60px;
    }

    .features {
        padding: 3rem 1.5rem;
    }

    .features-container {
        gap: 2rem;
    }

    .features-list h3 {
        font-size: 1.3rem;
    }

    .features-list p {
        font-size: 1rem;
    }

    .contact {
        padding: 3rem 1.5rem;
    }

    .contact-title {
        font-size: 2rem;
    }

    .contact-subtitle {
        font-size: 1.1rem;
    }

    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0.75rem 1rem;
    }

    .logo img {
        height: 35px;
    }

    .nav-menu {
        top: 60px;
        height: calc(100vh - 60px);
    }

    .hero {
        padding: 1.5rem;
        padding-top: 4.5rem;
        min-height: 90vh;
        background-image: url('https://afqnrbwwkseseegfreyr.supabase.co/storage/v1/object/public/eulogia/landing/1_vert-nar.png');
        justify-content: flex-start;
        align-items: center;
    }

    .hero-content {
        padding-left: 0;
        margin-top: 1rem;
        text-align: center;
    }

    .slogan {
        font-size: 2.2rem;
    }

    .tagline {
        font-size: 1.1rem;
    }

    .btn-contacto {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .btn-cta {
        padding: 0.875rem 2rem;
        font-size: 1rem;
        margin-right: 0.5rem;
        margin-bottom: 0.5rem;
    }

    .trust {
        padding: 2.5rem 1rem;
    }

    .trust-text {
        font-size: 1.1rem;
    }

    .trust-logo {
        max-height: 50px;
    }

    .linkedin-icon {
        width: 20px;
        height: 20px;
    }

    .features-list li {
        padding-left: 1.5rem;
    }

    .contact {
        padding: 2rem 1rem;
    }

    .contact-title {
        font-size: 1.75rem;
    }

    .contact-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .contact-form-wrapper,
    .contact-info-wrapper {
        padding: 1.5rem;
    }

    .contact-form-wrapper h3,
    .contact-info-wrapper h3 {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }

    .contact-form {
        gap: 1.25rem;
    }

    .btn-submit {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .contact-info {
        gap: 1.5rem;
    }
}
