/* ==========================================
   BUSCO INNOVARME - MODERN LANDING PAGE
   ========================================== */

/* ==========================================
   CSS VARIABLES
   ========================================== */
:root {
/* Colors */
--primary-color: #1E4D38;
--primary-dark: #062E1F;
--primary-light: #5F7F72;

--secondary-color: #5F7F72;
--secondary-dark: #1E4D38;
--accent-color: #8FA29B;

--text-dark: #062E1F;
--text-gray: #5F7F72;
--text-light: #8FA29B;

--bg-white: #ffffff;
--bg-gray-50: #E6E6E6;
--bg-gray-100: #D9D9D9;
--bg-gray-900: #062E1F;

--success-color: #1E4D38;
--warning-color: #8FA29B;
--danger-color: #7A2E2E;
--info-color: #5F7F72;
    
/* Gradients */
--gradient-primary: linear-gradient(135deg, #062E1F 0%, #0F3D2B 60%, #1E4D38 100%);
--gradient-secondary: linear-gradient(135deg, #1E4D38 0%, #5F7F72 100%);
--gradient-success: linear-gradient(135deg, #5F7F72 0%, #8FA29B 100%);
--gradient-warm: linear-gradient(135deg, #1E4D38 0%, #8FA29B 100%);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Poppins', 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 20px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-base: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-base: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Header Height */
    --header-height: 80px;
}

/* ==========================================
   RESET & BASE STYLES
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

ul {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ==========================================
   UTILITY CLASSES
   ========================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

.text-highlight {
    color: #6EE7B7;   /* verde menta brillante */
    font-weight: 900;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

/* ==========================================
   HEADER & NAVIGATION
   ========================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition-base);
}

.header.scroll-header {
    box-shadow: var(--shadow-base);
}

.nav {
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    color: var(--text-dark);
}

.nav__logo i {
    color: var(--primary-color);
    font-size: 1.8rem;
}

.nav__logo span {
    color: var(--primary-color);
}

.nav__list {
    display: flex;
    gap: 35px;
}

.nav__link {
    font-weight: 500;
    color: var(--text-gray);
    position: relative;
    padding: 5px 0;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition-base);
}

.nav__link:hover,
.nav__link.active-link {
    color: var(--primary-color);
}

.nav__link:hover::after,
.nav__link.active-link::after {
    width: 100%;
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav__toggle,
.nav__close {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-base);
    cursor: pointer;
    text-align: center;
    border: 2px solid transparent;
}

.btn--primary {
    background: #6EE7B7;
    color: #062E1F;
    box-shadow: 0 8px 25px rgba(110, 231, 183, 0.4);
}

.btn--primary:hover {
    background: #5ad6a6;
}

.btn--secondary {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn--secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn--large {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn--small {
    padding: 10px 20px;
    font-size: 0.95rem;
}

.btn--full {
    width: 100%;
    justify-content: center;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    background: linear-gradient(135deg, #041E14 0%, #0B2F22 60%, #134235 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 50px 50px;
    opacity: 0.3;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
}

.hero__content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px 20px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero__title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.1;
    color: white;
    margin-bottom: 24px;
}

.hero__description {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
}

.hero__description strong {
    font-weight: 700;
    color: white;
}

.hero__benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 35px;
}

.hero__benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-size: 1.05rem;
    font-weight: 500;
}

.hero__benefit i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 30px;
}

.hero__trust {
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero__trust-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.hero__trust-text i {
    color: var(--secondary-color);
    margin-right: 5px;
}

.hero__image {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.hero__image-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;   /* ← IMPORTANTE */
    padding: 30px;
    transition: 0.3s ease;
}

.hero__image-card:hover {
    transform: translateY(-5px);
}

.hero__image-card:nth-child(3) {
    grid-column: 1 / -1;
}

.hero__image-icon {
    font-size: 3rem;
    color: #6EE7B7;
    margin-bottom: 15px;
}

.hero__image-content h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 5px;
}

.hero__image-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.hero__scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.hero__scroll-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* ==========================================
   SECTION HEADER
   ========================================== */
.section__header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section__badge {
    background: var(--gradient-secondary);
    color: white;
}

.section__badge--light {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.section__title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.section__description {
    font-size: 1.15rem;
    color: var(--text-gray);
    line-height: 1.8;
}
.features,
.problem-section {
    margin: 80px auto;
    max-width: 1200px;
    border-radius: 24px;
    overflow: hidden;
}

/* ==========================================
   PROBLEM SECTION
   ========================================== */
.problem {
    padding: var(--section-padding);
    background: var(--bg-gray-50);
}

.problem__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.problem__card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 35px;
    box-shadow: var(--shadow-base);
    transition: var(--transition-base);
    border-left: 4px solid;
}

.problem__card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.problem__card--danger {
    border-color: var(--danger-color);
}

.problem__card--warning {
    border-color: var(--warning-color);
}

.problem__card--info {
    border-color: var(--info-color);
}

.problem__card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.problem__card--danger .problem__card-icon {
    color: var(--danger-color);
}

.problem__card--warning .problem__card-icon {
    color: var(--warning-color);
}

.problem__card--info .problem__card-icon {
    color: var(--info-color);
}

.problem__card-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

.problem__card-text {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.7;
}

.problem__solution {
    background: var(--gradient-primary);
}

.problem__solution-content {
    flex: 1;
}

.problem__solution-title {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.problem__solution-title i {
    color: var(--secondary-color);
}

.problem__solution-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin-bottom: 15px;
}

.problem__solution-cta {
    flex-shrink: 0;
}

/* ==========================================
   PROGRAM SECTION
   ========================================== */
.program {
    padding: var(--section-padding);
    background: white;
}

.program__timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto 60px;
}

.program__timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    transform: translateX(-50%);
}

