:root {
    --azul: #0d6594;
    --azul-escuro: #084c70;
    --azul-claro: #eaf5fa;
    --marrom: #8f5d3b;
    --marrom-claro: #b98662;
    --texto: #26343b;
    --texto-suave: #64727a;
    --fundo: #fbfcfd;
    --branco: #fff;
    --borda: #dce7ec;
    --sombra: 0 18px 50px rgba(13, 101, 148, 0.25);
    --raio: 22px;
    --max: 1180px;
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    background: var(--fundo);
    color: var(--texto);
    font-family:
        /* "Bebas Neue" */
        Inter,
       sans-serif;
    line-height: 1.65;
}
img {
    max-width: 100%;
    display: block;
}
a {
    color: inherit;
    text-decoration: none;
}
button,
input,
textarea {
    font: inherit;
}
.link-simple:hover {
    color: #fff;
    
}
.container {
    width: min(calc(100% - 40px), var(--max));
    margin-inline: auto;
}
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(220, 231, 236, 0.8);
}
.header-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    gap: 28px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-right: auto;
}
.brand-logo {
    width: 52px;
    height: 52px;
    object-fit: contain;
}
.brand-name {
    margin: 0;
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.55rem;
    color: var(--azul);
    line-height: 1;
}
.brand-subtitle {
    margin: 5px 0 0;
    font-size: 0.67rem;
    letter-spacing: 0.28em;
    color: var(--marrom);
    text-transform: uppercase;
}
.nav {
    display: flex;
    align-items: center;
    gap: 24px;
}
.nav a {
    font-size: 0.93rem;
    color: #42545e;
    transition: 0.2s;
}
.nav a:hover,
.nav a.active {
    color: var(--azul);
    font-weight: 650;
}
.header-cta,
.button-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 0;
    border-radius: 10px;
    background: var(--azul);
    color: #fff;
    padding: 12px 20px;
    cursor: pointer;
    box-shadow: 3px 4px 5px 0px rgba(5, 45, 67, 0.9);
    transition: all 0.2s ease;
}
.header-cta:hover,
.button-primary:hover {
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    background: var(--azul-escuro);
    box-shadow: inset 3px 4px 5px 0px rgba(5, 45, 67, 0.9);
    transition: all 0.2s ease;
}
.menu-toggle {
    display: none;
    border: 1px solid var(--borda);
    background: #fff;
    border-radius: 12px;
    padding: 9px 11px;
}
.hero {
    padding: 48px 0 72px;
    background: linear-gradient(135deg, #f7fbfd 0%, #eef7fa 55%, #fff 100%);
    overflow: hidden;
}
.hero-carousel {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--sombra);
    background: #eaf5fa;
}
.slide {
    display: none;
    min-height: 500px;
    position: relative;
}
.slide.active {
    display: grid;
    grid-template-columns: 1.05fr 1.05fr;
}
.slide-copy {
    padding: 64px 58px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}
