/* =====================================================
   RESET
===================================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #253b3b;
    background: #f5f9f9;
    line-height: 1.6;
    overflow-x: hidden;
}

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

button {
    font-family: inherit;
}

.container {
    width: min(1120px, 90%);
    margin: auto;
}


/* =====================================================
   CORES
===================================================== */

:root {
    --primary: #087d76;
    --primary-dark: #055b57;
    --primary-light: #e4f5f3;

    --dark: #163e3c;
    --text: #526666;
    --light: #f5f9f9;

    --white: #ffffff;

    --border: #dfebea;

    --shadow:
        0 15px 40px rgba(11, 73, 69, 0.08);
}


/* =====================================================
   HEADER
===================================================== */

header {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;

    background: rgba(255,255,255,0.95);

    backdrop-filter: blur(12px);

    border-bottom: 1px solid transparent;

    z-index: 999;

    transition: 0.3s;
}

header.scrolled {
    border-color: var(--border);

    box-shadow:
        0 5px 25px rgba(0,0,0,0.06);
}

.header-content {
    height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;
}

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

.logo img {
    width: 55px;
    height: 55px;

    object-fit: contain;

    border-radius: 10px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text strong {
    color: var(--primary);

    font-size: 21px;
}

.logo-text span {
    color: #849393;

    font-size: 11px;
}


/* NAV */

nav {
    display: flex;
    align-items: center;
    gap: 5px;
}

nav a {
    padding: 9px 12px;

    border-radius: 7px;

    color: #455b5a;

    font-size: 14px;
    font-weight: bold;

    transition: 0.3s;
}

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

    background: var(--primary-light);
}


/* WHATSAPP HEADER */

.header-whatsapp {
    padding: 10px 17px;

    background: var(--primary);

    color: white;

    border-radius: 7px;

    font-size: 13px;
    font-weight: bold;

    transition: 0.3s;
}

.header-whatsapp:hover {
    background: var(--primary-dark);

    transform: translateY(-2px);
}


/* MENU MOBILE */

.menu-button {
    display: none;

    border: 0;

    background: var(--primary);

    color: white;

    width: 42px;
    height: 42px;

    border-radius: 8px;

    font-size: 22px;

    cursor: pointer;
}


/* =====================================================
   HERO
===================================================== */

.hero {
    min-height: 760px;

    padding-top: 82px;

    display: flex;
    align-items: center;

    position: relative;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(15,166,157,0.16),
            transparent 35%
        ),

        linear-gradient(
            135deg,
            #e6f6f4,
            #f8fbfb
        );
}

.hero-background::before {
    content: "";

    position: absolute;

    width: 500px;
    height: 500px;

    border: 1px solid rgba(8,125,118,0.08);

    border-radius: 50%;

    right: -200px;
    bottom: -200px;
}

.hero-content {
    display: grid;

    grid-template-columns:
        1.1fr 0.9fr;

    align-items: center;

    gap: 70px;
}

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

.eyebrow {
    color: var(--primary);

    font-size: 12px;
    font-weight: bold;

    letter-spacing: 2px;
}

.hero h1 {
    color: var(--dark);

    font-size: clamp(42px, 5vw, 66px);

    line-height: 1.05;

    margin: 18px 0;
}

.hero h1 span {
    color: var(--primary);
}

.hero-text > p {
    color: var(--text);

    max-width: 600px;

    font-size: 17px;

    margin-bottom: 30px;
}


/* BUTTONS */

.hero-buttons {
    display: flex;

    gap: 12px;

    flex-wrap: wrap;
}

.button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 14px 22px;

    border-radius: 8px;

    font-size: 14px;
    font-weight: bold;

    transition: 0.3s;
}

.button.primary {
    color: white;

    background: var(--primary);

    box-shadow:
        0 8px 20px rgba(8,125,118,0.2);
}

.button.primary:hover {
    background: var(--primary-dark);

    transform: translateY(-3px);
}

.button.outline {
    color: var(--primary);

    border: 1px solid var(--primary);

    background: white;
}

.button.outline:hover {
    color: white;

    background: var(--primary);

    transform: translateY(-3px);
}


