@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

:root {
    --cor-fundo: #F8F7F5;
    --cor-fundo-secundaria: #E1DCD8;
    --cor-texto: #2F2727;
    --cor-primaria: #9D1B59;
    --cor-marrom-escuro: #750633;
    --transicao-suave: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --sombra-padrao: 0 10px 30px -15px rgba(0, 0, 0, 0.1);
    --gradiente-primario: linear-gradient(135deg, var(--cor-primaria), var(--cor-marrom-escuro));
    --borda-radius: 20px;
    --espacamento-secao: clamp(6rem, 10vw, 12rem);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 62.5%;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--cor-fundo);
    color: var(--cor-texto);
    font-size: 1.6rem;
    line-height: 1.7;
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

h1,
h2,
h3 {
    font-family: 'Poppins', sans-serif;
    color: var(--cor-texto);
    font-weight: 600;
}

.section {
    padding: var(--espacamento-secao) 2rem;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: clamp(3.2rem, 5vw, 4rem);
    text-align: center;
    margin-bottom: clamp(4rem, 8vw, 8rem);
    line-height: 1.2;
}

.section-colored {
    background-color: var(--cor-fundo-secundaria);
    max-width: none;
}

/* --- HEADER --- */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 4rem;
    background-color: rgba(248, 247, 245, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid transparent;
    height: 80px;
}

header.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

header .logo img {
    height: 60px;
    width: auto;
    transition: height 0.3s ease;
}

header .main-nav ul {
    display: flex;
    list-style: none;
    gap: 3.5rem;
    align-items: center;
}

header .main-nav a {
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--cor-texto);
    transition: color 0.3s ease;
    text-decoration: none;
    position: relative;
    padding: 0.5rem 0;
}

header .main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--cor-primaria);
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}

header .main-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}


header .main-nav a:hover {
    color: var(--cor-primaria);
}

a.nav-button {
    background-color: var(--cor-primaria);
    color: white !important;
    padding: 1rem 3rem;
    border-radius: 50px;
    transition: var(--transicao-suave);
    text-decoration: none;
}

a.nav-button:hover,
a.nav-button:focus {
    background-color: var(--cor-marrom-escuro);
    transform: translateY(-2px);
    color: white !important;
}

a.nav-button::after {
    display: none;
}


/* --- BOTÃO HAMBÚRGUER --- */
.hamburger {
    display: none;
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 12px;
    z-index: 1001;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.hamburger:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.hamburger .bar {
    display: block;
    width: 28px;
    height: 2px;
    margin: 6px auto;
    background-color: var(--cor-primaria);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- HERO SECTION --- */
.hero {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    padding: 0 var(--espacamento-secao);
    position: relative;
    overflow: hidden;
    max-width: none;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('FotosRebeca/background.jpg') no-repeat center center/cover;
    z-index: -2;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(248, 247, 245, 0.95) 10%, rgba(248, 247, 245, 0.7) 40%, rgba(248, 247, 245, 0) 70%);
    z-index: -1;
}

.hero-content {
    max-width: 650px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s 0.3s ease-out forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    font-size: clamp(3.8rem, 6vw, 6rem);
    line-height: 1.1;
    margin-bottom: 2rem;
    font-weight: 700;
    background: var(--gradiente-primario);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-content p {
    font-size: clamp(1.8rem, 2.5vw, 2.2rem);
    color: var(--cor-texto);
    opacity: 0.8;
    margin-bottom: 4rem;
    max-width: 90%;
}


/* --- COMPONENTES GERAIS --- */
.button {
    background: var(--gradiente-primario);
    color: white;
    padding: 1.5rem 4rem;
    border-radius: 50px;
    font-size: 1.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    border: none;
    text-decoration: none;
    box-shadow: var(--sombra-padrao);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--cor-marrom-escuro), var(--cor-primaria));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.button:hover::before {
    opacity: 1;
}

.button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px -20px rgba(157, 27, 89, 0.4);
}

/* --- SEÇÃO "PARA QUEM" --- */
.interconnected-cards-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: repeat(3, auto);
    gap: 3rem 2rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: stretch;
}

