:root {
    --terracota: #C8705A;
    --terracota-light: #E8A898;
    --terracota-pale: #F5E8E4;
    --petroleo: #2C4A52;
    --petroleo-light: #4A7080;
    --cream: #FAF7F2;
    --warm-gray: #8A8078;
    --dark: #1E2B2F;
    --white: #FFFFFF;
    --gold: #C9A96E;
    --success: #28a745;
    --danger: #dc3545;
    --warning: #ffc107;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'DM Sans', sans-serif;
    font-size: 17.6px;
    background: var(--cream);
    color: var(--dark);
    overflow-x: hidden;
    line-height: 1.6;
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 0px 6%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(250, 247, 242, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(200, 112, 90, 0.12);
    animation: fadeDown 0.8s ease forwards;
}

@keyframes fadeDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--petroleo);
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    /*gap: 10px;*/
}

.nav-logo img {
    width: 310px;
    height: auto;
    /* border-radius: 50%;*/
}

.nav-logo span {
    color: var(--terracota);
}

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--petroleo);
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.2s;
    position: relative;
}

.nav-links a:hover {
    color: var(--terracota);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--terracota);
    transition: width 0.3s;
}

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

.btn-nav {
    background: var(--terracota);
    color: white !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 500 !important;
    transition: all 0.2s !important;
}

.btn-nav:hover {
    background: var(--petroleo) !important;
    transform: scale(1.04);
}

.btn-nav::after {
    display: none;
}

/* HERO */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: 80px;
    overflow: hidden;
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 65px 6% 80px 8%;
    animation: fadeLeft 1s ease 0.3s forwards;
    opacity: 0;
}

@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--terracota-pale);
    border: 1px solid var(--terracota-light);
    color: var(--terracota);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
    padding: 8px 16px;
    border-radius: 50px;
    width: fit-content;
    margin-bottom: 28px;
}

.hero-badge i {
    font-size: 0.7rem;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    line-height: 1.12;
    color: var(--petroleo);
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.hero-title em {
    font-style: italic;
    color: var(--terracota);
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--warm-gray);
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 44px;
    font-weight: 300;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

.btn-primary {
    background: var(--terracota);
    color: white;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: all 0.25s;
    box-shadow: 0 8px 30px rgba(200, 112, 90, 0.35);
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--petroleo);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(44, 74, 82, 0.35);
}

.btn-secondary {
    background: transparent;
    color: var(--petroleo);
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    border: 1.5px solid var(--petroleo);
    transition: all 0.25s;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--petroleo);
    color: white;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.83rem;
    color: var(--warm-gray);
    flex-wrap: wrap;
}

.hero-trust i {
    color: var(--terracota);
    margin-right: 4px;
}

.hero-trust .dot {
    width: 4px;
    height: 4px;
    background: var(--terracota-light);
    border-radius: 50%;
}

.hero-right {
    position: relative;
    background: linear-gradient(135deg, var(--petroleo) 0%, #1A3540 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeRight 1s ease 0.5s forwards;
    opacity: 0;
    overflow: hidden;
}

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    z-index: 2;
    background-size: cover;
    background-position: center;
}

.hero-image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(44, 74, 82, 0.8);
    z-index: -1;
}

.hero-rings {
    position: relative;
    width: 180px;
    height: 180px;
    margin-bottom: 40px;
}

.ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(201, 169, 110, 0.3);
    animation: pulse-ring 3s ease-in-out infinite;
}

.ring-1 {
    width: 80px;
    height: 80px;
    top: 50px;
    left: 10px;
    border-color: var(--gold);
    border-width: 3px;
}

.ring-2 {
    width: 80px;
    height: 80px;
    top: 50px;
    left: 90px;
    border-color: rgba(201, 169, 110, 0.6);
    border-width: 3px;
    transform: rotate(15deg);
}

.ring-3 {
    width: 180px;
    height: 180px;
    top: 0;
    left: 0;
    border-color: rgba(201, 169, 110, 0.15);
    animation-delay: 1s;
}

.ring-4 {
    width: 140px;
    height: 140px;
    top: 20px;
    left: 20px;
    border-color: rgba(201, 169, 110, 0.1);
    animation-delay: 2s;
}

@keyframes pulse-ring {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.hero-quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    margin-bottom: 20px;
    max-width: 400px;
}

