* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans', sans-serif;
    background: #F3F3F3;
    color: #3A3A3A;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    padding: 0.8rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.nav-logo {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #0F4C5C;
    text-decoration: none;
    font-size: 1.2rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #2E8B57;
}

.nav-menu .nav-cta {
    background-color: #0F4C5C;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
}

.nav-menu .nav-cta:hover {
    background-color: #0a3a47;
    color: white;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #D9C9A4 0%, #F3F3F3 100%);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
    margin-top: 1rem; /* Space for navbar */
}

.hero-content {
    display: grid;
    grid-template-columns: 200px 1fr 200px;
    gap: 2rem;
    align-items: center;
}

.hero-logo img {
    width: 100%;
    height: auto;
}

.hero-text {
    text-align: center;
}

.hero-text h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #0F4C5C;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #3A3A3A;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.hero-text .subtitle {
    font-size: 1.1rem;
    color: #3A3A3A;
    font-weight: 500;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Motivational Message */
.motivational-message {
    background: #0F4C5C;
    color: white;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: center;
}

.motivational-message p {
    font-size: 1rem;
    line-height: 1.7;
}

/* FAQ Section */
.faq-section {
    margin-bottom: 2rem;
}

.faq-toggle {
    width: 100%;
    background: #0F4C5C;
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.faq-toggle:hover {
    background: #0a3a47;
}

.faq-toggle .arrow {
    transition: transform 0.3s;
}

.faq-toggle.active .arrow {
    transform: rotate(180deg);
}

.faq-container {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    margin-top: 1rem;
}

.faq-container.open {
    max-height: 3000px;
}

.faq-item {
    background: white;
    border: 1px solid #D9C9A4;
    border-radius: 8px;
    margin-bottom: 0.75rem;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1rem;
    text-align: left;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #3A3A3A;
}

.faq-question .arrow {
    transition: transform 0.3s;
    color: #0F4C5C;
}

.faq-question.active .arrow {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer.open {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1rem 1rem;
    color: #3A3A3A;
    line-height: 1.6;
}

/* Validation Section */
.validation-section {
    margin-bottom: 2rem;
}

.validation-card {
    background: white;
    border: 1px solid #D9C9A4;
    border-radius: 12px;
    padding: 2rem;
}

.validation-card h2 {
    color: #0F4C5C;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.validation-question {
    margin-bottom: 1.5rem;
}

.validation-question p {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #3A3A3A;
}

.radio-group {
    display: flex;
    gap: 2rem;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: 500;
}

.radio-group input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* Buttons */
.btn-primary {
    background: #0F4C5C;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #0a3a47;
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    width: 100%;
}

.btn-secondary {
    background: white;
    color: #0F4C5C;
    border: 2px solid #0F4C5C;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #0F4C5C;
    color: white;
}

.btn-whatsapp {
    background: #25d366;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.btn-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-2px);
}

.btn-calendly {
    background: #0069ff;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.btn-calendly:hover {
    background: #0056d6;
    transform: translateY(-2px);
}

/* Not Ready Message */
.not-ready-message {
    margin-bottom: 2rem;
}

.message-card {
    background: white;
    border: 1px solid #D9C9A4;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.message-card p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #3A3A3A;
}

/* Form Section */
.form-section {
    margin-bottom: 2rem;
}

.form-card {
    background: white;
    border: 1px solid #D9C9A4;
    border-radius: 12px;
    padding: 2rem;
}

/* Nuevas clases para bloques del formulario */
.section-block {
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border: 1px solid rgba(0,0,0,0.05);
}

.section-general {
    background-color: rgba(15, 76, 92, 0.05); /* Tono suave del primario */
    border-left: 5px solid #0F4C5C;
}

.section-objective {
    background-color: rgba(46, 139, 87, 0.08); /* Tono suave del verde accent */
    border-left: 5px solid #2E8B57;
}

.section-params {
    background-color: #f8f9fa; /* Gris muy suave */
    border-left: 5px solid #555;
}

.form-card h2 {
    color: #0F4C5C;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #3A3A3A;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #D9C9A4;
    border-radius: 6px;
    font-size: 1rem;
    font-family: 'Noto Sans', sans-serif;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #0F4C5C;
}

.input-with-prefix {
    display: flex;
    align-items: center;
    border: 1px solid #D9C9A4;
    border-radius: 6px;
    overflow: hidden;
}

.input-with-prefix .prefix {
    background: #F3F3F3;
    padding: 0.75rem;
    font-weight: 600;
    color: #3A3A3A;
}

.input-with-prefix input {
    border: none;
    flex: 1;
}

.form-note {
    color: #3A3A3A;
    font-size: 0.9rem;
    font-style: italic;
    margin-bottom: 1.5rem;
}

/* Results Section */
.results-section {
    margin-bottom: 2rem;
}

.results-card {
    background: #ffffff; /* Blanco base */
    border: 1px solid #D9C9A4;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    background: linear-gradient(to bottom, #ffffff, #fdfdfd);
    border-top: 5px solid #0F4C5C; /* Distinción visual */
}

.results-card h2 {
    color: #0F4C5C;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

.results-grid {
    display: grid;
    gap: 0.5rem; /* Reducido de 1rem */
}

.results-block {
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background: #F3F3F3;
    border-radius: 8px;
}

.results-block.highlight-block {
    background: #EAF6F1;
    border: 2px solid #2E8B57;
}

.block-title {
    color: #0F4C5C;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #0F4C5C;
}

.block-disclaimer {
    color: #856404;
    background: #fff3cd;
    padding: 0.75rem;
    border-radius: 6px;
    font-size: 0.9rem;
    margin-top: 0.75rem;
    border-left: 4px solid #ffc107;
}

.result-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0.75rem; /* Reducido padding */
    background: #F8F9FA;
    border-radius: 6px;
    margin-bottom: 0;
}

.result-item.highlight {
    background: #EAF6F1;
    border: 2px solid #2E8B57;
    font-weight: 700;
}

.result-label {
    font-weight: 600;
    color: #3A3A3A;
}

.result-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0F4C5C;
}

.disclaimer {
    background: #fff3cd;
    padding: 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    color: #856404;
    margin-bottom: 1.5rem;
    border-left: 4px solid #ffc107;
}

.cta-highlight {
    background: linear-gradient(135deg, #0F4C5C 0%, #06313d 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    text-align: center;
    border: 3px solid #D9C9A4;
    box-shadow: 0 4px 12px rgba(15, 76, 92, 0.2);
}

.cta-highlight p {
    font-size: 1.1rem;
    line-height: 1.4;
    margin-bottom: 0.8rem;
    font-weight: 400;
}

.cta-highlight strong {
    color: #D9C9A4;
    font-weight: 700;
}

.cta-highlight p:last-of-type {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0;
    color: white;
}

.action-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-logo,
    .hero-image {
        max-width: 200px;
        margin: 0 auto;
    }

    .hero-text h1 {
        font-size: 1.5rem;
    }

    .hero-text .subtitle {
        font-size: 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .action-buttons {
        flex-direction: column;
    }

    .action-buttons button,
    .action-buttons a {
        width: 100%;
        text-align: center;
    }

    .cta-highlight p {
        font-size: 1rem;
    }
}

/* Footer Styles */
body {
    padding-bottom: 130px; /* Space for fixed footer */
}

#footerContacto {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0F4C5C;
    color: #FFFFFF;
    font-size: 13px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Noto Sans", sans-serif;
    padding: 12px 16px 8px;
    z-index: 9999;
    box-shadow: 0 -2px 6px rgba(0,0,0,0.2);
}

#footerContacto a {
    color: #FFFFFF;
    text-decoration: none;
}

