* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: #ffffff;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
}

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

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

button,
input,
textarea {
    font: inherit;
}

.container {
    width: min(1160px, calc(100% - 32px));
    margin-inline: auto;
}

.topbar {
    background: #12312d;
    color: #e9fffb;
    font-size: 14px;
}

.topbar__inner {
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

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

.topbar svg,
.footer svg,
.btn svg {
    width: 18px;
    height: 18px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid #e6efed;
    backdrop-filter: blur(14px);
}

.nav {
    min-height: 78px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 220px;
}

.brand img {
    width: 54px;
    height: 54px;
    object-fit: contain;
}

.brand__mark {
    width: 48px;
    height: 48px;
    display: inline-grid;
    place-items: center;
    border-radius: 8px;
    background: var(--primary);
    color: #fff;
    font-weight: 900;
    font-size: 26px;
}

.brand strong,
.brand small {
    display: block;
}

.brand strong {
    line-height: 1.15;
}

.brand small {
    color: #59716e;
    font-size: 13px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-left: auto;
    font-size: 15px;
    font-weight: 700;
}

.nav-menu a {
    color: #24413e;
}

.nav-menu a:hover {
    color: var(--primary);
}

.nav-toggle {
    width: 42px;
    height: 42px;
    display: none;
    place-items: center;
    margin-left: auto;
    border: 1px solid #dce8e6;
    border-radius: 8px;
    background: #fff;
    color: var(--ink);
}

.btn {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 18px;
    border: 1px solid transparent;
    border-radius: 8px;
    font-weight: 800;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

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

.btn--primary {
    background: var(--primary);
    color: #fff;
    box-shadow: 0 16px 32px rgba(15, 118, 110, .22);
}

.btn--light {
    background: #ffffff;
    color: var(--primary);
}

.btn--outline {
    background: #ffffff;
    border-color: #bfd9d5;
    color: var(--primary);
}

.btn--full {
    width: 100%;
}

.flash {
    margin: 18px 0 0;
    padding: 14px 16px;
    border-radius: 8px;
    font-weight: 700;
}

.flash--success {
    background: #e5fbf2;
    color: #096243;
}

.flash--error {
    background: #fff0f0;
    color: #a22626;
}

.hero {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    background: #12312d;
}

.hero__slide {
    position: absolute;
    inset: 0;
    display: grid;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    background-size: cover;
    background-position: center;
    transition: opacity .5s ease;
}

.hero__slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.hero__shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(12, 32, 29, .88), rgba(12, 32, 29, .56), rgba(12, 32, 29, .24));
    z-index: 0;
}

.hero__content {
    position: relative;
    z-index: 2;
    padding: 88px 0;
    color: #ffffff;
}

.hero-bubbles {
    position: absolute;
    inset: 0;
    z-index: 2;
    overflow: hidden;
    pointer-events: none;
}

.hero-bubbles span,
.hero-bubbles i {
    position: absolute;
    display: block;
    pointer-events: none;
}

.hero-bubbles span {
    left: var(--bubble-left);
    top: var(--bubble-top);
    width: var(--bubble-size);
    height: var(--bubble-size);
    border: 2px solid rgba(255, 255, 255, .76);
    border-radius: 999px;
    background:
        radial-gradient(circle at 32% 28%, rgba(255, 255, 255, .94) 0 10%, rgba(255, 255, 255, .26) 11% 24%, rgba(255, 255, 255, .08) 25% 58%, rgba(255, 255, 255, 0) 59%),
        radial-gradient(circle at 70% 78%, rgba(16, 185, 129, .16), rgba(255, 255, 255, .02) 54%),
        rgba(255, 255, 255, .18);
    box-shadow:
        inset 0 0 18px rgba(255, 255, 255, .38),
        0 0 24px rgba(125, 245, 229, .32);
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, .18));
    opacity: 0;
    transform: translate3d(0, 130px, 0) scale(.72);
    animation: heroBubbleRise var(--bubble-duration) cubic-bezier(.45, 0, .18, 1) infinite;
    animation-delay: var(--bubble-delay);
}