.info-card {
    background: white;
    padding: 4rem 3rem;
    border-radius: var(--borda-radius);
    box-shadow: var(--sombra-padrao);
    transition: var(--transicao-suave);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradiente-primario);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
}

.info-card:hover::before {
    transform: scaleX(1);
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -20px rgba(157, 27, 89, 0.3);
}

.info-card h3 {
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
}

.card-1 {
    grid-area: 1 / 1 / 2 / 2;
}

.card-2 {
    grid-area: 1 / 3 / 2 / 4;
}

.card-3 {
    grid-area: 2 / 1 / 3 / 2;
}

.card-4 {
    grid-area: 2 / 3 / 3 / 4;
}

.card-5 {
    grid-area: 3 / 1 / 4 / 2;
}

.card-6 {
    grid-area: 3 / 3 / 4 / 4;
}

.interconnection-graphic {
    grid-area: 1 / 2 / 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.interconnection-graphic svg {
    width: 100px;
    height: 100%;
    max-height: 500px;
}

/* --- SEÇÃO "COMO FUNCIONA" --- */
.steps-container {
    display: flex;
    justify-content: center;
    gap: clamp(2rem, 4vw, 4.8rem);
    margin: 4.8rem 0 3.2rem 0;
    flex-wrap: wrap;
}

.step-card {
    background: #fff;
    border: 3px solid #9d1b59;
    border-radius: 24px;
    box-shadow: 0 4px 24px rgba(157, 27, 89, 0.08);
    padding: 3.2rem 2.4rem;
    flex: 1 1 300px;
    max-width: 340px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.3s, transform 0.3s;
}

.step-card:hover {
    box-shadow: 0 8px 32px rgba(157, 27, 89, 0.18);
    transform: translateY(-8px) scale(1.03);
}

.step-icon {
    background: #f7b6d2;
    border-radius: 50%;
    padding: 1.6rem;
    margin-bottom: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--cor-primaria);
}

.section-cta {
    text-align: center;
    margin-top: 6rem;
}

/* --- SEÇÃO TRATAMENTOS --- */
.fullscreen-bg-section {
    position: relative;
    padding: var(--espacamento-secao);
    display: flex;
    justify-content: flex-start;
    align-items: center;
    min-height: 80vh;
    background: url('FotosRebeca/background3.jpg') no-repeat center center/cover;
    background-attachment: fixed;
    max-width: none;
}

.fullscreen-bg-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.content-overlay-card {
    position: relative;
    z-index: 2;
    max-width: 700px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    color: white;
    padding: 5rem;
    border-radius: var(--borda-radius);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.content-overlay-card h2 {
    color: white;
    font-size: clamp(3rem, 5vw, 4rem);
    margin-bottom: 2rem;
}

.content-overlay-card p {
    font-size: 1.8rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.content-overlay-card ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.content-overlay-card ul li {
    font-size: 1.6rem;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    cursor: default;
}

.content-overlay-card ul li:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.2));
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}


/* --- SEÇÃO "CONHEÇA-ME" --- */
.about-me-section .about-me-container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--cor-fundo-secundaria);
    padding: clamp(3rem, 6vw, 6rem);
    border-radius: 30px;
}

.about-me-carousel-wrapper {
    overflow: hidden;
    width: 100%;
}

.about-me-carousel {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-me-slide {
    flex: 0 0 100%;
    box-sizing: border-box;
    padding: 0 2rem;
}

.about-me-content {
    display: flex;
    align-items: center;
    gap: clamp(4rem, 8vw, 8rem);
}

.about-me-text {
    flex: 1;
    max-width: 550px;
}

.about-me-text h2 {
    font-size: clamp(3rem, 5vw, 4.5rem);
    line-height: 1.2;
    margin-bottom: 2rem;
}

.about-me-text h2 span {
    color: var(--cor-primaria);
}

.about-me-image {
    position: relative;
    flex: 0 1 450px;
    aspect-ratio: 3 / 4;
    isolation: isolate;
}

.about-me-image::before {
    content: '';
    position: absolute;
    width: 115%;
    height: 90%;
    background-color: var(--cor-primaria);
    opacity: 0.1;
    border-radius: 65% 35% 30% 70% / 60% 40% 60% 40%;
    top: 38%;
    left: 45%;
    transform: translate(-50%, -50%);
    z-index: -1;
    transition: var(--transicao-suave);
}

.informal-profile .about-me-image::before {
    display: none;
}

.about-me-image:hover::before {
    transform: translate(-50%, -50%) scale(1.05) rotate(10deg);
}

.about-me-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: var(--sombra-padrao);
}