.hero-quote-sub {
    font-size: 0.83rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.hero-stat-row {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

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

.hero-stat strong {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--gold);
    font-weight: 700;
}

.hero-stat span {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* SECTIONS */
section {
    padding: 65px 8%;
    position: relative;
}

.section-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--terracota);
    margin-bottom: 16px;
    background: var(--terracota-pale);
    padding: 6px 14px;
    border-radius: 50px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 3vw, 2.8rem);
    color: var(--petroleo);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.section-title em {
    font-style: italic;
    color: var(--terracota);
}

/* PROBLEMA */
.problema {
    background: var(--petroleo);
    color: white;
    position: relative;
    overflow: hidden;
}

.problema::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(200, 112, 90, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.problema .section-label {
    color: var(--terracota-light);
    background: rgba(200, 112, 90, 0.2);
}

.problema .section-title {
    color: white;
}

.problema .section-title em {
    color: var(--terracota-light);
}

.problema-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    /*margin-top: 50px;*/
}

.problema-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 300;
}

.problema-text p {
    margin-bottom: 20px;
}

.problema-stat-big {
    font-family: 'Playfair Display', serif;
    font-size: 6rem;
    color: var(--terracota);
    line-height: 1;
    font-weight: 700;
    margin-bottom: 8px;
}

.problema-stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    /*max-width: 280px;*/
    line-height: 1.5;
    margin-bottom: 40px;
    padding-top: 15px;
}

.facts-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 40px;
}

.fact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border-left: 3px solid var(--terracota);
    transition: background 0.2s;
    cursor: pointer;
}

.fact-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.fact-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.fact-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

.problema-remate {
    /*margin-top: 50px;*/
    padding: 28px;
    background: rgba(200, 112, 90, 0.15);
    border-radius: 12px;
    border: 1px solid rgba(200, 112, 90, 0.3);
    font-style: italic;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    grid-column: 1 / -1;
    text-align: center;
}

/* SOLUCIÓN */
.solucion {
    background: var(--cream);
}

.solucion-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    /*margin-top: 50px;*/
}

.capitulaciones-card {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 20px 60px rgba(44, 74, 82, 0.08);
    border: 1px solid rgba(200, 112, 90, 0.12);
    transition: transform 0.3s, box-shadow 0.3s;
}

.capitulaciones-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(44, 74, 82, 0.12);
}

.cap-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--petroleo);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(200, 112, 90, 0.2);
}

.cap-items {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cap-category {
    margin-bottom: 18px;
}

.cap-cat-header {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--terracota);
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 1px dashed rgba(200, 112, 90, 0.25);
}

.cap-sub-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 5px 0;
    font-size: 0.85rem;
    color: var(--petroleo);
    line-height: 1.4;
}

.cap-sub-item::before {
    content: '';
    width: 5px;
    height: 5px;
    background: var(--terracota-light);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 5px;
}

.cap-highlight {
    /*margin-top: 24px;*/
    padding: 20px;
    background: linear-gradient(135deg, var(--petroleo) 0%, #1A3540 100%);
    border-radius: 12px;
    color: white;
    font-size: 0.9rem;
    text-align: center;
    line-height: 1.6;
}

.cap-highlight strong {
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    display: block;
    margin-bottom: 4px;
}

.solucion-text .section-title {
    margin-bottom: 24px;
}

.solucion-text p {
    font-size: 1rem;
    color: var(--warm-gray);
    line-height: 1.7;
    margin-bottom: 20px;
    font-weight: 300;
}

.solucion-text .highlight-text {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.15rem;
    color: var(--petroleo);
    padding: 20px 24px;
    border-left: 3px solid var(--terracota);
    background: var(--terracota-pale);
    border-radius: 0 10px 10px 0;
    line-height: 1.6;
    margin: 28px 0;
}

/* PSICOLÓGICO */
.psico {
    background: linear-gradient(160deg, #F0EAE0 0%, var(--cream) 100%);
}

.psico-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    /*margin-top: 50px;*/
}

.psico-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.psico-feat {
    background: white;
    border-radius: 14px;
    padding: 24px 20px;
    border: 1px solid rgba(200, 112, 90, 0.15);
    transition: all 0.2s;
}

.psico-feat:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(200, 112, 90, 0.12);
}