/* HERO INFO */

.hero-info {
    display: flex;

    gap: 25px;

    margin-top: 28px;

    color: #627575;

    font-size: 13px;
}

.hero-info div {
    display: flex;

    align-items: center;

    gap: 7px;
}

.hero-info strong {
    color: var(--primary);

    font-size: 18px;
}


/* HERO VISUAL */

.hero-visual {
    position: relative;

    height: 470px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-card {
    width: 340px;
    height: 390px;

    background: white;

    border-radius: 28px;

    padding: 35px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    box-shadow:
        0 30px 70px rgba(10,80,75,0.15);

    position: relative;
    z-index: 2;
}

.hero-logo {
    width: 190px;
    height: 190px;

    border-radius: 50%;

    background: #f2f8f8;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;

    margin-bottom: 20px;
}

.hero-logo img {
    max-width: 100%;
    max-height: 100%;

    object-fit: contain;
}

.hero-card h3 {
    color: var(--dark);

    font-size: 25px;

    margin-bottom: 6px;
}

.hero-card p {
    color: #718282;

    font-size: 14px;
}


/* FLOATING CARDS */

.floating-card {
    position: absolute;

    background: white;

    border-radius: 12px;

    padding: 13px 16px;

    display: flex;
    align-items: center;

    gap: 10px;

    box-shadow:
        0 15px 30px rgba(0,0,0,0.1);

    z-index: 3;

    animation: float 4s ease-in-out infinite;
}

.floating-card span {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 9px;

    color: var(--primary);

    background: var(--primary-light);

    font-size: 18px;
}

.floating-card div {
    display: flex;
    flex-direction: column;
}

.floating-card strong {
    font-size: 13px;
    color: var(--dark);
}

.floating-card small {
    color: #849393;
    font-size: 11px;
}

.card-one {
    left: -5px;
    top: 60px;
}

.card-two {
    right: -5px;
    bottom: 65px;

    animation-delay: 1s;
}

@keyframes float {

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

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

}


/* =====================================================
   HIGHLIGHTS
===================================================== */

.highlights {
    background: white;

    border-bottom: 1px solid var(--border);
}

.highlights-grid {
    min-height: 105px;

    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 20px;

    align-items: center;
}

.highlight {
    display: flex;

    align-items: center;

    gap: 13px;
}

.highlight-icon {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: var(--primary-light);

    color: var(--primary);

    border-radius: 10px;

    font-weight: bold;
}

.highlight div:last-child {
    display: flex;
    flex-direction: column;
}

.highlight strong {
    color: var(--dark);

    font-size: 13px;
}

.highlight span {
    color: #839090;

    font-size: 11px;
}


/* =====================================================
   SECTIONS
===================================================== */

.section {
    padding: 100px 0;
}

.section-heading {
    max-width: 650px;

    margin-bottom: 55px;
}

.section-heading.center {
    text-align: center;

    margin-left: auto;
    margin-right: auto;
}

.section-heading > span,
.contact-header > span {
    color: var(--primary);

    font-size: 11px;
    font-weight: bold;

    letter-spacing: 2px;
}

.section-heading h2,
.contact-header h2 {
    color: var(--dark);

    font-size: clamp(32px, 4vw, 45px);

    line-height: 1.15;

    margin: 10px 0 15px;
}

.section-heading h2 strong {
    color: var(--primary);
}

.section-heading p,
.contact-header p {
    color: var(--text);

    font-size: 16px;
}


/* =====================================================
   SOBRE
===================================================== */

.about-section {
    background: white;
}

.about-grid {
    display: grid;

    grid-template-columns:
        0.9fr 1.1fr;

    gap: 80px;

    align-items: center;
}

.about-image {
    height: 400px;

    background:
        linear-gradient(
            135deg,
            #e2f3f1,
            #f7fbfb
        );

    border-radius: 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;

    overflow: hidden;
}

.about-image img {
    width: 240px;
    height: 240px;

    object-fit: contain;

    background: white;

    border-radius: 50%;

    padding: 25px;

    position: relative;
    z-index: 2;

    box-shadow:
        0 20px 50px rgba(8,125,118,0.12);
}

.image-decoration {
    position: absolute;

    width: 320px;
    height: 320px;

    border: 2px dashed rgba(8,125,118,0.15);

    border-radius: 50%;
}

.about-content h3 {
    color: var(--dark);

    font-size: 27px;

    margin-bottom: 18px;
}

.about-content > p {
    color: var(--text);

    margin-bottom: 15px;
}

.check-grid {
    display: grid;

    grid-template-columns:
        repeat(2,1fr);

    gap: 13px;

    margin-top: 28px;
}

.check-grid div {
    display: flex;

    align-items: center;

    gap: 9px;

    color: var(--dark);

    font-size: 13px;
}

.check-grid span {
    width: 25px;
    height: 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--primary-light);

    color: var(--primary);

    font-weight: bold;
}