.about-me-slider-dots {
    text-align: center;
    margin-top: 4rem;
}

.about-me-slider-dots .dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    margin: 0 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.about-me-slider-dots .dot.is-active {
    background-color: var(--cor-primaria);
    transform: scale(1.3);
}

/* --- SEÇÃO SERVIÇOS --- */
.servicos-section {
    background: var(--cor-fundo-secundaria);
    border-radius: var(--borda-radius);
    margin: 0 auto;
    max-width: 1200px;
    padding: 8rem 2rem;
    box-shadow: var(--sombra-padrao);
    text-align: center;
}

.servicos-cards-wrapper {
    display: flex;
    gap: 4rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 4rem;
}

.servico-card {
    background: white;
    border-radius: 24px;
    box-shadow: 0 8px 32px -12px rgba(157, 27, 89, 0.08);
    padding: 4rem 2.5rem 3rem 2.5rem;
    max-width: 340px;
    flex: 1 1 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.servico-card:hover {
    transform: translateY(-10px) scale(1.04);
    box-shadow: 0 8px 32px rgba(157, 27, 89, 0.18);
}

.servico-icon {
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 64px;
}

.servico-icon img {
    width: 64px;
    height: 64px;
    object-fit: contain;
}

.servico-card h3 {
    font-size: 2.2rem;
    color: var(--cor-primaria);
    margin-bottom: 1.2rem;
}

.servico-card p {
    font-size: 1.6rem;
    color: var(--cor-texto);
    opacity: 0.85;
}

.section-bridge {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 2;
    top: -40px;
    pointer-events: none;
}

.bridge-svg {
    display: block;
    width: 100%;
    height: 80px;
}

.bridge-svg path {
    stroke: url(#bridgeGradientPink) !important;
}

/* --- SEÇÃO DEPOIMENTOS --- */
.slider-container {
    max-width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    scroll-padding-inline: calc(50% - 225px);
}

.slider-container:active {
    cursor: grabbing;
}

.slider-container::-webkit-scrollbar {
    display: none;
}

.testimonial-slider {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
    perspective: 1000px;
}

/* NOVO: Estilo para a descrição dos depoimentos */
.testimonial-description {
    text-align: center;
    max-width: 600px;
    margin: -6rem auto 4rem auto;
    font-size: 1.5rem;
    font-style: italic;
    opacity: 0.8;
    line-height: 1.6;
}

.slide {
    flex: 0 0 450px;
    width: 450px;
    scroll-snap-align: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.5;
    transform: scale(0.9) translateZ(-100px);
    filter: blur(2px);
}

.slide.is-active {
    opacity: 1;
    transform: scale(1) translateZ(0);
    filter: blur(0);
}

.slide img {
    width: 100%;
    height: auto;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    -webkit-user-drag: none;
    user-select: none;
}

.slider-dots {
    text-align: center;
    margin-top: 4rem;
}

.slider-dots .dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    margin: 0 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.slider-dots .dot.is-active {
    background-color: var(--cor-primaria);
    transform: scale(1.3);
}

/* --- SEÇÃO FAQ --- */
#faq .accordion-container {
    position: relative;
    padding: clamp(3rem, 5vw, 6rem) clamp(2rem, 4vw, 4rem);
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: var(--borda-radius);
    box-shadow: var(--sombra-padrao);
}

#faq .accordion-container::before,
#faq .accordion-container::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 80px;
    border-color: var(--cor-primaria);
    border-style: solid;
    transition: all 0.3s ease;
}

#faq .accordion-container::before {
    top: 0;
    left: 0;
    border-width: 2px 0 0 2px;
    border-radius: 20px 0 0 0;
}

#faq .accordion-container::after {
    bottom: 0;
    right: 0;
    border-width: 0 2px 2px 0;
    border-radius: 0 0 20px 0;
}

