@import "style.css";

:root {
    --site-bg: #08111b;
    --site-bg-soft: #0f1c2c;
    --site-card: rgba(255, 255, 255, 0.06);
    --site-border: rgba(255, 255, 255, 0.12);
    --site-text: #edf3fb;
    --site-muted: rgba(237, 243, 251, 0.72);
    --site-accent: #ff8a00;
    --site-accent-2: #1dcad3;
}

body.site-page {
    background:
        radial-gradient(circle at 8% 18%, rgba(29, 202, 211, 0.08), transparent 24rem),
        radial-gradient(circle at 92% 28%, rgba(255, 138, 0, 0.07), transparent 22rem),
        #f4f7fb;
    color: #0f172a;
    font-family: "Mulish", system-ui, sans-serif;
}

.site-header .navbar {
    background: rgba(5, 13, 21, 0.82);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-logo {
    width: auto;
    height: 42px;
    object-fit: contain;
}

.brand-copy {
    line-height: 1;
    color: #fff;
}

.brand-copy small {
    display: block;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.68);
    margin-top: 0.25rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.navbar .nav-link {
    color: rgba(255, 255, 255, 0.76);
    font-weight: 700;
    letter-spacing: 0.03em;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: #fff;
}

.btn-accent {
    background: linear-gradient(135deg, var(--site-accent), #ffb347);
    border: 0;
    color: #08111b;
    font-weight: 800;
}

.btn-accent:hover {
    color: #08111b;
    transform: translateY(-1px);
}

.site-hero {
    position: relative;
    overflow: hidden;
    min-height: 100svh;
    padding: 4rem 0 3rem;
    color: #fff;
    background: #06111b;
}

.site-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(6, 17, 27, 0.92) 0%, rgba(6, 17, 27, 0.72) 45%, rgba(6, 17, 27, 0.45) 100%);
    z-index: 1;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.85) contrast(1.05);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-kicker,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.74);
}

.hero-kicker::before,
.section-kicker::before {
    content: "";
    width: 2.5rem;
    height: 1px;
    background: var(--site-accent);
}

.hero-title {
    font-family: "Roboto Slab", Georgia, serif;
    font-size: clamp(2.8rem, 7vw, 5.9rem);
    line-height: .95;
    letter-spacing: -.05em;
    margin: .75rem 0 1rem;
    max-width: 13ch;
}

.hero-copy {
    max-width: 40rem;
    color: var(--site-muted);
    font-size: 1.08rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 1.75rem;
}

.hero-panel {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1.5rem;
    padding: 1.25rem;
    backdrop-filter: blur(18px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.metric-strip {
    margin-top: -2rem;
    position: relative;
    z-index: 3;
}

.metric-card,
.feature-card,
.brand-card,
.news-card,
.glass-card {
    background: #fff;
    border: 1px solid rgba(8, 17, 27, 0.08);
    border-radius: 1.25rem;
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
}

.metric-card {
    padding: 1.25rem;
    height: 100%;
}

.metric-value {
    font-size: 2rem;
    font-weight: 900;
    color: var(--wb-climablu);
}

.metric-label {
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #64748b;
    font-size: .74rem;
    font-weight: 800;
}

.section {
    padding: 5rem 0;
}

.section-light {
    background: rgba(255, 255, 255, 0.94);
}

.section-soft {
    background: #edf3f7;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.section-title {
    font-family: "Roboto Slab", Georgia, serif;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.02;
    letter-spacing: -.04em;
    margin: .4rem 0 1rem;
}

.section-copy {
    color: #475569;
    line-height: 1.8;
    max-width: 60rem;
}

.story-card {
    border-radius: 1.5rem;
    overflow: hidden;
}

.story-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 100%;
}

.brand-grid,
.news-grid {
    display: grid;
    gap: 1rem;
}

.partner-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.partner-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    padding: 1rem;
    border-radius: 1.25rem;
    background: #fff;
    border: 1px solid rgba(8, 17, 27, 0.08);
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
}

.partner-item img {
    max-width: 100%;
    max-height: 70px;
    object-fit: contain;
}

.brand-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.brand-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 100%;
}

.brand-card .brand-thumb {
    display: block;
    width: 100%;
    height: 220px;
    padding: 1.75rem;
    object-fit: contain;
    object-position: center;
    background: #fff;
    border-bottom: 1px solid rgba(8, 17, 27, 0.08);
}