.hero-bubbles span:nth-child(1) { --bubble-left: 17%; --bubble-top: 72%; --bubble-size: 34px; --bubble-duration: 16s; --bubble-delay: -9s; }
.hero-bubbles span:nth-child(2) { --bubble-left: 24%; --bubble-top: 35%; --bubble-size: 62px; --bubble-duration: 20s; --bubble-delay: -4s; }
.hero-bubbles span:nth-child(3) { --bubble-left: 38%; --bubble-top: 61%; --bubble-size: 28px; --bubble-duration: 15s; --bubble-delay: -11s; }
.hero-bubbles span:nth-child(4) { --bubble-left: 46%; --bubble-top: 56%; --bubble-size: 18px; --bubble-duration: 12s; --bubble-delay: -3s; }
.hero-bubbles span:nth-child(5) { --bubble-left: 53%; --bubble-top: 68%; --bubble-size: 46px; --bubble-duration: 18s; --bubble-delay: -13s; }
.hero-bubbles span:nth-child(6) { --bubble-left: 61%; --bubble-top: 44%; --bubble-size: 84px; --bubble-duration: 24s; --bubble-delay: -7s; }
.hero-bubbles span:nth-child(7) { --bubble-left: 65%; --bubble-top: 78%; --bubble-size: 22px; --bubble-duration: 14s; --bubble-delay: -1s; }
.hero-bubbles span:nth-child(8) { --bubble-left: 70%; --bubble-top: 59%; --bubble-size: 36px; --bubble-duration: 17s; --bubble-delay: -10s; }
.hero-bubbles span:nth-child(9) { --bubble-left: 75%; --bubble-top: 83%; --bubble-size: 26px; --bubble-duration: 13s; --bubble-delay: -6s; }
.hero-bubbles span:nth-child(10) { --bubble-left: 79%; --bubble-top: 49%; --bubble-size: 74px; --bubble-duration: 23s; --bubble-delay: -15s; }
.hero-bubbles span:nth-child(11) { --bubble-left: 83%; --bubble-top: 70%; --bubble-size: 30px; --bubble-duration: 16s; --bubble-delay: -2s; }
.hero-bubbles span:nth-child(12) { --bubble-left: 88%; --bubble-top: 34%; --bubble-size: 52px; --bubble-duration: 21s; --bubble-delay: -12s; }
.hero-bubbles span:nth-child(13) { --bubble-left: 92%; --bubble-top: 61%; --bubble-size: 20px; --bubble-duration: 14s; --bubble-delay: -8s; }
.hero-bubbles span:nth-child(14) { --bubble-left: 57%; --bubble-top: 88%; --bubble-size: 16px; --bubble-duration: 12s; --bubble-delay: -5s; }
.hero-bubbles span:nth-child(15) { --bubble-left: 31%; --bubble-top: 83%; --bubble-size: 24px; --bubble-duration: 15s; --bubble-delay: -14s; }

.hero-bubbles i {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #ffffff;
    box-shadow: 0 0 0 7px rgba(255, 255, 255, .08), 0 0 26px rgba(255, 255, 255, .8);
    opacity: .58;
    animation: heroBubbleShine 2.4s ease-in-out infinite;
}

.hero-bubbles i:nth-of-type(1) {
    left: 29%;
    top: 45%;
    animation-delay: -.4s;
}

.hero-bubbles i:nth-of-type(2) {
    left: 52%;
    top: 58%;
    animation-delay: -1.2s;
}

.hero-bubbles i:nth-of-type(3) {
    left: 82%;
    top: 32%;
    animation-delay: -1.8s;
}

@keyframes heroBubbleRise {
    0% {
        opacity: 0;
        transform: translate3d(0, 140px, 0) scale(.68) rotate(0deg);
    }
    12% {
        opacity: .96;
    }
    48% {
        transform: translate3d(34px, -52px, 0) scale(1) rotate(128deg);
    }
    82% {
        opacity: .72;
    }
    100% {
        opacity: 0;
        transform: translate3d(-28px, -265px, 0) scale(1.14) rotate(315deg);
    }
}

@keyframes heroBubbleShine {
    0%,
    100% {
        opacity: .18;
        transform: scale(.65);
    }
    50% {
        opacity: .82;
        transform: scale(1.35);
    }
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    color: var(--accent);
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
}

.eyebrow svg {
    width: 18px;
    height: 18px;
}

.hero h1,
.page-hero h1,
.detail-hero h1 {
    max-width: 820px;
    margin: 0;
    font-size: clamp(42px, 7vw, 76px);
    line-height: 1.02;
    overflow-wrap: anywhere;
    hyphens: auto;
}

.hero p {
    max-width: 680px;
    margin: 24px 0 0;
    color: #e6fffa;
    font-size: 20px;
}

.hero__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 34px;
}

.hero__dots {
    position: absolute;
    left: 50%;
    bottom: 28px;
    z-index: 3;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.hero__dots button {
    width: 34px;
    height: 8px;
    border: 0;
    border-radius: 8px;
    background: rgba(255, 255, 255, .5);
    cursor: pointer;
}

.hero__dots button.is-active {
    background: var(--accent);
}

.stats-band {
    background: #f4fbf9;
    border-bottom: 1px solid #dcebe8;
}

.stats-band__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    gap: 18px;
    min-height: 118px;
}

.stats-band strong {
    display: block;
    color: var(--primary);
    font-size: 34px;
    line-height: 1;
}