.accordion-item {
    border-bottom: 1px solid var(--cor-fundo);
}

.accordion-item:last-child {
    border-bottom: none;
}


.accordion-header {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 2rem 0;
    font-size: 2rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--cor-texto);
    transition: color 0.3s ease;
}

.accordion-header:hover {
    color: var(--cor-primaria);
}

.accordion-header::after {
    content: '+';
    font-size: 3rem;
    font-weight: 300;
    color: var(--cor-primaria);
    transition: transform 0.4s ease;
}

.accordion-item.active .accordion-header::after {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.accordion-content p {
    padding: 0 0 2rem 0;
    opacity: 0.8;
}

/* --- SEÇÃO WIDGET INSTAGRAM --- */
.instagram-widget-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* --- SEÇÕES FINAIS E FOOTER --- */
.cta-final-section {
    text-align: center;
    background: var(--gradiente-primario);
    color: white;
    border-radius: var(--borda-radius);
    margin: 0 auto;
    max-width: 1200px;
    padding: clamp(6rem, 10vw, 8rem) clamp(2rem, 5vw, 4rem);
    box-shadow: var(--sombra-padrao);
}

.cta-final-section h2 {
    font-size: clamp(3rem, 6vw, 4.5rem);
    color: white;
    margin-bottom: 2rem;
}

.cta-final-section p {
    font-size: clamp(1.8rem, 3vw, 2rem);
    margin-bottom: 4rem;
    opacity: 0.9;
}

.cta-final-section .button {
    background: white;
    color: var(--cor-primaria);
    font-size: clamp(1.6rem, 2.5vw, 2rem);
    padding: clamp(1.5rem, 3vw, 2rem) clamp(3rem, 6vw, 5rem);
    border: 2px solid transparent;
}

.cta-final-section .button:hover {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-final-section .button::before {
    display: none;
}


footer {
    background-color: var(--cor-texto);
    color: var(--cor-fundo);
    padding: 4rem 2rem;
}

.footer-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.4rem;
}

.footer-item .footer-icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.footer-item a {
    color: white;
    text-decoration: underline;
    /* Garante que o sublinhado esteja sempre visível */
    transition: color 0.3s ease;
    /* A transição agora é apenas na cor */
}

.footer-item a:hover {
    color: #f7b6d2;
    /* Muda a cor do texto e do sublinhado ao passar o mouse */
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}


.whatsapp-btn {
    background-color: #12c052 !important;
    color: white !important;
    font-weight: 600;
    box-shadow: 0 4px 16px -6px rgba(37, 211, 102, 0.15);
    transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
}

.whatsapp-btn:hover {
    background: #25d366 !important;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.18);
    transform: scale(1.05);
}

/* NOVO: Estilos para o Banner de Privacidade */
.privacy-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(47, 39, 39, 0.95);
    backdrop-filter: blur(5px);
    color: var(--cor-fundo);
    padding: 2rem;
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transform: translateY(120%);
    transition: transform 0.5s ease-in-out;
    flex-wrap: wrap;
}

.privacy-banner.show {
    transform: translateY(0);
}

.privacy-banner p {
    margin: 0;
    text-align: center;
    max-width: 700px;
    font-size: 1.4rem;
    line-height: 1.6;
}

.privacy-banner a {
    color: #f7b6d2;
    text-decoration: underline;
}

.privacy-banner .button {
    padding: 0.8rem 2.5rem;
    font-size: 1.4rem;
    flex-shrink: 0;
}

/* --- ANIMAÇÃO DE APARECIMENTO AO ROLAR --- */
.section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.hero.section,
.content-overlay-card {
    opacity: 1;
    transform: translateY(0);
}

.section.is-visible {
    opacity: 1;
    transform: translateY(0);
}


/*
==============================================
--- RESPONSIVIDADE ---
==============================================
*/

/* NOVO: Ajuste do título para telas de notebook */
@media (min-width: 993px) and (max-width: 1440px) {
    .hero-content {
        max-width: 550px;
    }
}

