@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700;800&display=swap');

:root {
    --primary-black: #111111;
    --pure-black: #000000;
    --pure-white: #ffffff;
    --silver: #A5A5A4;
    --dark-grey: #222222;
    --light-grey: #f5f5f5;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --header-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height, 80px);
}

body {
    background-color: var(--pure-black);
    color: var(--pure-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- Typography --- */
h1,
h2,
h3,
h4 {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h1 {
    font-size: clamp(2.2rem, 7vw, 4rem);
    line-height: 1.1;
    margin-bottom: 20px;
}

h2 {
    font-size: clamp(1.6rem, 4.5vw, 2.2rem);
    margin-bottom: 30px;
    text-align: center;
}

p {
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 20px;
}

/* --- Layout Components --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

/* --- Header --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    display: flex;
    align-items: center;
    z-index: 1000;
    background-color: var(--pure-black);
    transition: var(--transition);
}

header.scrolled {
    background: var(--pure-black);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    height: 70px;
}

header .container {
    max-width: 1400px;
}

.header-wrapper {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 40px;
}

.logo img {
    height: 38px;
    width: auto;
}

.btn-mais-duvidas {
    display: inline-block;
    padding: 12px 40px;
    border: 1px solid #fff;
    border-radius: 30px;
    color: #fff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    margin-bottom: 20px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

nav a {
    color: var(--pure-white);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    transition: var(--transition);
}

nav a:hover {
    color: var(--silver);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-login {
    color: #ffffff !important;
    text-decoration: none;
    font-size: 0.72rem;
    font-weight: 600;
    border: 1.5px solid #ffffff;
    padding: 6px 20px;
    border-radius: 50px;
    text-transform: uppercase;
    transition: var(--transition);
}

.btn-login:hover {
    background: white;
    color: black !important;
}

.btn-search {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    padding: 0;
}

.btn-contrate {
    background: #ffffff !important;
    color: #000000 !important;
    text-decoration: none;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 8px 22px;
    border-radius: 50px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.libras-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #ffffff;
}

/* --- Hero Section --- */
.hero {
    min-height: auto;
    display: flex;
    align-items: flex-start;
    background-color: var(--pure-black);
    padding-top: 0;
    padding-bottom: 0;
    margin-top: -40px;
    position: relative;
    overflow: visible;
}

.hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
}

.hero-content {
    flex: 1;
    max-width: 550px;
    padding-top: 0;
    margin-top: -40px;
    position: relative;
    z-index: 10;
    /* Garante que o texto fique por cima da imagem */
}

.hero-title {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 600;
    text-transform: none;
    letter-spacing: -0.5px;
    margin-bottom: 25px;
    line-height: 1.1;
}

.hero-description {
    margin-bottom: 30px;
}

.hero-description p {
    font-size: 0.88rem;
    line-height: 1.4;
    margin-bottom: 0px;
    /* Removido o espaçamento entre o parágrafo em negrito e o normal */
    color: #ffffff;
}

.hero-description p strong {
    font-weight: 700;
}

.hero-list {
    list-style: none;
    margin-bottom: 40px;
}

.hero-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 2px;
    /* Espaçamento entre os itens removido/minimizado */
    font-size: 0.85rem;
    font-weight: 400;
    line-height: 1.3;
}

.hero-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 3px;
    height: 3px;
    background-color: var(--silver);
    border-radius: 50%;
}

.hero-disclosure {
    display: inline-block;
    background-color: white;
    color: black;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.62rem;
    font-weight: 700;
    line-height: 1.3;
}

.hero-image-container {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    position: relative;
    align-items: center;
    height: 100%;
    min-height: 600px;
}

.hero-person-img {
    height: 90vh;
    width: auto;
    object-fit: contain;
    position: absolute;
    right: -10%;
    z-index: 1;
    display: block;
}

.hero-grafismo {
    position: absolute;
    top: 50%;
    right: -55%;
    transform: translateY(-50%);
    height: 150vh;
    width: auto;
    z-index: 2;
    pointer-events: none;
    opacity: 1;
}

.hero-graphic-circle {
    position: absolute;
    right: -25%;
    bottom: -15%;
    width: 70vw;
    height: 70vw;
    border: 65px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    z-index: 1;
}