/* =====================================================
   SERVIÇOS
===================================================== */

.services-section {
    background: #f5f9f9;
}

.services-grid {
    display: grid;

    grid-template-columns:
        repeat(4,1fr);

    gap: 18px;
}

.service-card {
    background: white;

    border: 1px solid var(--border);

    border-radius: 16px;

    padding: 30px 25px;

    position: relative;

    overflow: hidden;

    transition: 0.35s;
}

.service-card:hover {
    transform: translateY(-8px);

    box-shadow: var(--shadow);

    border-color: #c4e4e1;
}

.service-number {
    position: absolute;

    right: 18px;
    top: 15px;

    color: #d9e9e7;

    font-size: 25px;

    font-weight: bold;
}

.service-icon {
    width: 55px;
    height: 55px;

    background: var(--primary-light);

    color: var(--primary);

    border-radius: 12px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 23px;
    font-weight: bold;

    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--dark);

    font-size: 18px;

    margin-bottom: 9px;
}

.service-card p {
    color: #718181;

    font-size: 13px;

    min-height: 65px;
}

.service-card a {
    display: inline-block;

    color: var(--primary);

    font-size: 12px;
    font-weight: bold;

    margin-top: 18px;
}


/* =====================================================
   ATENDIMENTO
===================================================== */

.atendimento-section {
    background: white;
}

.atendimento-grid {
    display: grid;

    grid-template-columns:
        1fr 0.9fr;

    gap: 80px;

    align-items: center;
}

.atendimento-text > span {
    color: var(--primary);

    font-size: 11px;
    font-weight: bold;

    letter-spacing: 2px;
}

.atendimento-text h2 {
    color: var(--dark);

    font-size: 43px;

    line-height: 1.15;

    margin: 12px 0 18px;
}

.atendimento-text > p {
    color: var(--text);

    margin-bottom: 30px;
}

.feature-list {
    display: flex;
    flex-direction: column;

    gap: 22px;
}

.feature {
    display: flex;

    gap: 14px;
}

.feature-icon {
    width: 43px;
    height: 43px;

    min-width: 43px;

    border-radius: 10px;

    background: var(--primary-light);

    color: var(--primary);

    display: flex;
    align-items: center;
    justify-content: center;

    font-weight: bold;
}

.feature strong {
    color: var(--dark);

    font-size: 14px;
}

.feature p {
    color: #7a8989;

    font-size: 12px;

    margin-top: 3px;
}


/* PANEL */

.atendimento-panel {
    min-height: 440px;

    border-radius: 25px;

    padding: 25px;

    background:
        linear-gradient(
            145deg,
            #087d76,
            #064f4c
        );

    color: white;

    position: relative;

    display: flex;
    flex-direction: column;

    justify-content: space-between;

    overflow: hidden;

    box-shadow:
        0 25px 55px rgba(8,125,118,0.2);
}

.atendimento-panel::after {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    border: 1px solid rgba(255,255,255,0.12);

    border-radius: 50%;

    right: -150px;
    bottom: -150px;
}

.panel-top {
    display: flex;

    justify-content: space-between;

    font-size: 12px;

    position: relative;
    z-index: 2;
}

.status {
    color: #bff1e8;
}

.atendimento-panel > img {
    width: 210px;
    height: 210px;

    object-fit: contain;

    align-self: center;

    background: white;

    border-radius: 50%;

    padding: 25px;

    position: relative;
    z-index: 2;
}