@media (max-width: 1024px) {
    header {
        padding: 1rem 2rem;
    }

    .main-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(248, 247, 245, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease, visibility 0.4s ease;
    }

    .main-nav.is-active {
        display: flex;
        opacity: 1;
        visibility: visible;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 2rem;
        width: 100%;
        text-align: center;
    }

    .main-nav ul li {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.4s ease, transform 0.4s ease;
    }

    .main-nav.is-active ul li {
        opacity: 1;
        transform: translateY(0);
    }

    .main-nav.is-active ul li:nth-child(1) {
        transition-delay: 0.1s;
    }

    .main-nav.is-active ul li:nth-child(2) {
        transition-delay: 0.15s;
    }

    .main-nav.is-active ul li:nth-child(3) {
        transition-delay: 0.2s;
    }

    .main-nav.is-active ul li:nth-child(4) {
        transition-delay: 0.25s;
    }

    .main-nav.is-active ul li:nth-child(5) {
        transition-delay: 0.3s;
    }

    .main-nav.is-active ul li:nth-child(6) {
        transition-delay: 0.35s;
    }

    .main-nav.is-active ul li:nth-child(7) {
        transition-delay: 0.4s;
    }

    .main-nav.is-active ul li:nth-child(8) {
        transition-delay: 0.45s;
    }


    .main-nav a {
        font-size: 2.4rem;
        display: inline-block;
        padding: 1rem;
    }

    .hamburger {
        display: block;
    }

    .hamburger.is-active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.is-active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.is-active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .about-me-section .about-me-container {
        padding: 4rem;
    }

    .about-me-content,
    .about-me-content.informal-profile {
        flex-direction: column-reverse;
        gap: 5rem;
        text-align: center;
    }

    .about-me-content.informal-profile {
        flex-direction: column;
    }

    .about-me-text {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 8rem 2rem;
    }

    .section-title {
        margin-bottom: 5rem;
    }

    .testimonial-description {
        margin-top: -3rem;
        margin-bottom: 3rem;
    }

    header {
        height: 70px;
    }

    header .logo img {
        height: 50px;
    }

    .hero {
        text-align: center;
        justify-content: center;
        padding: 12rem 2rem 8rem 2rem;
    }

    .hero::after {
        background: linear-gradient(0deg, rgba(27, 23, 23, 0.7), rgba(27, 23, 23, 0.7));
    }

    .hero-content h1 {
        color: white;
        background: none;
        -webkit-background-clip: initial;
        background-clip: initial;
    }

    .hero-content p {
        color: white;
        opacity: 0.9;
        max-width: 100%;
    }

    .interconnected-cards-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .interconnection-graphic {
        display: none;
    }

    .info-card {
        grid-column: 1;
        grid-row: auto;
    }

    .fullscreen-bg-section {
        padding: 8rem 2rem;
    }

    .content-overlay-card {
        padding: 4rem 2.5rem;
    }

    .content-overlay-card ul {
        justify-content: center;
    }

    .slider-container {
        scroll-padding-inline: 2rem;
    }

    .testimonial-slider {
        padding: 2rem 0;
        gap: 2rem;
    }

    .slide {
        flex: 0 0 85%;
        width: 85%;
        max-width: 400px;
    }

    #faq .accordion-container {
        padding: 0;
        box-shadow: none;
        background: none;
    }

    #faq .accordion-container::before,
    #faq .accordion-container::after {
        display: none;
    }

    .accordion-header {
        font-size: 1.8rem;
    }

    .footer-container {
        flex-direction: row;
        /* Define a direção como horizontal */
        flex-wrap: wrap;
        /* Permite que os itens quebrem a linha */
        justify-content: center;
        /* Garante que fiquem centralizados */
        gap: 7892rem 3rem;
        /* Ajusta o espaçamento vertical e horizontal */
    }

    .section-bridge {
        height: 60px;
        top: -30px;
    }

    .bridge-svg {
        height: 60px;
    }

    .privacy-banner {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem;
    }

    .privacy-banner p {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 58%;
    }

    header .logo img {
        height: 45px;
    }

    a.nav-button {
        padding: 1.2rem 3rem !important;
    }

    .servicos-card {
        flex-basis: 100%;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
}

/* ===== TESTE DEFINITIVO PARA O BOTÃO DO HEADER ===== */
header nav ul li a.whatsapp-btn {
    padding: 1rem 2rem !important;
}