:root {
    --blue-950: #081d67;
    --blue-900: #123fbc;
    --blue-800: #2359de;
    --blue-700: #4e79ee;
    --red-900: #cf1f2d;
    --red-800: #ef2c3d;
    --yellow-500: #ffd428;
    --yellow-300: #ffe681;
    --sky-100: #eef5ff;
    --sky-050: #f8fbff;
    --mint-100: #ebfaf3;
    --text-900: #16233b;
    --text-700: #51617b;
    --white: #ffffff;
    --border: rgba(18, 63, 188, 0.12);
    --shadow-soft: 0 22px 45px rgba(18, 63, 188, 0.12);
    --shadow-strong: 0 30px 70px rgba(10, 28, 92, 0.2);
    --radius-xl: 34px;
    --radius-lg: 28px;
    --radius-md: 22px;
    --radius-sm: 18px;
    --transition: 0.35s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Manrope", sans-serif;
    color: var(--text-900);
    background:
        radial-gradient(circle at top left, rgba(35, 89, 222, 0.14), transparent 26%),
        radial-gradient(circle at right 14%, rgba(255, 212, 40, 0.14), transparent 22%),
        linear-gradient(180deg, #f8fbff 0%, #edf4ff 52%, #f8fbff 100%);
    line-height: 1.6;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    border: 0;
    background: none;
    cursor: pointer;
}

ul {
    list-style: none;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.section {
    padding: 104px 0;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--blue-900);
}

.section-heading {
    max-width: 780px;
    margin-bottom: 40px;
}

.section-heading h2,
.about-copy h2,
.services-panel h2,
.coverage-copy h2,
.contact-copy h2,
.cta-box h2 {
    margin: 16px 0 14px;
    font-family: "Sora", sans-serif;
    font-size: clamp(2rem, 2.25vw + 0.7rem, 3rem);
    line-height: 1.04;
    letter-spacing: -0.05em;
    text-wrap: balance;
}

.section-heading p,
.about-copy p,
.services-panel p,
.coverage-copy p,
.contact-copy p,
.hero-lead,
.hero-stats span,
.topbar p,
.topbar-links a,
.brand span,
.footer-brand p {
    color: var(--text-700);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 999px;
    font-weight: 800;
    transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition), border-color var(--transition), color var(--transition);
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-lg {
    padding: 16px 28px;
}

.btn-primary {
    color: var(--white);
    background: linear-gradient(135deg, var(--red-900), var(--red-800));
    box-shadow: 0 18px 38px rgba(207, 31, 45, 0.28);
}

.btn-primary:hover {
    box-shadow: 0 24px 44px rgba(207, 31, 45, 0.32);
}

.btn-secondary {
    color: var(--blue-950);
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(18, 63, 188, 0.1);
    backdrop-filter: blur(12px);
}

.floating-whatsapp {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1100;
    width: 62px;
    height: 62px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: linear-gradient(135deg, #2ad768, #11a14a);
    box-shadow: 0 18px 35px rgba(22, 178, 84, 0.28);
    font-size: 1.55rem;
}

.floating-whatsapp::after {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1px solid rgba(42, 215, 104, 0.28);
    animation: pulse 2.4s infinite;
}

@keyframes pulse {
    from {
        transform: scale(0.94);
        opacity: 0.75;
    }
    to {
        transform: scale(1.18);
        opacity: 0;
    }
}

.topbar {
    background: var(--blue-950);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.92rem;
}

.topbar-content,
.topbar-links {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.topbar-content {
    padding: 12px 0;
}

.topbar p,
.topbar-links a {
    color: rgba(255, 255, 255, 0.82);
}

.topbar-links a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(248, 251, 255, 0.9);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid transparent;
    transition: background-color var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.site-header.scrolled {
    background: rgba(248, 251, 255, 0.97);
    border-color: rgba(18, 63, 188, 0.08);
    box-shadow: 0 14px 36px rgba(12, 34, 109, 0.08);
}

.nav {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    min-height: 92px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0;
}

.brand-copy {
    display: grid;
    gap: 5px;
}

.brand strong {
    display: block;
    font-family: "Sora", sans-serif;
    font-size: 1.38rem;
    line-height: 1;
    color: var(--blue-950);
}

.brand span {
    display: block;
    font-size: 0.94rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-menu a {
    position: relative;
    font-weight: 700;
}

.nav-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--red-800), var(--yellow-500));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a:focus-visible::after {
    transform: scaleX(1);
}

.nav-cta {
    padding: 14px 22px;
}

.desktop-only {
    display: inline-flex;
}

.nav-toggle {
    display: none;
}

.hero {
    position: relative;
    padding: 60px 0 52px;
    overflow: clip;
}

.hero::before,
.hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero::before {
    width: 520px;
    height: 520px;
    top: -180px;
    right: -120px;
    background: radial-gradient(circle, rgba(255, 212, 40, 0.28), transparent 68%);
}

.hero::after {
    width: 420px;
    height: 420px;
    left: -120px;
    bottom: -180px;
    background: radial-gradient(circle, rgba(35, 89, 222, 0.18), transparent 70%);
}

.hero-backdrop {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(18, 63, 188, 0.07), rgba(255, 255, 255, 0.9)),
        linear-gradient(0deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.76)),
        repeating-linear-gradient(90deg, rgba(18, 63, 188, 0.04) 0, rgba(18, 63, 188, 0.04) 1px, transparent 1px, transparent 96px);
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.94fr);
    gap: 34px;
    align-items: center;
}