.hero-graphic-circle::before {
    content: "";
    position: absolute;
    inset: -25px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
}

.hero-justus-caption-overlay {
    position: absolute;
    bottom: 12%;
    right: 5%;
    text-align: right;
    color: white;
    z-index: 30;
    line-height: 1.2;
}

.hero-justus-caption-overlay strong {
    font-size: 0.85rem;
    display: block;
    margin-bottom: 2px;
}

.hero-justus-caption-overlay span {
    font-size: 0.75rem;
    font-weight: 300;
    opacity: 0.8;
}

.ans-badge-fixed {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 7px;
    font-weight: 700;
    color: #000;
    background: #fff;
    padding: 2px 5px;
    z-index: 100;
    letter-spacing: 0.5px;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 18px 40px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background-color: var(--pure-white);
    color: var(--pure-black);
}

.btn-primary:hover {
    background-color: var(--silver);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--pure-white);
    border: 1px solid var(--pure-white);
}

.btn-outline:hover {
    background-color: var(--pure-white);
    color: var(--pure-black);
}

/* --- Melhor Cuidado Section --- */
.melhor-cuidado-section {
    padding: 80px 0;
    position: relative;
    z-index: 10;
    background: linear-gradient(50deg, rgb(84, 84, 84) 10%, rgb(0, 0, 0) 60%);
}

.melhor-cuidado-section .block-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.cuidado-left {
    flex: 1;
    min-width: 320px;
    max-width: 500px;
}

.cuidado-title {
    font-size: 1.15rem;
    /* Decreased as requested to match the image scale */
    font-weight: 400;
    /* Lighter font weight to match image */
    line-height: 1.4;
    margin-bottom: 20px;
    /* Brought closer to the card */
    text-align: left;
    /* Ensure it is strictly left-aligned like the image */
}

.cuidado-card-img {
    width: 100%;
    max-width: 320px;
    /* Reduced to avoid heavy pixelation loss of resolution */
    height: auto;
    border-radius: 10px;
}

.cuidado-right {
    flex: 1.5;
    min-width: 350px;
    display: flex;
    justify-content: flex-end;
}

.video-facade {
    width: 100%;
    max-width: 650px;
    aspect-ratio: 16 / 9;
    /* Perfect youtube aspect ratio */
    display: block;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    position: relative;
    background: #000;
}

.cuidado-video-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.video-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    pointer-events: none;
    /* Allows the click to perfectly pass through to the Facade parent */
    transition: transform 0.3s ease;
}

.play-icon {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.5));
}

.video-facade:hover .cuidado-video-img {
    opacity: 0.8;
}

.video-facade:hover .video-play-overlay {
    transform: translate(-50%, -50%) scale(1.1);
}

.video-facade.playing .video-play-overlay,
.video-facade.playing .cuidado-video-img {
    display: none;
}

.cuidado-video-iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

/* --- Servicos Diferenciados Section --- */
.servicos-diferenciados-section {
    padding: 100px 0 20px;
    position: relative;
    z-index: 10;
}

.servicos-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    align-items: center;
}

.servico-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 320px;
}

.servico-graphic-container {
    position: relative;
    width: 320px;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.grafismo-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 5;
    /* This stays on TOP so the silver bevel overlaps the photo */
}

.servico-core-img {
    position: absolute;
    /* Place it absolutely behind the graphic */
    z-index: 1;
    /* Under the graphic */
    width: 60%;
    /* Roughly the size of the inner hole. Adjust if needed */
    height: 60%;
    object-fit: cover;
    border-radius: 50%;
}

.servico-item p {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0;
}

/* --- Atendimento Exclusivo Section --- */
.atendimento-exclusivo-section {
    background-image: url('./public/bg_black_8d353cdef3.webp');
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.atendimento-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.atendimento-card {
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    padding: 15px 12px;
    width: 175px;
    min-height: 160px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.atendimento-card:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.05);
}

.atendimento-icon {
    width: 45px;
    height: 45px;
    margin-bottom: 25px;
    color: white;
}