.panel-bottom {
    position: relative;
    z-index: 2;
}

.panel-bottom strong {
    display: block;

    font-size: 20px;

    margin-bottom: 5px;
}

.panel-bottom p {
    color: #c3e2df;

    font-size: 13px;
}


/* =====================================================
   FAQ
===================================================== */

.faq-section {
    background: #f5f9f9;
}

.faq {
    max-width: 800px;

    margin: auto;
}

.faq-item {
    background: white;

    border: 1px solid var(--border);

    border-radius: 10px;

    margin-bottom: 10px;

    overflow: hidden;
}

.faq-question {
    width: 100%;

    border: 0;

    background: white;

    padding: 20px;

    text-align: left;

    cursor: pointer;

    display: flex;

    justify-content: space-between;

    align-items: center;

    color: var(--dark);

    font-weight: bold;
}

.faq-question span {
    color: var(--primary);

    font-size: 22px;

    transition: 0.3s;
}

.faq-answer {
    max-height: 0;

    overflow: hidden;

    transition: 0.35s;
}

.faq-answer p {
    padding: 0 20px 20px;

    color: var(--text);

    font-size: 14px;
}

.faq-item.active .faq-answer {
    max-height: 150px;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}


/* =====================================================
   CONTATO
===================================================== */

.contact-section {
    background: white;
}

.contact-header {
    text-align: center;

    max-width: 650px;

    margin: auto auto 50px;
}

.contact-grid {
    display: grid;

    grid-template-columns:
        repeat(3,1fr);

    gap: 15px;
}

.contact-card {
    padding: 22px;

    border: 1px solid var(--border);

    border-radius: 13px;

    display: flex;

    gap: 13px;

    transition: 0.3s;

    background: #fbfdfd;
}

.contact-card:hover {
    transform: translateY(-4px);

    box-shadow: var(--shadow);

    border-color: #c4e4e1;
}

.contact-icon {
    width: 45px;
    height: 45px;

    min-width: 45px;

    background: var(--primary-light);

    color: var(--primary);

    border-radius: 9px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-weight: bold;
}

.contact-card div:last-child {
    display: flex;
    flex-direction: column;
}

.contact-card span {
    color: #839090;

    font-size: 11px;

    margin-bottom: 3px;
}

.contact-card strong {
    color: var(--dark);

    font-size: 13px;
}

.contact-card small {
    color: #7c8c8c;

    font-size: 11px;
}

.whatsapp-card:hover {
    border-color: #a9dfd0;
}


/* CTA */

.contact-cta {
    margin-top: 30px;

    padding: 25px 30px;

    border-radius: 15px;

    background:
        linear-gradient(
            135deg,
            #e3f5f2,
            #f4fbfa
        );

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;
}

.contact-cta strong {
    color: var(--dark);

    font-size: 18px;
}

.contact-cta p {
    color: var(--text);

    font-size: 13px;
}

.whatsapp-button {
    background: var(--primary);

    color: white;

    white-space: nowrap;
}


/* =====================================================
   FOOTER
===================================================== */

footer {
    background: #123e3c;

    color: white;

    padding-top: 55px;
}

.footer-grid {
    display: grid;

    grid-template-columns:
        1.5fr 1fr 1fr 1fr;

    gap: 45px;

    padding-bottom: 45px;
}

.footer-brand {
    display: flex;

    gap: 13px;
}

.footer-brand img {
    width: 55px;
    height: 55px;

    object-fit: contain;

    background: white;

    border-radius: 9px;
}

.footer-brand h3 {
    font-size: 21px;

    margin-bottom: 5px;
}

.footer-brand p {
    color: #b7cecc;

    font-size: 12px;

    max-width: 220px;
}

.footer-grid h4 {
    font-size: 13px;

    margin-bottom: 15px;
}

.footer-grid a,
.footer-grid p {
    display: block;

    color: #b7cecc;

    font-size: 12px;

    margin-bottom: 7px;
}

.footer-grid a:hover {
    color: white;
}

.footer-grid strong {
    font-size: 12px;
}