.stats-band span {
    color: #526b68;
}

.stats-band a {
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 8px;
    background: #103c36;
    color: #fff;
    font-weight: 900;
}

.section {
    padding: 86px 0;
}

.section--soft {
    background: #f7fbfa;
}

.intro__grid,
.section-head,
.cta-strip__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 32px;
}

.intro__grid {
    grid-template-columns: .9fr 1.1fr;
}

.intro h2,
.section-head h2,
.cta-strip h2 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.08;
}

.intro p {
    margin: 0;
    color: #526b68;
    font-size: 19px;
}

.section-head {
    margin-bottom: 34px;
}

.section-head a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 900;
}

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

.card-grid--compact {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card,
.post-card,
.testimonial,
.price-card,
.mini-card,
.side-panel,
.contact-form,
.contact-info {
    border: 1px solid #dfecea;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(19, 32, 31, .07);
}

.service-card {
    overflow: hidden;
}

.service-card__image {
    aspect-ratio: 16 / 10;
    background: #d8ebe8;
}

.service-card__image img,
.post-card img,
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card__body {
    padding: 24px;
}

.service-card__body > svg,
.mini-card > svg,
.process__grid svg {
    width: 40px;
    height: 40px;
    color: var(--primary);
}

.service-card h3,
.service-card h2,
.mini-card h3,
.post-card h3,
.post-card h2,
.price-card h2 {
    margin: 14px 0 10px;
    line-height: 1.2;
}

.service-card p,
.mini-card p,
.post-card p,
.price-card p {
    color: #58726f;
    margin: 0;
}

.service-card a,
.post-card a,
.mini-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    color: var(--primary);
    font-weight: 900;
}

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

.process__grid div {
    min-height: 210px;
    padding: 24px;
    border: 1px solid #dfecea;
    border-radius: 8px;
    background: #ffffff;
}

.process__grid strong {
    display: block;
    margin: 18px 0 8px;
    font-size: 20px;
}

.process__grid span {
    color: #58726f;
}

.price-list {
    display: grid;
    gap: 12px;
}

.price-row {
    min-height: 76px;
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    padding: 16px 18px;
    border: 1px solid #dfecea;
    border-radius: 8px;
    background: #fff;
}

.price-row span,
.price-card span {
    color: var(--primary);
    font-weight: 900;
}

.price-row em,
.price-card strong {
    color: #b45309;
    font-style: normal;
    font-size: 22px;
    font-weight: 900;
}

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

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

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / .78;
    border-radius: 8px;
    background: #e0eeee;
}

.gallery-item span {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 10px 12px;
    border-radius: 8px;
    background: rgba(15, 49, 44, .84);
    color: #fff;
    font-weight: 900;
}

.testimonial-grid,
.blog-grid,
.price-table {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.testimonial,
.mini-card,
.price-card {
    padding: 24px;
}

.testimonial p {
    color: #415b58;
}

.testimonial strong,
.testimonial span {
    display: block;
}

.testimonial span {
    color: #718784;
}

.stars {
    display: flex;
    gap: 4px;
    color: #f59e0b;
}

.stars svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.faq-list {
    display: grid;
    gap: 12px;
}

details {
    border: 1px solid #dfecea;
    border-radius: 8px;
    background: #fff;
}

summary {
    padding: 18px 20px;
    color: var(--ink);
    font-weight: 900;
    cursor: pointer;
}

details p {
    margin: 0;
    padding: 0 20px 20px;
    color: #58726f;
}

.post-card {
    overflow: hidden;
}

.post-card img {
    aspect-ratio: 16 / 10;
}

.post-card div {
    padding: 22px;
}

.post-card time {
    color: #b45309;
    font-weight: 900;
    font-size: 14px;
}

.cta-strip {
    padding: 58px 0;
    background: #113e38;
    color: #fff;
}

.cta-strip h2 {
    color: #fff;
}

.cta-strip .section-kicker {
    color: #fbbf24;
}

.cta-strip__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.page-hero {
    padding: 86px 0;
    background: #f4fbf9;
    border-bottom: 1px solid #dcebe8;
}

.page-hero p,
.detail-hero p {
    max-width: 720px;
    color: #58726f;
    font-size: 19px;
}

.detail-hero {
    position: relative;
    min-height: 520px;
    display: grid;
    align-items: end;
    overflow: hidden;
    background: #12312d;
    color: #fff;
}

.detail-hero__media {
    position: absolute;
    inset: 0;
}

.detail-hero__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(12, 32, 29, .9), rgba(12, 32, 29, .42));
}

.detail-hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-hero__content {
    position: relative;
    padding: 90px 0;
}

.detail-hero__content p {
    color: #e6fffa;
}

.content-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 34px;
    align-items: start;
}