.atendimento-card p {
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

/* --- FAQ Section --- */
.faq-section {
    background: linear-gradient(230deg, rgb(84, 84, 84) 10%, rgb(0, 0, 0) 60%);
    padding: 100px 0 20px;
    position: relative;
    z-index: 10;
}

.faq-section .container {
    text-align: center;
}

.faq-bubble {
    border: 1px solid white;
    border-radius: 50px;
    padding: 25px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto 50px;
    position: relative;
    font-weight: 600;
    background: #1a1a1a;
    min-height: 80px;
}

.faq-bubble p {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
}

.faq-bubble::after {
    content: '';
    position: absolute;
    bottom: -7px;
    left: 20%;
    width: 12px;
    height: 12px;
    background: #1a1a1a;
    border-bottom: 1px solid white;
    border-right: 1px solid white;
    transform: rotate(45deg);
}

.faq-answer {
    max-width: 850px;
    margin: 0 auto 40px;
}

.faq-answer p {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 25px;
    line-height: 1.6;
}

.btn-mais-duvidas {
    display: inline-block;
    padding: 12px 35px;
    border-radius: 50px;
    border: 1px solid white;
    color: white;
    background: transparent;
    text-transform: none;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
}

.btn-mais-duvidas:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* --- Rede Credenciada Section --- */
.rede-credenciada-section {
    background-image: url('./public/bg_black_8d353cdef3.webp');
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.rede-bg-circle {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.rede-bg-circle-left {
    width: 60vw;
    height: 60vw;
    border: 8vw solid #222224;
    /* Dark grey arch */
    left: -30vw;
    top: 50%;
    transform: translateY(-50%);
}

.rede-bg-circle-right {
    width: 45vw;
    height: 45vw;
    border: 5vw solid #A5A5A4;
    /* Lighter silver arch */
    right: -20vw;
    top: 50%;
    transform: translateY(-50%);
}

.rede-credenciada-container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1100px;
}

.rede-title {
    font-size: clamp(1.8rem, 4.5vw, 2.2rem);
    text-transform: none;
    letter-spacing: normal;
    margin-bottom: 20px;
    font-weight: 700;
}

.rede-subtitle {
    font-size: 0.9rem;
    font-weight: 400;
    margin-bottom: 70px;
    padding: 0 20px;
}

.rede-carousel-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.carousel-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
}

.carousel-btn img {
    height: 35px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.carousel-btn:hover img {
    opacity: 1;
}

.rede-slider-container {
    width: 100%;
    overflow: hidden;
}

.rede-grid {
    display: flex;
    transition: transform 0.4s ease-in-out;
    width: 100%;
}

.rede-column {
    min-width: 33.333%;
    padding: 0 35px;
    box-sizing: border-box;
}

.rede-column.no-border {
    border-right: none !important;
}

.rede-column:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.5);
}

.rede-column h3 {
    font-size: 1.3rem;
    text-transform: none;
    margin-bottom: 30px;
    font-weight: 600;
}

.rede-column ul {
    list-style: none;
    padding: 0;
}

.rede-column li {
    font-size: 0.88rem;
    margin-bottom: 18px;
    font-weight: 500;
    position: relative;
    padding-left: 15px;
    line-height: 1.4;
}

.rede-column li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2rem;
    line-height: 1.2;
}

.btn-mais-rede {
    display: table;
    margin: 40px auto 0;
    padding: 12px 30px;
    border-radius: 50px;
    border: 1px solid white;
    color: white;
    background: transparent;
    text-transform: none;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s;
}

.btn-mais-rede:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

@media (max-width: 968px) {
    .rede-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .rede-column {
        padding: 0;
    }

    .rede-column:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
        padding-bottom: 40px;
    }

    .rede-bg-circle-left {
        width: 120vw;
        height: 120vw;
        left: -60vw;
    }

    .rede-bg-circle-right {
        width: 100vw;
        height: 100vw;
        right: -50vw;
    }
}