.eyebrow {
    margin: 0 0 10px;
    color: var(--marrom);
    font-weight: 800;
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.hero h1,
.page-title {
    font-family: "Bebas Neue", sans-serif;
    color: var(--azul-escuro);
    line-height: 1.08;
    letter-spacing: 0.03em;
}
.hero h1 {
    font-size: clamp(2.3rem, 4.2vw, 4.2rem);
    margin: 0 0 20px;
}
.hero p.lead {
    font-size: 1.08rem;
    color: #53646c;
    max-width: 610px;
    margin: 0 0 28px;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.button-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--borda);
    border-radius: 999px;
    padding: 11px 19px;
    background: #fff;
    color: var(--azul);
    font-weight: 700;
}
.slide-media {
    min-height: 500px;
    background: url("../media/bg-1.jpg") center/cover no-repeat;
    position: relative;
}
.slide-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(13, 101, 148, 0.18), rgba(13, 101, 148, 0.03));
}
.slide-badge {
    position: absolute;
    right: 28px;
    bottom: 28px;
    z-index: 2;
    max-width: 260px;
    padding: 20px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.93);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.13);
}
.slide-badge strong {
    display: block;
    color: var(--azul);
    font-size: 1.05rem;
}
.carousel-controls {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 22px;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 4;
}
.carousel-dot {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #b8cbd4;
    cursor: pointer;
}
.carousel-dot.active {
    background: var(--azul);
    transform: scale(1.25);
}
.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: var(--azul);
    font-size: 1.3rem;
    cursor: pointer;
}
.carousel-prev {
    left: 18px;
}
.carousel-next {
    right: 18px;
}
.section {
    padding: 82px 0;
}
.section.alt {
    background: #fff;
}
.section-heading {
    max-width: 760px;
    margin-bottom: 38px;
}
.section-heading.center {
    text-align: center;
    margin-inline: auto;
}
.section-title {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(2rem, 3.3vw, 3rem);
    line-height: 1.15;
    color: var(--azul-escuro);
    margin: 0 0 15px;
}
.section-copy {
    color: var(--texto-suave);
    font-size: 1.03rem;
}
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.card {
    background: #fff;
    border: 1px solid var(--borda);
    border-radius: var(--raio);
    padding: 28px;
    box-shadow: 0 8px 30px rgba(25, 70, 90, 0.05);
}
.card h3 {
    margin: 0 0 10px;
    color: var(--azul-escuro);
}
.card p {
    margin: 0;
    color: var(--texto-suave);
}
.about-image {
    min-height: 430px;
    border-radius: 28px;
    background: url("../media/paulo-psic.png") center/cover no-repeat;
    box-shadow: var(--sombra);
}
.list-check {
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}
.list-check li {
    position: relative;
    padding-left: 28px;
    margin: 10px 0;
    color: var(--texto-suave);
}
.list-check li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--azul);
    font-weight: 800;
}
.service-card {
    display: flex;
    flex-direction: column;
    min-height: 230px;
}
.service-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: var(--azul-claro);
    display: grid;
    place-items: center;
    color: var(--azul);
    font-weight: 900;
    margin-bottom: 18px;
}
.banner-callout {
    padding: 42px;
    border-radius: 28px;
    background: linear-gradient(135deg, var(--azul-escuro), var(--azul));
    color: #fff;
}
.banner-callout h2 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 2.1rem;
    line-height: 1.15;
    margin: 0 0 12px;
    letter-spacing: 0.03em;
}
.banner-callout p {
    color: #e4f3f8;
    max-width: 720px;
}
.banner-callout .button-secondary {
    border: 0;
}
.faq {
    border: 1px solid var(--borda);
    border-radius: 18px;
    background: #fff;
    overflow: hidden;
}
.faq details + details {
    border-top: 1px solid var(--borda);
}
.faq summary {
    padding: 20px 22px;
    cursor: pointer;
    font-weight: 750;
    color: var(--azul-escuro);
}
.faq p {
    padding: 0 22px 20px;
    margin: 0;
    color: var(--texto-suave);
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}
.form-field {
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.form-field.full {
    grid-column: 1/-1;
}
.form-field label {
    font-weight: 700;
    color: #44545d;
}
.form-field input,
.form-field textarea {
    border: 1px solid var(--borda);
    border-radius: 14px;
    padding: 13px 14px;
    background: #fff;
    outline: none;
}
.form-field textarea {
    min-height: 150px;
    resize: vertical;
}
.form-field input:focus,
.form-field textarea:focus {
    border-color: var(--azul);
    box-shadow: 0 0 0 3px rgba(13, 101, 148, 0.1);
}
.post {
    border: 1px solid var(--borda);
    border-radius: 22px;
    background: #fff;
    overflow: hidden;
}
.post-image {
    height: 220px;
    background: url("../media/bg-1.jpg") center/cover;
}
.post-body {
    padding: 25px;
}
.post-body small {
    color: var(--marrom);
    font-weight: 750;
}
.post-body h2 {
    font-family: "Bebas Neue", sans-serif;
    color: var(--azul-escuro);
    margin: 8px 0 10px;
    line-height: 1.2;
}
.post-body p {
    color: var(--texto-suave);
}
.site-footer {
    padding: 45px 0 25px;
    background: #083e5b;
    color: #dbeaf0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.6fr 1.3fr;
    line-height: 1.3;
    gap: 30px;
}
.site-footer h3 {
    margin-top: 0;
    color: #fff;
}
.footer-links {
    display: grid;
    gap: 2px;
}
.footer-links a:hover {
    color: #fff;
}

.rede-contact {
    width: 900px;
    display: inline;
    align-items: center;
    gap: 8px;
}
.rede-contact a {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
}
.rede-contact h4 {
    margin: 0px;
}
.contato-whatsapp {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    padding: 15px 0px;
}
.footer-bottom {
    border-top: 2px solid rgba(255, 255, 255, 0.14);
    margin-top: 20px;
    padding-top: 18px;
    font-size: 0.85rem;
    color: #a9c4cf;
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.footer-bottom-right {
    font-size: 0.85rem;
    color: #a9c4cf;
}
.footer-bottom-left {
    font-size: 0.85rem;
    color: #a9c4cf;
}
.page-hero {
    padding: 30Cpx 0;
    background: linear-gradient(135deg, #eef7fa, #fff);
}
.page-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin: 0 0 14px;
}
.breadcrumb {
    font-size: 0.85rem;
    color: var(--texto-suave);
}
@media (max-width: 900px) {
    .nav {
        display: none;
        position: absolute;
        left: 20px;
        right: 20px;
        top: 78px;
        background: #fff;
        border: 1px solid var(--borda);
        border-radius: 18px;
        padding: 18px;
        box-shadow: var(--sombra);
        flex-direction: column;
        align-items: stretch;
    }
    .nav.open {
        display: flex;
    }
    .menu-toggle {
        display: block;
    }
    .header-cta {
        display: none;
    }
    .slide.active {
        grid-template-columns: 1fr;
    }
    .slide-media {
        min-height: 300px;
        order: -1;
    }
    .slide-copy {
        padding: 45px 30px 70px;
    }
    .grid-2,
    .grid-3,
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 600px) {
    .container {
        width: min(calc(100% - 28px), var(--max));
    }
    .hero {
        padding-top: 20px;
    }
    .slide-media {
        min-height: 200px;
        
    }
    .slide-badge {
        font-size: 0.6rem;
        min-width: 100px;
        max-width: 200px;
        padding: 15px;
        left: 15px;

    }
    .slide-badge strong {
        font-size: 0.8rem;
        
    }
    .slide-copy {
        padding: 36px 22px 60px;
    }
    .hero h1 {
        font-size: 2.25rem;
    }
    .section {
        padding: 40px 0;
    }
    .carousel-arrow {
        display: none;
    }
    .form-grid {
        grid-template-columns: 1fr;
    }
}

/* icone btn whatsapp */

.whatsapp-button {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 60px;
    right: 20px;
    z-index: 1000;
    padding: 10px;
    border-radius: 50%;
    background-color: #25d366;
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

/* Imagens específicas do carrossel */
.slide-01 .slide-media {
    background-image: url("../media/bg-1.jpg");
}

.slide-02 .slide-media {
    background-image: url("../media/bg-2.png");
}

.slide-03 .slide-media {
    background-image: url("../media/bg-3.png");
    background-position: center right;
}

/* Formulário */
.form-honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.form-status {
    margin: 12px 0 0;
    font-size: 0.92rem;
    color: var(--texto-suave);
}

.form-status[data-state="success"] {
    color: #23704b;
}

.form-status[data-state="error"] {
    color: #a33d3d;
}