.hero-copy h1 {
    margin: 16px 0 18px;
    max-width: 11.8ch;
    font-family: "Sora", sans-serif;
    font-size: clamp(2.55rem, 3.5vw + 0.3rem, 3.95rem);
    line-height: 0.96;
    letter-spacing: -0.065em;
    text-wrap: balance;
}

.hero-lead {
    max-width: 620px;
    font-size: 1.05rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.quick-actions {
    margin-top: 26px;
}

.quick-actions p {
    margin-bottom: 12px;
    font-weight: 700;
}

.quick-actions-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.quick-chip {
    padding: 11px 16px;
    border-radius: 999px;
    border: 1px solid rgba(18, 63, 188, 0.1);
    background: rgba(255, 255, 255, 0.82);
    color: var(--text-900);
    font-weight: 700;
    box-shadow: 0 12px 24px rgba(18, 63, 188, 0.08);
    transition: transform var(--transition), background-color var(--transition), border-color var(--transition);
}

.quick-chip:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(35, 89, 222, 0.26);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 28px;
}

.hero-stats article,
.trust-grid article,
.mix-card,
.coverage-card,
.footer-card,
.contact-cards article {
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.88);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(12px);
}

.hero-stats article {
    padding: 18px 18px 16px;
}

.hero-stats strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.22rem;
    color: var(--blue-950);
}

.hero-visual {
    display: grid;
    gap: 18px;
    align-items: start;
}

.hero-main-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-strong);
    min-height: 520px;
}

.hero-main-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 18, 58, 0.04) 40%, rgba(7, 18, 58, 0.72) 100%);
}

.hero-main-card img,
.about-photo-frame img,
.gallery-main img,
.gallery-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay-card {
    position: absolute;
    left: 24px;
    bottom: 24px;
    z-index: 1;
    width: min(390px, calc(100% - 48px));
    padding: 18px 20px;
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(9, 25, 84, 0.52), rgba(9, 25, 84, 0.72));
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(8px);
    color: var(--white);
}