.brand-card .brand-body {
    flex: 1;
    padding: 1rem;
}

.brand-name {
    font-weight: 900;
    letter-spacing: .02em;
}

.brand-copy-sm {
    color: #64748b;
    line-height: 1.65;
}

.feature-card {
    padding: 1.35rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-icon {
    width: 3rem;
    height: 3rem;
    border-radius: .95rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(29, 202, 211, .15), rgba(255, 138, 0, .18));
    color: #0a5f66;
    font-size: 1.35rem;
    flex-shrink: 0;
}

.feature-title {
    font-weight: 900;
    margin-bottom: .25rem;
}

.feature-text {
    color: #64748b;
    margin-bottom: 0;
}

.news-card {
    overflow: hidden;
}

.news-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.news-body {
    padding: 1.15rem;
}

.news-date {
    font-size: .78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--site-accent);
}

.news-title {
    font-size: 1.15rem;
    font-weight: 900;
    line-height: 1.25;
    margin: .5rem 0;
}

.news-excerpt {
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 0;
}

.blog-cover {
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.blog-content {
    color: #334155;
    line-height: 1.9;
}

.blog-content p + p {
    margin-top: 1rem;
}

.blog-sidebar {
    top: 1.5rem;
}

.contact-detail-list {
    display: grid;
    gap: 1rem;
}

.form-control {
    border-radius: 0.95rem;
    padding: 0.85rem 1rem;
    border-color: rgba(15, 23, 42, 0.14);
}

.form-control:focus {
    box-shadow: 0 0 0 0.2rem rgba(29, 202, 211, 0.12);
    border-color: rgba(29, 202, 211, 0.55);
}

.cta-band {
    background: linear-gradient(135deg, #08111b, #0f2740 55%, #15395d);
    color: #fff;
    border-radius: 2rem;
    padding: 2.25rem;
    box-shadow: 0 22px 55px rgba(8, 17, 27, 0.18);
}

.contact-list {
    display: grid;
    gap: .75rem;
}

.contact-pill {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: .8rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.whatsapp-chat {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 1050;
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    min-height: 3.5rem;
    padding: .8rem 1.15rem;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 999px;
    background: #1f9d55;
    color: #fff;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.3);
    transition: transform .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.whatsapp-chat i {
    font-size: 1.55rem;
    line-height: 1;
}

.whatsapp-chat:hover,
.whatsapp-chat:focus-visible {
    background: #168044;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 20px 42px rgba(15, 23, 42, 0.36);
}

.page-hero {
    padding: 4.5rem 0 2rem;
    color: #fff;
    background:
        radial-gradient(circle at 15% 20%, rgba(29, 202, 211, 0.14), transparent 24%),
        linear-gradient(180deg, #06111b 0%, #0a1624 100%);
}

.page-card {
    background: #fff;
    border-radius: 1.5rem;
    border: 1px solid rgba(8, 17, 27, 0.08);
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

.site-footer {
    background: #051019;
    color: rgba(255, 255, 255, 0.75);
    padding: 4rem 0 1.5rem;
}

.footer-logo {
    width: min(220px, 70vw);
    height: auto;
}

.footer-link {
    color: rgba(255, 255, 255, 0.82);
}

.footer-link:hover,
.footer-list a:hover {
    color: #fff;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: .6rem;
}

.footer-list a {
    color: rgba(255, 255, 255, 0.72);
}

.footer-bottom {
    margin-top: 2.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: .9rem;
    color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 991.98px) {
    .site-hero {
        min-height: auto;
        padding: 3.5rem 0 2rem;
    }

    .hero-title {
        max-width: none;
    }

    .brand-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .site-logo {
        height: 34px;
    }

    .hero-title {
        font-size: clamp(2.1rem, 11vw, 3.4rem);
    }

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

    .brand-card .brand-thumb {
        height: 180px;
        padding: 1.25rem;
    }

    .section {
        padding: 3.5rem 0;
    }

    .cta-band {
        padding: 1.5rem;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .whatsapp-chat {
        right: 1rem;
        bottom: 1rem;
        width: 3.5rem;
        padding: 0;
        justify-content: center;
    }

    .whatsapp-chat span {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }
}