.address {
    margin-top: 15px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);

    text-align: center;

    color: #9fb8b6;

    font-size: 11px;

    padding: 20px;
}


/* =====================================================
   BOTÕES FLUTUANTES
===================================================== */

.floating-whatsapp {
    position: fixed;

    right: 25px;
    bottom: 25px;

    width: 55px;
    height: 55px;

    border-radius: 50%;

    background: #16a085;

    color: white;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 23px;

    box-shadow:
        0 8px 25px rgba(0,0,0,0.18);

    z-index: 900;

    transition: 0.3s;
}

.floating-whatsapp:hover {
    transform: scale(1.08);
}

.back-top {
    position: fixed;

    right: 25px;
    bottom: 90px;

    width: 40px;
    height: 40px;

    border: 0;

    border-radius: 8px;

    background: var(--dark);

    color: white;

    cursor: pointer;

    opacity: 0;

    pointer-events: none;

    transition: 0.3s;

    z-index: 900;
}

.back-top.show {
    opacity: 1;

    pointer-events: auto;
}


/* =====================================================
   ANIMAÇÕES
===================================================== */

.reveal {
    opacity: 0;

    transform: translateY(25px);

    transition:
        opacity 0.7s ease,
        transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;

    transform: translateY(0);
}


/* =====================================================
   RESPONSIVIDADE
===================================================== */

@media (max-width: 1000px) {

    .header-whatsapp {
        display: none;
    }

    .hero-content {
        gap: 40px;
    }

    .hero h1 {
        font-size: 50px;
    }

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

    .highlights-grid {
        grid-template-columns:
            repeat(2,1fr);

        padding: 25px 0;
    }

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

}


@media (max-width: 780px) {

    .header-content {
        height: 70px;
    }

    .menu-button {
        display: block;
    }

    nav {
        position: absolute;

        top: 70px;
        left: 0;

        width: 100%;

        background: white;

        padding: 15px;

        display: none;

        flex-direction: column;

        box-shadow:
            0 10px 20px rgba(0,0,0,0.08);
    }

    nav.open {
        display: flex;
    }

    nav a {
        width: 100%;

        padding: 12px;

        text-align: center;
    }

    .hero {
        padding-top: 110px;
    }

    .hero-content {
        grid-template-columns: 1fr;

        text-align: center;
    }

    .hero-text > p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-info {
        justify-content: center;

        flex-wrap: wrap;
    }

    .hero-visual {
        height: 420px;
    }

    .about-grid {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .atendimento-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

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

}


@media (max-width: 560px) {

    .container {
        width: 92%;
    }

    .logo img {
        width: 47px;
        height: 47px;
    }

    .logo-text strong {
        font-size: 18px;
    }

    .hero {
        min-height: auto;

        padding-top: 120px;
        padding-bottom: 70px;
    }

    .hero h1 {
        font-size: 39px;
    }

    .hero-text > p {
        font-size: 15px;
    }

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

    .button {
        width: 100%;
    }

    .hero-visual {
        height: 370px;
    }

    .hero-card {
        width: 290px;
        height: 340px;
    }

    .hero-logo {
        width: 150px;
        height: 150px;
    }

    .floating-card {
        transform: scale(0.85);
    }

    .card-one {
        left: -10px;
    }

    .card-two {
        right: -10px;
    }

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

    .section {
        padding: 70px 0;
    }

    .section-heading h2,
    .contact-header h2 {
        font-size: 31px;
    }

    .about-image {
        height: 300px;
    }

    .about-image img {
        width: 180px;
        height: 180px;
    }

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

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

    .atendimento-text h2 {
        font-size: 32px;
    }

    .atendimento-panel {
        min-height: 380px;
    }

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

    .contact-cta {
        flex-direction: column;

        text-align: center;
    }

    .whatsapp-button {
        width: 100%;
    }

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

        gap: 30px;
    }

    .footer-brand {
        justify-content: center;

        text-align: left;
    }

    .footer-grid > div:not(.footer-brand) {
        text-align: center;
    }

    .floating-whatsapp {
        right: 18px;
        bottom: 18px;
    }

    .back-top {
        right: 18px;
        bottom: 82px;
    }

}