@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:ital,wght@0,300;0,400;0,600;0,700;1,300&family=Barlow+Condensed:wght@400;600;700&display=swap');

:root {
    --black: #080808;
    --black2: #0e0e0e;
    --black3: #141414;
    --black4: #1c1c1c;
    --white: #f5f5f0;
    --white2: #999;
    --orange: #FF5C00;
    --gold: #c8a96e;
    --gold-border: rgba(200, 169, 110, 0.18);
    --selva: #0d1f0e;
    --selva2: #162818;
    --muted: #555;
    --f-display: 'Bebas Neue', sans-serif;
    --f-body: 'Barlow', sans-serif;
    --f-cond: 'Barlow Condensed', sans-serif;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--white);
    font-family: var(--f-body);
    font-weight: 300;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

::selection {
    background: var(--orange);
    color: var(--black);
}

::-webkit-scrollbar {
    width: 3px;
}

::-webkit-scrollbar-thumb {
    background: var(--orange);
}

[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

[data-reveal].visible {
    opacity: 1;
    transform: none;
}

[data-reveal][data-d="1"] {
    transition-delay: 0.1s;
}

[data-reveal][data-d="2"] {
    transition-delay: 0.22s;
}

[data-reveal][data-d="3"] {
    transition-delay: 0.36s;
}

[data-reveal][data-d="4"] {
    transition-delay: 0.5s;
}

.eyebrow {
    font-family: var(--f-cond);
    font-size: 11px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 12px;
}

.eyebrow::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--gold);
    flex-shrink: 0;
}

.btn-gold-outline {
    color: var(--gold);
    font-family: var(--f-cond);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 13px 30px;
    border: 1px solid var(--gold-border);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background .2s, color .2s, transform .2s;
}

.btn-gold-outline:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
}

.btn-wa {
    background: #25D366;
    color: #000;
    font-family: var(--f-cond);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 16px 36px;
    clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform .2s;
}

.btn-wa:hover {
    transform: translateY(-3px);
}

/* HERO */
#hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    background: var(--black);
    overflow: hidden;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 160px 60px 60px 120px;
    position: relative;
    z-index: 2;
}

.hero-gold-line {
    width: 28px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 20px;
}

.hero-eyebrow {
    font-family: var(--f-cond);
    font-size: 10px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
}

.hero-title {
    font-family: var(--f-display);
    font-size: clamp(52px, 6.5vw, 90px);
    line-height: 0.88;
    letter-spacing: -1px;
    color: var(--white);
    margin-bottom: 20px;
}

.hero-title em {
    font-style: normal;
    color: var(--gold);
}

.hero-desc {
    font-size: 14px;
    line-height: 1.8;
    font-weight: 300;
    color: rgba(240, 236, 228, 0.55);
    max-width: 380px;
    margin-bottom: 32px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--f-cond);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--black);
    background: var(--gold);
    border: 1px solid var(--gold);
    padding: 13px 28px;
    width: fit-content;
    transition: background .25s;
}

.hero-cta:hover {
    background: #e8c98e;
    border-color: #e8c98e;
}

.hero-cta svg {
    transition: transform .2s;
}

.hero-cta:hover svg {
    transform: translateX(4px);
}

.hero-img {
    position: relative;
    overflow: hidden;
}

.hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    filter: brightness(0.9) contrast(1.05) saturate(0.9);
    opacity: 0;
    transition: opacity 1.4s ease;
}

.hero-img img.loaded {
    opacity: 1;
}

.hero-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--black) 0%, transparent 15%);
    z-index: 1;
    pointer-events: none;
}

.hero-img-caption {
    position: absolute;
    bottom: 24px;
    right: 24px;
    z-index: 3;
    font-family: var(--f-cond);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(8, 8, 8, 0.55);
    padding: 8px 14px;
    backdrop-filter: blur(4px);
}

.hero-img-caption::before {
    content: '';
    width: 16px;
    height: 1px;
    background: var(--gold);
    flex-shrink: 0;
}

/* IDENTIDAD */
#identidad {
    padding: 140px 80px;
    background: var(--selva);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
}

.ident-text .eyebrow {
    margin-bottom: 24px;
}

.ident-title {
    font-family: var(--f-display);
    font-size: clamp(52px, 7vw, 96px);
    line-height: 0.88;
    margin-bottom: 28px;
}

.ident-title .g {
    color: var(--gold);
}

.ident-title .s {
    -webkit-text-stroke: 1px var(--white);
    color: transparent;
}

.ident-body {
    font-size: 15px;
    line-height: 1.85;
    color: rgba(245, 245, 240, 0.55);
    margin-bottom: 16px;
}