/* --- Form & Footer Layout --- */
.hero {
    background-color: var(--pure-black);
    padding: 100px 0 60px;
    position: relative;
    overflow: visible;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.contact-footer-section {
    background-color: var(--pure-black);
    padding: 20px 0 100px 0;
    margin-top: -80px; /* Desce um pouco para equilibrar */
    position: relative;
    z-index: 20;
}

.contact-footer-grid {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.contact-form-column {
    max-width: 600px;
    width: 100%;
}

/* Form Styles */
.contact-form-column {
    padding-right: 20px;
}

.form-title {
    font-size: clamp(1.2rem, 3.5vw, 1.6rem);
    font-weight: 700;
    text-transform: none;
    margin-bottom: 2px;
    text-align: left;
    letter-spacing: normal;
}

.form-subtitle {
    font-size: clamp(1.2rem, 3.5vw, 1.6rem);
    font-weight: 400;
    text-transform: none;
    margin-bottom: 25px;
    letter-spacing: normal;
}

.form-text {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 35px;
}

.form-row {
    margin-bottom: 20px;
}

.form-row input[type="text"],
.form-row input[type="tel"],
.form-row input[type="email"],
.form-row input[type="number"],
.form-row select {
    width: 100%;
    padding: 16px 25px;
    border-radius: 50px;
    border: none;
    background-color: var(--pure-white);
    color: var(--pure-black);
    font-size: 0.9rem;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
}

.form-row input::placeholder {
    color: #555;
}

.form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-row-state-cnpj {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 20px;
    align-items: center;
}

/* Grupo de estilos unificado para todos os campos */
#lead-form input[type="text"],
#lead-form input[type="tel"],
#lead-form input[type="email"],
#lead-form input[type="number"],
#lead-form select {
    width: 100%;
    padding: 16px 25px;
    border: none;
    border-radius: 50px;
    font-size: 0.9rem;
    font-family: inherit;
    background: var(--pure-white);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
}

.form-row-split {
    display: flex;
    gap: 15px;
    align-items: flex-start; /* Alinha pelo topo para manter consistência */
    margin-bottom: 20px;
}

.form-row-split input[type="number"] {
    margin-bottom: 0;
    flex: 0 0 140px;
    -moz-appearance: textfield; /* Firefox */
}

/* Esconde setas no Chrome, Safari, Edge e Opera */
.form-row-split input[type="number"]::-webkit-outer-spin-button,
.form-row-split input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.has-plan-toggle {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.toggle-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff;
}

.toggle-options {
    display: flex;
    align-items: center;
    gap: 20px;
}

.toggle-options label {
    font-size: 0.85rem;
    font-weight: 500;
    color: #ffffff;
    margin-left: 5px;
    cursor: pointer;
}

.toggle-options input[type="radio"] {
    cursor: pointer;
    accent-color: #ffffff;
}

.cnpj-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
}

.cnpj-toggle input[type="radio"], .form-terms input[type="checkbox"] {
    width: 20px;
    height: 20px;
    appearance: none;
    background-color: white;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid #ccc;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cnpj-toggle input[type="radio"]:checked::before, .form-terms input[type="checkbox"]:checked::before {
    content: '';
    width: 10px;
    height: 10px;
    background-color: black;
    border-radius: 50%;
}

.form-terms input[type="checkbox"] {
    border-radius: 4px; /* Maintain checkbox-like look but with center dot as requested */
}

.form-terms {
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 15px;
    align-items: flex-start;
    margin-top: 40px;
}