.content-body {
    color: #2f4643;
    font-size: 18px;
}

.content-body--narrow {
    max-width: 820px;
}

.content-body h2,
.content-body h3 {
    color: var(--ink);
    line-height: 1.2;
}

.content-body img {
    border-radius: 8px;
    margin: 24px 0;
}

.side-panel {
    position: sticky;
    top: 110px;
    padding: 24px;
}

.side-panel h2 {
    margin-top: 0;
}

.side-panel .btn + .btn {
    margin-top: 10px;
}

.price-table {
    align-items: stretch;
}

.price-card strong {
    display: block;
    margin-top: 18px;
}

.price-card small {
    color: #58726f;
    font-size: 15px;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 28px;
    align-items: start;
}

.contact-form,
.contact-info {
    padding: 24px;
}

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

.contact-form label:first-of-type,
.contact-form label:nth-of-type(5),
.contact-form button {
    grid-column: 1 / -1;
}

.contact-form label,
.contact-info div {
    display: grid;
    gap: 7px;
    color: #38514e;
    font-weight: 800;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid #ccdcda;
    border-radius: 8px;
    padding: 13px 14px;
    color: var(--ink);
    background: #fbfffe;
}

.contact-info {
    display: grid;
    gap: 18px;
}

.contact-info div {
    padding-bottom: 18px;
    border-bottom: 1px solid #dfecea;
}

.contact-info svg {
    width: 28px;
    height: 28px;
    color: var(--primary);
}

.contact-info span {
    color: #708783;
    font-size: 14px;
}

.contact-info a {
    color: var(--primary);
    font-weight: 900;
}

.footer {
    padding: 58px 0 24px;
    background: #0e2926;
    color: #dff7f3;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 34px;
}

.footer h3 {
    margin: 0 0 14px;
    color: #fff;
}

.footer p {
    max-width: 360px;
    color: #b9d7d2;
}

.footer a,
.footer span {
    margin: 8px 0;
    color: #dff7f3;
}

.footer__socials {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}

.footer__socials a {
    width: 40px;
    height: 40px;
    display: inline-grid;
    place-items: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, .09);
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-top: 28px;
    margin-top: 34px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    color: #a9c9c4;
}

.floating-actions {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 45;
    display: grid;
    gap: 10px;
}

.floating-actions a {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: var(--accent);
    color: #fff;
    box-shadow: 0 14px 30px rgba(19, 32, 31, .25);
}

.floating-actions__whatsapp {
    background: #22c55e !important;
}

@media (max-width: 1020px) {
    .nav-toggle {
        display: grid;
    }

    .nav-menu,
    .nav-cta {
        display: none;
    }

    .nav-menu.is-open {
        position: absolute;
        left: 16px;
        right: 16px;
        top: 88px;
        display: grid;
        gap: 0;
        padding: 10px;
        border: 1px solid #dce8e6;
        border-radius: 8px;
        background: #fff;
        box-shadow: 0 18px 40px rgba(19, 32, 31, .14);
    }

    .nav-menu.is-open a {
        padding: 12px;
        border-radius: 8px;
    }

    .stats-band__grid,
    .process__grid,
    .gallery-grid,
    .footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .card-grid,
    .testimonial-grid,
    .blog-grid,
    .price-table {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .content-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .side-panel {
        position: static;
    }
}

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

    .topbar__inner {
        flex-direction: column;
        justify-content: center;
        padding: 8px 0;
        gap: 6px;
    }

    .nav {
        min-height: 70px;
    }

    .brand {
        min-width: 0;
    }

    .brand small {
        display: none;
    }

    .hero {
        min-height: 590px;
    }

    .hero-bubbles span:nth-child(n+9) {
        display: none;
    }

    .hero-bubbles i {
        display: none;
    }

    .hero h1,
    .page-hero h1,
    .detail-hero h1 {
        font-size: 36px;
    }

    .hero__actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero__actions .btn {
        width: 100%;
    }

    .hero p,
    .page-hero p,
    .detail-hero p {
        font-size: 17px;
    }

    .section,
    .page-hero {
        padding: 58px 0;
    }

    .intro__grid,
    .section-head,
    .cta-strip__inner,
    .stats-band__grid,
    .process__grid,
    .gallery-grid,
    .footer__grid,
    .card-grid,
    .testimonial-grid,
    .blog-grid,
    .price-table,
    .contact-form {
        grid-template-columns: 1fr;
    }

    .price-row {
        grid-template-columns: 1fr;
        align-items: start;
    }

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

@media (prefers-reduced-motion: reduce) {
    .hero-bubbles span,
    .hero-bubbles i {
        animation: none;
    }

    .hero-bubbles span {
        opacity: .28;
        transform: none;
    }
}