.hero-overlay-card span,
.hero-meta-card span,
.about-badge span,
.coverage-card span {
    display: block;
    margin-bottom: 8px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-overlay-card strong,
.hero-meta-card strong,
.about-badge strong,
.coverage-card strong {
    display: block;
    font-family: "Sora", sans-serif;
    font-size: 1.34rem;
    line-height: 1.08;
    text-wrap: balance;
}

.hero-visual-meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.hero-meta-card {
    padding: 20px 22px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(18, 63, 188, 0.1);
    box-shadow: var(--shadow-soft);
}

.hero-meta-card-accent {
    background: linear-gradient(135deg, rgba(18, 63, 188, 0.96), rgba(8, 29, 103, 0.98));
    color: rgba(255, 255, 255, 0.94);
}

.hero-meta-card-accent span {
    color: var(--yellow-300);
}

.trust-strip {
    padding-bottom: 26px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.trust-grid article {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 24px 22px;
}

.trust-grid i,
.mix-card i,
.services-list i,
.contact-cards i {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(239, 44, 61, 0.12), rgba(255, 212, 40, 0.24));
    color: var(--red-900);
    font-size: 1.08rem;
}

.trust-grid h3,
.mix-card h3,
.services-list h3,
.footer-card h3 {
    margin-bottom: 8px;
    font-size: 1.04rem;
}

.about-grid,
.services-grid,
.coverage-grid,
.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px;
    align-items: center;
}

.section-about {
    padding-top: 84px;
}

.about-points {
    display: grid;
    gap: 16px;
    margin-top: 28px;
}

.about-points article,
.services-list article {
    padding: 20px 22px;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(238, 245, 255, 0.88));
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
}

.about-points strong {
    display: block;
    margin-bottom: 6px;
    color: var(--blue-950);
}

.about-visual {
    position: relative;
    min-height: 620px;
}

.about-photo-frame {
    position: absolute;
    inset: 0 48px 54px 0;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}

.about-badge {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 286px;
    padding: 24px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(239, 44, 61, 0.96), rgba(207, 31, 45, 0.96));
    color: var(--white);
    box-shadow: var(--shadow-strong);
}

.section-mix {
    background:
        radial-gradient(circle at right top, rgba(18, 63, 188, 0.08), transparent 24%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.4), rgba(238, 245, 255, 0.7));
}

.mix-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.mix-card {
    padding: 28px;
}

.mix-card i {
    margin-bottom: 18px;
}

.section-services {
    overflow: clip;
}

.services-list {
    display: grid;
    gap: 16px;
    margin-top: 28px;
}

.services-list article {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.services-gallery {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 18px;
    align-items: stretch;
}

.gallery-main,
.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-strong);
}

.gallery-main {
    grid-row: span 2;
    min-height: 560px;
}

.gallery-card {
    min-height: 270px;
}

.coverage-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.coverage-tags span {
    padding: 11px 15px;
    border-radius: 999px;
    background: rgba(18, 63, 188, 0.08);
    border: 1px solid rgba(18, 63, 188, 0.12);
    color: var(--blue-950);
    font-weight: 700;
}

.coverage-card {
    padding: 34px;
    background:
        linear-gradient(180deg, rgba(18, 63, 188, 0.96), rgba(8, 29, 103, 0.98)),
        linear-gradient(135deg, rgba(255, 212, 40, 0.12), transparent);
    color: rgba(255, 255, 255, 0.92);
}

.coverage-card span {
    color: var(--yellow-300);
}

.coverage-card strong {
    margin-bottom: 22px;
}

.coverage-card ul {
    display: grid;
    gap: 12px;
}

.coverage-card li {
    position: relative;
    padding-left: 22px;
}

.coverage-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--yellow-500);
}

.cta-section {
    padding-top: 26px;
}

.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
    padding: 42px;
    border-radius: var(--radius-xl);
    background:
        linear-gradient(135deg, rgba(18, 63, 188, 0.98), rgba(8, 29, 103, 0.98)),
        radial-gradient(circle at top right, rgba(255, 212, 40, 0.2), transparent 30%);
    box-shadow: var(--shadow-strong);
}

.cta-box .section-kicker {
    color: var(--yellow-300);
}

.cta-box h2 {
    color: var(--white);
    max-width: 700px;
}

.section-contact {
    padding-top: 80px;
}

.contact-cards {
    display: grid;
    gap: 16px;
    margin: 28px 0;
}

.contact-cards article {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 18px 20px;
}

.contact-cards strong {
    display: block;
    margin-bottom: 5px;
}