.img-cookie-container {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-icon {
    width: 100%;
    height: auto;
}

.terms-radio {
    width: 25px;
    height: 25px;
    appearance: none;
    background-color: white;
    border-radius: 50%;
    cursor: pointer;
    margin-top: 4px;
}

.terms-radio:checked {
    border: 6px solid #ccc;
}

.form-terms label {
    font-size: 0.75rem;
    line-height: 1.6;
    color: #ccc;
    font-weight: 400;
    max-width: 480px;
}

/* Contact Info & Right Column */
.contact-info-column h4 {
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: none;
    margin-bottom: 25px;
    letter-spacing: normal;
}

.info-block {
    margin-bottom: 20px;
}

.telefone-destaque {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 2px;
    letter-spacing: 0.5px;
}

.telefone-desc {
    font-size: 0.88rem;
    font-weight: 400;
    margin-bottom: 0px;
}

.telefone-titulo {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.redes-sociais {
    display: flex;
    gap: 12px;
    margin-bottom: 35px;
}

.redes-sociais a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid white;
    border-radius: 50%;
    transition: var(--transition);
}

.redes-sociais a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.redes-sociais img {
    height: 18px;
    width: auto;
}

.app-downloads {
    display: flex;
    gap: 15px;
}

.app-downloads img {
    height: 48px;
    width: auto;
    cursor: pointer;
}

@media (max-width: 968px) {
    .contact-footer-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .form-row-2,
    .form-row-state-cnpj {
        grid-template-columns: 1fr;
    }
}

/* --- Animations --- */
[data-reveal] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

/* --- Mobile Menu --- */
.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 968px) {
    .mobile-toggle {
        display: block;
    }

    nav {
        position: fixed;
        right: -100%;
        top: 0;
        width: 80%;
        height: 100vh;
        background: #000;
        padding: 100px 40px;
        transition: var(--transition);
        z-index: 999;
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
    }

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

/* --- Footer --- */
footer {
    background-color: var(--pure-black);
    padding: 40px 0;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding-bottom: 20px;
}

.footer-top-line, .footer-bottom-line {
    height: 1px;
    background-color: #fff;
    width: 100%;
    margin: 10px auto;
}

.footer-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    padding: 30px 0;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h3 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.footer-column p {
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.phone-number {
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon img {
    width: 28px;
    height: 28px;
    filter: brightness(0) invert(1);
    transition: var(--transition);
}

.social-icon:hover img {
    transform: translateY(-3px);
    opacity: 0.7;
}

.app-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.app-buttons img {
    height: auto;
    width: 135px; /* Define uma largura idêntica para os dois */
    object-fit: contain;
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
}

.footer-logo img {
    height: 45px;
}

.footer-info p {
    color: #444;
    font-size: 0.8rem;
}

.footer-registro img {
    height: auto;
    max-width: 200px;
}

@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 992px) {
    .footer-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .footer-column {
        text-align: center;
    }
    .social-icons {
        justify-content: center;
    }
    .app-buttons {
        align-items: center;
    }
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .header-left { gap: 15px; }
    .logo img { height: 28px; }
    .btn-contrate { padding: 8px 15px; font-size: 0.65rem; }
    
    .hero {
        padding-top: 100px;
        margin-top: 0;
        min-height: auto;
    }
    .hero-wrapper {
        flex-direction: column;
        gap: 30px;
    }
    .hero-content {
        max-width: 100%;
        text-align: center;
        margin-top: 0;
    }
    .hero-title {
        font-size: 2.2rem;
        text-align: center;
    }
    .hero-description p {
        text-align: center;
    }
    .hero-list {
        display: inline-block;
        text-align: left;
        margin-bottom: 20px;
    }
    .hero-disclosure {
        margin: 0 auto;
        text-align: center;
    }
    .hero-image-container {
        min-height: 350px;
        width: 100%;
        justify-content: center;
        align-items: center;
        padding: 0;
        position: relative;
        overflow: hidden;
    }
    .hero-person-img {
        position: relative;
        height: 350px;
        width: auto;
        object-fit: contain;
        right: auto;
        z-index: 2;
    }
    .hero-grafismo {
        position: absolute;
        height: 100%;
        width: auto;
        right: 0%;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1;
        opacity: 0.6;
    }
    .hero-justus-caption-overlay {
        bottom: 10px;
        right: 10px;
        transform: none;
        text-align: right;
        width: auto;
        z-index: 3;
    }
    
    .contact-footer-section {
        margin-top: 0;
        padding-top: 50px;
    }
    
    .melhor-cuidado-section .block-layout {
        flex-direction: column;
        gap: 30px;
    }
    .cuidado-left, .cuidado-right {
        max-width: 100%;
        min-width: 100%;
    }
    .cuidado-title {
        text-align: center;
    }
    .cuidado-card-img {
        margin: 0 auto;
        display: block;
    }
    
    .servico-item {
        width: 100%;
        max-width: 320px;
    }
    .servico-graphic-container {
        width: 250px;
        height: 250px;
    }
    
    .faq-bubble {
        padding: 20px;
        border-radius: 20px;
    }
    .faq-bubble p {
        font-size: 0.95rem;
    }
    .faq-bubble::after {
        left: 50%;
        transform: translateX(-50%) rotate(45deg);
    }
}