.program__step {
    position: relative;
    margin-bottom: 60px;
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.program__step:nth-child(even) {
    flex-direction: row-reverse;
}

.program__step-number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    box-shadow: 0 0 0 10px white, var(--shadow-lg);
    z-index: 10;
}

.program__step-content {
    flex: 1;
    background: var(--bg-gray-50);
    border-radius: var(--radius-lg);
    padding: 35px;
    box-shadow: var(--shadow-base);
    transition: var(--transition-base);
}

.program__step-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.program__step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    color: white;
    border-radius: var(--radius-base);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.program__step-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.program__step-text {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.program__step-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.program__step-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: var(--text-gray);
}

.program__step-list i {
    color: var(--secondary-color);
    font-size: 1rem;
}

.program__cta {
    background: var(--gradient-primary);
}
.program__cta-content {
    flex: 1;
}

.program__cta-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.program__cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.services {
    padding: var(--section-padding);
    background: var(--bg-gray-50);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service__card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 35px;
    box-shadow: var(--shadow-base);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.service__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: var(--transition-base);
}

.service__card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service__card:hover::before {
    transform: scaleX(1);
}

.service__card--highlight {
    background: var(--gradient-primary);
    color: white;
}

.service__card--highlight .service__card-title,
.service__card--highlight .service__card-text,
.service__card--highlight .service__card-list li {
    color: white;
}

.service__card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

.service__card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    color: white;
    border-radius: var(--radius-base);
    font-size: 2rem;
    margin-bottom: 25px;
}