.ident-stats {
    display: flex;
    gap: 28px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 32px;
}

.istat-num {
    font-family: var(--f-display);
    font-size: 48px;
    line-height: 1;
    color: var(--gold);
    display: block;
}

.istat-label {
    font-family: var(--f-cond);
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--muted);
}

.ident-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(200, 169, 110, 0.08);
}

.igrid-item {
    background: var(--selva);
    padding: 36px 32px;
    border-top: 2px solid transparent;
    transition: border-color .3s, background .3s;
}

.igrid-item:hover {
    border-color: var(--gold);
    background: var(--selva2);
}

.igrid-num {
    font-family: var(--f-display);
    font-size: 48px;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(200, 169, 110, 0.2);
    display: block;
    margin-bottom: 12px;
    transition: -webkit-text-stroke .3s;
}

.igrid-item:hover .igrid-num {
    -webkit-text-stroke: 1px var(--gold);
}

.igrid-title {
    font-family: var(--f-cond);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.igrid-body {
    font-size: 13px;
    line-height: 1.8;
    color: rgba(245, 245, 240, 0.5);
}

/* IGUAZÚ */
#iguazu {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
    background: var(--black2);
    overflow: hidden;
}

.igz-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 80px 60px 80px 80px;
}

.igz-eyebrow {
    font-family: var(--f-cond);
    font-size: 10px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: rgba(200, 169, 110, 0.6);
    margin-bottom: 24px;
}

.igz-title {
    font-family: var(--f-display);
    font-size: clamp(48px, 5.5vw, 76px);
    line-height: 0.9;
    margin-bottom: 28px;
}

.igz-title span {
    display: block;
    color: var(--gold);
}

.igz-body {
    font-size: 15px;
    line-height: 1.85;
    color: var(--white2);
    margin-bottom: 32px;
    max-width: 420px;
}

.igz-list {
    list-style: none;
    margin-bottom: 44px;
}

.igz-list li {
    font-size: 13px;
    font-weight: 300;
    color: rgba(245, 245, 240, 0.6);
    padding: 11px 0;
    border-bottom: 1px solid rgba(200, 169, 110, 0.1);
    display: flex;
    align-items: center;
    gap: 14px;
}

.igz-list li::before {
    content: '';
    width: 18px;
    height: 1px;
    background: var(--gold);
    flex-shrink: 0;
}

.igz-img {
    position: relative;
    overflow: hidden;
}

.igz-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.85) contrast(1.05) saturate(0.85);
    transition: transform 0.8s var(--ease);
}

#iguazu:hover .igz-img img {
    transform: scale(1.04);
}

.igz-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--black2) 0%, transparent 20%);
    z-index: 1;
    pointer-events: none;
}

/* STATS */
#stats-band {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--gold-border);
    border-bottom: 1px solid var(--gold-border);
    background: var(--black);
}

.sband {
    padding: 72px 40px;
    text-align: center;
    border-right: 1px solid var(--gold-border);
    position: relative;
    overflow: hidden;
    transition: background .3s;
}

.sband:last-child {
    border-right: none;
}

.sband:hover {
    background: var(--black3);
}

.sband::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .5s var(--ease);
}

.sband:hover::before {
    transform: scaleX(1);
}

.sband-num {
    font-family: var(--f-display);
    font-size: clamp(56px, 6vw, 80px);
    line-height: 1;
    color: var(--orange);
    display: block;
    margin-bottom: 8px;
}

.sband-label {
    font-family: var(--f-cond);
    font-size: 10px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--muted);
}

/* COBERTURA */
#cobertura {
    padding: 120px 80px;
    background: var(--selva);
}

.cob-title {
    font-family: var(--f-display);
    font-size: clamp(52px, 7vw, 96px);
    line-height: 0.88;
    margin-bottom: 64px;
    margin-top: 24px;
}

.cob-title em {
    font-style: normal;
    color: var(--gold);
}

.cob-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(200, 169, 110, 0.08);
}

.cob-item {
    background: var(--selva);
    padding: 40px 32px;
    border-bottom: 2px solid transparent;
    transition: border-color .3s, background .3s;
}

.cob-item:hover {
    border-color: var(--gold);
    background: var(--selva2);
}

.cob-cod {
    font-family: var(--f-display);
    font-size: 44px;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(200, 169, 110, 0.3);
    display: block;
    margin-bottom: 16px;
    transition: -webkit-text-stroke .3s;
}

.cob-item:hover .cob-cod {
    -webkit-text-stroke: 1px var(--gold);
}