.footer-main-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    overflow: hidden;
}

.footer-contacto {
    flex-shrink: 0;
    font-weight: 300;
}

.footer-carrusel {
    flex: 1;
    overflow: hidden;
    margin-left: 2rem;
    position: relative;
}

.logos-track {
    display: flex;
    align-items: center;
    gap: 40px;
    width: max-content;
    animation: scrollLogos 30s linear infinite;
}

.logos-track img {
    height: 60px;
    width: auto;
    display: block;
}

.footer-version {
    text-align: right;
    font-size: 10px;
    margin-top: 5px;
    opacity: 0.7;
}

@keyframes scrollLogos {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* Adaptación a pantallas pequeñas */
@media (max-width: 768px) {
    body {
        padding-bottom: 180px;
    }
    
    .footer-main-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-carrusel {
        width: 100%;
        margin-left: 0;
        margin-top: 10px;
    }
    
    .logos-track img {
        height: 50px;
    }
}

/* Results Images Layout Styles */
.results-with-images {
    display: flex;
    flex-direction: column;
}

.results-images {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.result-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

@media (min-width: 992px) {
    .results-with-images {
        display: grid;
        grid-template-columns: 180px 1fr;
        gap: 2rem;
        align-items: start;
    }

    .results-images {
        flex-direction: column;
        width: 100%;
        margin-bottom: 0;
    }

    .result-image {
        max-width: 100%;
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .results-images {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: space-between;
        gap: 10px;
        margin-bottom: 1rem;
    }

    .result-image {
        width: calc(50% - 5px);
        height: 120px; /* Small height for mobile */
        object-fit: cover;
        object-position: top; /* Focus on faces */
    }
}