.service__card--highlight .service__card-icon {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.service__card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service__card-text {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service__card-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service__card-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 1rem;
    color: var(--text-gray);
}

.service__card-list i {
    color: var(--secondary-color);
    font-size: 1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.service__card--highlight .service__card-list i {
    color: white;
}

.service__card-cta {
    margin-top: 25px;
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */
.testimonials {
    padding: var(--section-padding);
    background: white;
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial__card {
    background: var(--bg-gray-50);
    border-radius: var(--radius-lg);
    padding: 35px;
    box-shadow: var(--shadow-base);
    transition: var(--transition-base);
    position: relative;
}

.testimonial__card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 80px;
    font-weight: 800;
    color: rgba(102, 126, 234, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial__card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial__rating {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial__rating i {
    color: var(--warning-color);
    font-size: 1.1rem;
}

.testimonial__text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.testimonial__author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.testimonial__author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.testimonial__author-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.testimonial__author-business {
    font-size: 0.95rem;
    color: var(--text-gray);
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact {
    padding: var(--section-padding);
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}
.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 50px 50px;
    opacity: 0.3;
}

.contact__wrapper {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact__title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact__description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact__details {
    display: grid;
    gap: 25px;
    margin-bottom: 40px;
}

.contact__detail {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact__detail-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-base);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.contact__detail-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 5px;
}

.contact__detail-content a,
.contact__detail-content p {
    font-size: 1.1rem;
    color: white;
    font-weight: 500;
}

.contact__detail-content a:hover {
    text-decoration: underline;
}

.contact__benefits {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact__benefits h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact__benefits ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact__benefits li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.05rem;
}

.contact__benefits i {
    color: var(--secondary-color);
    margin-top: 3px;
}

/* Contact Form */
.contact__form-wrapper {
    background: white;
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.contact__form-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact__form-title i {
    color: var(--primary-color);
}

.contact__form-subtitle {
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.form__group {
    margin-bottom: 25px;
}

.form__label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form__label i {
    color: var(--primary-color);
}

.form__input,
.form__select,
.form__textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--bg-gray-100);
    border-radius: var(--radius-base);
    font-size: 1rem;
    font-family: inherit;
    color: var(--text-dark);
    background: var(--bg-gray-50);
    transition: var(--transition-base);
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
}

.form__textarea {
    resize: vertical;
    min-height: 120px;
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form__group--checkbox {
    margin-bottom: 30px;
}

.form__checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.form__checkbox input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form__checkbox-text {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.5;
}

.form__footer-text {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form__footer-text i {
    color: var(--secondary-color);
}

/* Form Success Message */
.contact__form-success {
    display: none;
    text-align: center;
    padding: 40px;
}

.contact__form-success.active {
    display: block;
}

.success__icon {
    font-size: 80px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.contact__form-success h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.contact__form-success p {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 30px;
}

/* ==========================================
   WHATSAPP FLOATING BUTTON
   ========================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition-base);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: var(--bg-gray-900);
    color: white;
    padding: 60px 0 30px;
}

.footer__content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.footer__logo i {
    color: var(--primary-color);
    font-size: 1.8rem;
}

.footer__logo span {
    color: var(--primary-color);
}

.footer__description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer__social {
    display: flex;
    gap: 15px;
}

.footer__social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: white;
    transition: var(--transition-base);
}

.footer__social-link:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer__title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.footer__links a:hover {
    color: white;
    padding-left: 5px;
}

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.footer__contact i {
    color: var(--primary-color);
    margin-top: 3px;
}

.footer__contact a:hover {
    color: white;
}

.footer__bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer__copyright {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer__legal {
    display: flex;
    gap: 15px;
    font-size: 0.95rem;
}

.footer__legal a {
    color: rgba(255, 255, 255, 0.6);
}

.footer__legal a:hover {
    color: white;
}

.footer__legal span {
    color: rgba(255, 255, 255, 0.3);
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

/* Tablet */
@media screen and (max-width: 968px) {
    :root {
        --section-padding: 70px 0;
    }
    
    .section__title {
        font-size: 2.2rem;
    }
    
    .hero__content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero__title {
        font-size: 2.8rem;
    }
    
    .hero__image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .problem__solution {
        flex-direction: column;
        text-align: center;
    }
    
    .program__timeline::before {
        left: 30px;
    }
    
    .program__step {
        flex-direction: column !important;
        padding-left: 80px;
    }
    
    .program__step-number {
        left: 30px;
    }
    
    .contact__wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer__content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

/* Mobile */
@media screen and (max-width: 768px) {
    :root {
        --header-height: 70px;
        --section-padding: 50px 0;
    }
    
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: white;
        padding: 80px 30px 30px;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: var(--transition-base);
        z-index: 100;
    }
    
    .nav__menu.show-menu {
        right: 0;
    }
    
    .nav__list {
        flex-direction: column;
        gap: 25px;
    }
    
    .nav__link {
        font-size: 1.1rem;
    }
    
    .nav__close {
        display: block;
        position: absolute;
        top: 25px;
        right: 25px;
        font-size: 1.8rem;
    }
    
    .nav__toggle {
        display: block;
    }
    
    .nav__actions .btn {
        display: none;
    }
    
    .hero {
        min-height: auto;
        padding: 100px 0 50px;
    }
    
    .hero__title {
        font-size: 2.2rem;
    }
    
    .hero__description {
        font-size: 1.1rem;
    }
    
    .hero__cta {
        flex-direction: column;
    }
    
    .hero__cta .btn {
        width: 100%;
        justify-content: center;
    }
    
    .section__title {
        font-size: 1.8rem;
    }
    
    .section__description {
        font-size: 1.05rem;
    }
    
    .problem__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .problem__solution {
        padding: 30px;
    }
    
    .problem__solution-title {
        font-size: 1.5rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .program__timeline::before {
        display: none;
    }
    
    .program__step {
        padding-left: 0;
    }
    
    .program__step-number {
        position: static;
        transform: none;
        margin-bottom: 20px;
    }
    
    .program__step-content {
        padding: 25px;
    }
    
    .program__cta {
        flex-direction: column;
        padding: 30px;
        text-align: center;
    }
    
    .services__grid {
        grid-template-columns: 1fr;
    }
    
    .contact__form-wrapper {
        padding: 30px 20px;
    }
    
    .form__row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .footer__content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
        font-size: 1.8rem;
    }
}

/* Small Mobile */
@media screen and (max-width: 480px) {
    .hero__title {
        font-size: 1.9rem;
    }
    
    .hero__image {
        grid-template-columns: 1fr;
    }
    
    .hero__image-card:nth-child(3) {
        grid-column: 1;
    }
    
    .section__title {
        font-size: 1.6rem;
    }
    
    .problem__card {
        padding: 25px;
    }
    
    .program__step-content {
        padding: 20px;
    }
    
    .service__card {
        padding: 25px;
    }
    
    .testimonial__card {
        padding: 25px;
    }
}

/* ==========================================
   PRINT STYLES
   ========================================== */
@media print {
    .header,
    .whatsapp-float,
    .footer {
        display: none;
    }
    
    body {
        color: black;
        background: white;
    }
}
/* ===== FIX CONTRASTE HERO ===== */

.hero {
    color: #ffffff;
}

.hero p {
    color: rgba(255,255,255,0.85);
}

.hero .hero__subtitle,
.hero .hero__description {
    color: rgba(255,255,255,0.85);
}

.hero .hero__check {
    color: rgba(255,255,255,0.9);
}

.hero .hero__image-card p {
    color: rgba(255,255,255,0.8);
}
.section-cta {
    margin: 80px auto;
    max-width: 1200px;
    border-radius: 24px;
    overflow: hidden;
}
/* ===== FIX BADGES REDONDEADAS ===== */

.section__badge,
.problem__badge,
.program__badge,
.features__badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 9999px;
    font-size: 0.9rem;
    font-weight: 600;
}
/* ===== FIX CTA REDONDEADO ===== */

.section-cta {
    border-radius: 24px;
    overflow: hidden;
}

.section-cta > div {
    border-radius: 24px;
}
/* ===== FIX PROGRAM CTA REDONDEADO ===== */

.program__cta {
    border-radius: 24px;
    overflow: hidden;
}
/* ===== ARREGLAR ESPACIADO INTERNO CTA ===== */

.program__cta {
    border-radius: 24px;
    overflow: hidden;
    padding: 60px 70px; /* espacio interno real */
}

.program__cta-content {
    padding: 0; /* quitamos posibles paddings duplicados */
}

.program__cta-content h3 {
    margin-bottom: 20px;
}

.program__cta-content p {
    margin-bottom: 30px;
}
/* CTA universal fix */

section[class*="cta"] {
    border-radius: 24px;
    overflow: hidden;
    padding: 60px 70px;
}

section[class*="cta"] h2,
section[class*="cta"] h3 {
    margin-bottom: 20px;
}

section[class*="cta"] p {
    margin-bottom: 25px;
}
/* FIX para bloque problem__solution */

.problem__solution {
    border-radius: 24px;
    overflow: hidden;
    padding: 60px 70px;
}
.nav__logo img {
    height: 70px;  
    width: auto;
}
.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav__logo img {
    height: 70px;
    width: 70px;
    object-fit: contain;
}

.nav__logo span {
    font-weight: 700;
    font-size: 1.1rem;
}
.hero h1,
.hero h2,
.hero h3,
.hero p {
    color: #ffffff;
}
@media (max-width: 768px) {

  .problem__solution,
  .problem,
  .cta,
  .section-green {   /* por si se llama diferente */
    
    padding: 40px 25px !important;
    border-radius: 25px;
  }

  .problem__solution p {
    max-width: 100%;
  }

}