.psico-feat .icon {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.psico-feat strong {
    display: block;
    font-size: 0.9rem;
    color: var(--petroleo);
    margin-bottom: 6px;
}

.psico-feat p {
    font-size: 0.8rem;
    color: var(--warm-gray);
    line-height: 1.5;
}

.psico-result {
    background: var(--petroleo);
    color: white;
    border-radius: 20px;
    padding: 44px;
    text-align: center;
    transition: transform 0.3s;
}

.psico-result:hover {
    transform: scale(1.02);
}

.psico-result .icon-big {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.psico-result h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: white;
}

.psico-result p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

/* PROCESO */
.proceso {
    background: white;
}

.proceso-steps {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
    position: relative;
}

.proceso-steps::before {
    content: '';
    position: absolute;
    top: 44px;
    left: 16%;
    right: 16%;
    height: 1px;
    background: linear-gradient(to right, var(--terracota), var(--petroleo));
    opacity: 0.25;
}

.step-card {
    text-align: center;
    padding: 40px 28px;
    border-radius: 20px;
    border: 1px solid rgba(200, 112, 90, 0.15);
    background: var(--cream);
    transition: all 0.25s;
    position: relative;
    cursor: pointer;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(44, 74, 82, 0.12);
}

.step-number {
    width: 56px;
    height: 56px;
    background: var(--terracota);
    color: white;
    border-radius: 50%;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 8px 24px rgba(200, 112, 90, 0.35);
}

.step-icon {
    font-size: 2rem;
    margin-bottom: 14px;
    display: block;
}

.step-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--petroleo);
    margin-bottom: 12px;
}

.step-desc {
    font-size: 0.88rem;
    color: var(--warm-gray);
    line-height: 1.7;
}

.proceso-precio {
    margin-top: 60px;
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, var(--petroleo) 0%, #1A3540 100%);
    border-radius: 20px;
    color: white;
}

.precio-tag {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: var(--gold);
    font-weight: 700;
    display: block;
    margin-bottom: 8px;
}

.precio-desc {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    margin-bottom: 28px;
}

/* DIFERENCIADORES */
.diferenciadores {
    background: var(--cream);
}

.dif-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.dif-card {
    background: white;
    border-radius: 16px;
    padding: 20px 28px;
    border-top: 4px solid var(--terracota);
    box-shadow: 0 4px 20px rgba(44, 74, 82, 0.06);
    transition: all 0.2s;
    cursor: pointer;
}

.dif-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 40px rgba(44, 74, 82, 0.12);
}

.dif-card:nth-child(2) {
    border-top-color: var(--petroleo);
}

.dif-card:nth-child(3) {
    border-top-color: var(--gold);
}

.dif-card:nth-child(4) {
    border-top-color: var(--petroleo-light);
}

.dif-card:nth-child(5) {
    border-top-color: var(--terracota);
}

.dif-emoji {
    font-size: 2rem;
    margin-bottom: 16px;
    display: block;
}

.dif-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: var(--petroleo);
    margin-bottom: 10px;
}

.dif-desc {
    font-size: 0.87rem;
    color: var(--warm-gray);
    line-height: 1.6;
}

/* SOBRE NOSOTROS */
.nosotros {
    background: var(--petroleo);
    color: white;
    position: relative;
    overflow: hidden;
}

.nosotros::after {
    content: '"';
    position: absolute;
    top: -40px;
    right: 8%;
    font-family: 'Playfair Display', serif;
    font-size: 20rem;
    color: rgba(255, 255, 255, 0.03);
    pointer-events: none;
    line-height: 1;
}

.nosotros-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.nosotros .section-label {
    color: var(--terracota-light);
    background: rgba(200, 112, 90, 0.2);
}

.nosotros .section-title {
    color: white;
}

.nosotros p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 300;
}

.team-card {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.team-avatars {
    display: flex;
    gap: -10px;
    margin-bottom: 24px;
}

.avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--terracota), var(--gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    border: 3px solid var(--petroleo);
    margin-right: -10px;
    background-size: cover;
    background-position: center;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.team-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: white;
    margin-bottom: 16px;
}

.team-roles {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.role-tag {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.75);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.2s;
}

.role-tag:hover {
    background: var(--terracota);
    color: white;
}

.mission-quote {
    margin-top: 36px;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    padding: 20px 24px;
    border-left: 3px solid var(--terracota);
    background: rgba(200, 112, 90, 0.1);
    border-radius: 0 12px 12px 0;
    line-height: 1.6;
}

/* TESTIMONIOS */
.testimonios {
    background: var(--cream);
}

.test-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 30px;
}