.cob-name {
    font-family: var(--f-cond);
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.cob-body {
    font-size: 13px;
    line-height: 1.75;
    color: rgba(245, 245, 240, 0.5);
}

/* CTA */
#cta {
    padding: 160px 80px;
    background: var(--black3);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-bg-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--f-display);
    font-size: clamp(80px, 12vw, 160px);
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 92, 0, 0.04);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

.cta-glow {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(ellipse 70% 50% at 50% 100%, rgba(13, 31, 14, 0.7) 0%, transparent 70%);
}

.cta-inner {
    position: relative;
    z-index: 1;
}

.cta-inner .eyebrow {
    justify-content: center;
    margin-bottom: 28px;
}

.cta-title {
    font-family: var(--f-display);
    font-size: clamp(56px, 8vw, 110px);
    line-height: 0.9;
    margin-bottom: 24px;
}

.cta-title em {
    font-style: normal;
    color: var(--gold);
}

.cta-sub {
    font-size: 16px;
    line-height: 1.8;
    color: var(--white2);
    max-width: 480px;
    margin: 0 auto 48px;
}

.cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* FAQ */
#faq {
    padding: 120px 80px;
    background: var(--black2);
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 100px;
    align-items: start;
}

.faq-left {
    position: sticky;
    top: 120px;
}

.faq-left .eyebrow {
    margin-bottom: 24px;
}

.faq-left-title {
    font-family: var(--f-display);
    font-size: clamp(48px, 5.5vw, 72px);
    line-height: 0.92;
    margin-bottom: 20px;
}

.faq-left-title em {
    font-style: normal;
    color: var(--orange);
}

.faq-left-body {
    font-size: 13px;
    line-height: 1.85;
    color: var(--white2);
}

.faq-list {
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.faq-q {
    width: 100%;
    background: none;
    border: none;
    color: var(--white);
    font-family: var(--f-body);
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    transition: color .2s;
}

.faq-q:hover {
    color: var(--orange);
}

.faq-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid rgba(255, 92, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--orange);
    font-size: 18px;
    font-weight: 300;
    transition: transform .35s var(--ease), background .2s;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--orange);
    color: var(--black);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s var(--ease);
}

.faq-a p {
    font-size: 13px;
    line-height: 1.9;
    color: var(--white2);
    padding-bottom: 24px;
    padding-right: 50px;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    #stats-band {
        grid-template-columns: repeat(2, 1fr);
    }

    .sband:nth-child(2) {
        border-right: none;
    }

    .sband:nth-child(3) {
        border-right: 1px solid var(--gold-border);
        border-top: 1px solid var(--gold-border);
    }

    .sband:nth-child(4) {
        border-top: 1px solid var(--gold-border);
    }

    .cob-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    #hero {
        grid-template-columns: 1fr;
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .hero-content {
        padding: 110px 24px 32px;
        flex: 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .hero-title {
        font-size: clamp(44px, 10vw, 64px);
    }

    .hero-desc {
        font-size: 13px;
        max-width: 100%;
    }

    .hero-img {
        flex: 1;
        min-height: unset;
        max-height: unset;
        order: 1;
    }

    .hero-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center top;
    }

    .hero-img::before {
        background: linear-gradient(to bottom, var(--black) 0%, transparent 15%);
    }

    .hero-img-caption {
        display: none;
    }

    #identidad {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 80px 24px;
    }

    .ident-grid {
        grid-template-columns: 1fr;
    }

    #iguazu {
        grid-template-columns: 1fr;
    }

    .igz-img {
        height: 300px;
        order: -1;
    }

    .igz-img::before {
        background: linear-gradient(to bottom, var(--black2) 0%, transparent 20%);
    }

    .igz-content {
        padding: 48px 24px 64px;
    }

    #cobertura {
        padding: 80px 24px;
    }

    .cob-grid {
        grid-template-columns: 1fr 1fr;
    }

    #cta {
        padding: 100px 24px;
    }

    #faq {
        grid-template-columns: 1fr;
        gap: 48px;
        padding: 80px 24px;
    }

    .faq-left {
        position: static;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 100px 16px 28px;
    }

    .hero-title {
        font-size: 40px;
    }

    #identidad,
    #cobertura,
    #cta,
    #faq {
        padding: 64px 16px;
    }

    .igz-content {
        padding: 40px 16px 56px;
    }

    .cob-grid {
        grid-template-columns: 1fr;
    }

    #stats-band {
        grid-template-columns: 1fr 1fr;
    }

    .sband {
        padding: 48px 20px;
    }

    .cta-btns {
        flex-direction: column;
        width: 100%;
    }

    .btn-wa,
    .btn-gold-outline {
        justify-content: center;
        width: 100%;
    }
}