.contact-cards span,
.contact-cards a {
    color: var(--text-700);
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.contact-map {
    height: 100%;
}

.map-frame {
    min-height: 560px;
    height: 100%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.site-footer {
    padding: 0 0 68px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.footer-brand {
    padding-right: 16px;
}

.footer-brand-link {
    margin-bottom: 18px;
}

.footer-card {
    padding: 24px;
}

.footer-card ul {
    display: grid;
    gap: 12px;
}

.footer-card li {
    display: flex;
    gap: 10px;
    color: var(--text-700);
}

.footer-card i {
    width: 18px;
    margin-top: 3px;
    color: var(--red-900);
}

@media (max-width: 1280px) {
    .hero-copy h1 {
        font-size: clamp(2.45rem, 3.2vw + 0.3rem, 3.55rem);
        max-width: 12.2ch;
    }
}

@media (max-width: 1080px) {
    .desktop-only {
        display: none;
    }

    .nav-toggle {
        display: inline-flex;
        flex-direction: column;
        gap: 5px;
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        border: 1px solid rgba(18, 63, 188, 0.1);
        background: rgba(255, 255, 255, 0.92);
    }

    .nav-toggle span {
        width: 18px;
        height: 2px;
        border-radius: 999px;
        background: var(--text-900);
        transition: transform var(--transition), opacity var(--transition);
    }

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

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

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

    .nav-menu {
        position: absolute;
        top: calc(100% + 12px);
        left: 20px;
        right: 20px;
        padding: 22px;
        border-radius: 24px;
        background: rgba(248, 251, 255, 0.98);
        border: 1px solid rgba(18, 63, 188, 0.08);
        box-shadow: var(--shadow-soft);
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-12px);
        transition: opacity var(--transition), transform var(--transition);
    }

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

    .hero-grid,
    .about-grid,
    .services-grid,
    .coverage-grid,
    .contact-grid,
    .footer-grid,
    .trust-grid,
    .mix-grid {
        grid-template-columns: 1fr;
    }

    .hero-visual,
    .about-visual {
        min-height: auto;
    }

    .hero-main-card,
    .about-photo-frame,
    .about-badge {
        position: relative;
        inset: auto;
        right: auto;
        bottom: auto;
        top: auto;
        left: auto;
        width: auto;
    }

    .hero-visual,
    .about-visual {
        display: grid;
        gap: 16px;
    }

    .hero-main-card {
        min-height: 430px;
    }

    .hero-visual-meta {
        grid-template-columns: 1fr;
    }

    .about-photo-frame {
        height: 500px;
    }

    .services-gallery {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-main {
        min-height: 420px;
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .cta-box {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 820px) {
    .section {
        padding: 84px 0;
    }

    .topbar-content,
    .topbar-links {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero {
        padding-top: 48px;
    }

    .hero-copy h1 {
        font-size: clamp(2.3rem, 8vw, 3.25rem);
        max-width: 12ch;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .hero-main-card {
        min-height: 340px;
    }

    .about-photo-frame {
        height: 380px;
    }

    .map-frame {
        min-height: 420px;
    }
}

@media (max-width: 560px) {
    .container {
        width: min(100% - 24px, 1180px);
    }

    .nav {
        min-height: 80px;
    }

    .brand strong {
        font-size: 1.22rem;
    }

    .hero-actions,
    .contact-actions,
    .quick-actions-list {
        flex-direction: column;
    }

    .btn-lg,
    .nav-cta,
    .quick-chip {
        width: 100%;
    }

    .hero-main-card {
        min-height: 300px;
    }

    .services-gallery {
        grid-template-columns: 1fr;
    }

    .gallery-main,
    .gallery-card {
        min-height: 280px;
    }

    .map-frame {
        min-height: 320px;
    }

    .trust-grid article,
    .mix-card,
    .coverage-card,
    .footer-card,
    .cta-box {
        padding-left: 20px;
        padding-right: 20px;
    }

    .floating-whatsapp {
        width: 56px;
        height: 56px;
        right: 16px;
        bottom: 16px;
        font-size: 1.42rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }
}