.test-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(44, 74, 82, 0.06);
    position: relative;
    transition: all 0.3s;
}

.test-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(44, 74, 82, 0.12);
}

.test-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 28px;
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    color: var(--terracota-light);
    line-height: 1;
    opacity: 0.5;
}

.test-text {
    font-size: 0.9rem;
    color: var(--warm-gray);
    line-height: 1.7;
    padding-top: 30px;
    font-style: italic;
    margin-bottom: 20px;
}

.test-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.test-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--terracota-pale), var(--terracota-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--terracota);
}

.test-name strong {
    display: block;
    font-size: 0.88rem;
    color: var(--petroleo);
}

.test-name span {
    font-size: 0.78rem;
    color: var(--warm-gray);
}

.test-stars {
    color: var(--gold);
    font-size: 0.8rem;
    margin-top: 4px;
}

/* FAQ */
.faq {
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 60px;
}

.faq-item {
    border: 1px solid rgba(200, 112, 90, 0.2);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--terracota);
}

.faq-q {
    padding: 22px 24px;
    font-weight: 500;
    color: var(--petroleo);
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--cream);
    transition: background 0.2s;
}

.faq-q:hover {
    background: var(--terracota-pale);
}

.faq-q .arrow {
    color: var(--terracota);
    font-size: 1.2rem;
    transition: transform 0.3s;
    flex-shrink: 0;
    margin-left: 12px;
    font-weight: bold;
}

.faq-a {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
    font-size: 0.88rem;
    color: var(--warm-gray);
    line-height: 1.7;
    background: white;
}

.faq-item.open .faq-a {
    max-height: 300px;
    padding: 20px 24px;
}

.faq-item.open .arrow {
    transform: rotate(45deg);
}

/* CTA FINAL */
.cta-final {
    background: linear-gradient(160deg, var(--petroleo) 0%, #12272E 100%);
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    padding: 30px 8%;
}

.cta-final::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(200, 112, 90, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.cta-final .section-label {
    color: var(--terracota-light);
    background: rgba(200, 112, 90, 0.2);
}

.cta-final .section-title {
    color: white;
}

.cta-final .section-title em {
    color: var(--terracota-light);
}

.cta-final p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.85rem;
    /*line-height: 1.7;*/
    max-width: 560px;
    margin: 0 auto 40px;
    font-weight: 300;
}

.cta-final .btn-primary {
    font-size: 1.05rem;
    padding: 18px 44px;
}

/* MODAL */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-content {
    background: white;
    margin: 5% auto;
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    position: relative;
    max-height: 85vh;
    overflow-y: auto;
    animation: slideUp 0.4s;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    right: 25px;
    top: 20px;
    font-size: 28px;
    font-weight: bold;
    color: var(--warm-gray);
    cursor: pointer;
    transition: color 0.2s;
}

.close-modal:hover {
    color: var(--terracota);
}

.modal h2 {
    font-family: 'Playfair Display', serif;
    color: var(--petroleo);
    margin-bottom: 10px;
}

.modal p {
    color: var(--warm-gray);
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    color: var(--petroleo);
    font-size: 0.9rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(200, 112, 90, 0.2);
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--terracota);
}

.form-group input.error {
    border-color: var(--danger);
}

/* FOOTER */
footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.5);
    padding: 0px 8% 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 30px;
}

.footer-grid div {
    padding-top: 20px;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: white;
    margin-bottom: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    /*gap: 10px;*/
}

.footer-logo img {
    width: 310px;
    height: auto;
}

.footer-logo span {
    color: var(--terracota);
}

.footer-desc {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-slogan {
    font-style: italic;
    color: var(--gold);
    font-size: 0.85rem;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.2rem;
    transition: all 0.2s;
}

.social-links a:hover {
    color: var(--terracota);
    transform: translateY(-3px);
}

.footer-title {
    color: white;
    font-weight: 500;
    font-size: 0.9rem;
    /*margin-bottom: 16px;*/
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--terracota-light);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-sister {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.82rem;
}

.footer-sister a {
    color: var(--terracota-light);
    text-decoration: none;
}

.footer-sister a:hover {
    text-decoration: underline;
}

/* WHATSAPP FLOAT */
.wa-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    border-radius: 50px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    z-index: 99;
    text-decoration: none;
    transition: all 0.2s;
    animation: bounce-in 1s ease 2s forwards;
    opacity: 0;
}

@keyframes bounce-in {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.wa-float:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
}

.wa-icon {
    font-size: 1.2rem;
}

/* TRUST COUNTER */
.trust-counter {
    /*display: inline-flex;*/
    align-items: center;
    gap: 8px;
    background: rgba(200, 112, 90, 0.08);
    border: 1px solid rgba(200, 112, 90, 0.2);
    color: var(--warm-gray);
    font-size: 0.85rem;
    padding: 9px 18px;
    border-radius: 50px;
    margin-top: 14px;
    text-align: center;
}

.trust-counter strong {
    color: var(--terracota);
    font-weight: 700;
}

/* SCROLL REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* HAMBURGER MOBILE MENU */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 4px;
    background: none;
    border: none;
    z-index: 200;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--petroleo);
    border-radius: 2px;
    transition: all 0.35s;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(250, 247, 242, 0.98);
    backdrop-filter: blur(20px);
    z-index: 150;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    opacity: 0;
    transform: translateY(-16px);
    transition: opacity 0.35s ease, transform 0.35s ease;
    pointer-events: none;
}

.mobile-menu.show {
    display: flex;
}

.mobile-menu.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.mobile-menu a {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    color: var(--petroleo);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.25s;
    transform: translateX(-16px);
    opacity: 0;
}

.mobile-menu.open a {
    transform: translateX(0);
    opacity: 1;
}

.mobile-menu.open a:nth-child(1) {
    transition-delay: 0.05s;
}

.mobile-menu.open a:nth-child(2) {
    transition-delay: 0.10s;
}

.mobile-menu.open a:nth-child(3) {
    transition-delay: 0.15s;
}

.mobile-menu.open a:nth-child(4) {
    transition-delay: 0.20s;
}

.mobile-menu.open a:nth-child(5) {
    transition-delay: 0.25s;
}

.mobile-menu a:hover {
    color: var(--terracota);
    transform: scale(1.05);
}

.mobile-menu .mobile-cta {
    background: var(--terracota) !important;
    color: white !important;
    padding: 14px 38px !important;
    border-radius: 50px !important;
    font-family: 'DM Sans', sans-serif !important;
    font-size: 1rem !important;
    margin-top: 10px;
    box-shadow: 0 8px 30px rgba(200, 112, 90, 0.35);
}

.mobile-menu .mobile-cta:hover {
    background: var(--petroleo) !important;
    transform: scale(1.05) !important;
}

@keyframes btn-bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    30% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* TOAST NOTIFICATIONS */
.toast {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    color: var(--petroleo);
    padding: 12px 24px;
    border-radius: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    animation: slideUp 0.3s;
}

.toast.success {
    background: var(--success);
    color: white;
}

.toast.error {
    background: var(--danger);
    color: white;
}

.toast.info {
    background: var(--petroleo);
    color: white;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .hero-right {
        min-height: 400px;
    }

    .hero-left {
        padding: 50px 4%;
    }

    .problema-grid,
    .solucion-grid,
    .psico-grid,
    .nosotros-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .proceso-steps {
        grid-template-columns: 1fr;
    }

    .proceso-steps::before {
        display: none;
    }

    .dif-grid {
        grid-template-columns: 1fr 1fr;
    }

    .test-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    section {
        /*padding: 65px 4%;*/
    }

    .hero-stat-row {
        flex-wrap: wrap;
        justify-content: center;
    }

    .modal-content {
        margin: 10% auto;
        padding: 30px 20px;
    }
}

@media (max-width: 600px) {
    .dif-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-ctas {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .hero-trust {
        /*flex-direction: column;*/
        align-items: flex-start;
        gap: 8px;
    }

    .hero-trust .dot {
        display: none;
    }

    .modal-content {
        width: 95%;
        padding: 25px 15px;
    }
}

/* Agregar esto al final de la sección .mobile-menu en assets/css/style.css */

.mobile-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--petroleo);
    cursor: pointer;
    padding: 10px;
    z-index: 160;
    transition: all 0.2s;
}

.mobile-close:hover {
    color: var(--terracota);
    transform: scale(1.1);
}

.mobile-close i {
    font-size: 1.5rem;
}

/* Ajuste para cuando el menú está abierto */
.mobile-menu.open .mobile-close {
    display: block;
    animation: fadeIn 0.3s ease 0.2s forwards;
    opacity: 0;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: rotate(0deg);
    }

    to {
        opacity: 1;
        transform: rotate(90deg);
    }
}