/* Reset e Variáveis */
:root {
    --bg-dark: #fbf9f4; /* Bege claro suave */
    --bg-card: #f3efe5; /* Bege médio */
    --bg-card-light: #ffffff;
    --bg-white: #ffffff;
    --primary-blue: #966b42; /* Marrom quente */
    --primary-blue-glow: rgba(150, 107, 66, 0.4);
    --light-blue: #f0e6d6; /* Bege claro quente */
    --text-white: #1c1c1f; /* Escuro para legibilidade */
    --text-gray: #5a5a63;
    --text-dark: #12141d;
    --text-dark-gray: #4a4a5a;
    --gold: #9b7618;
    --highlight: #a77542; /* Marrom claro para o highlight com contraste mobile */
    
    --font-heading: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-body: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-white);
    overflow-x: hidden;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Tipografia */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
}

.text-center {
    text-align: center;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}


/* Botões */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 16px;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: #fff;
    border: none;
}

.btn-primary:hover {
    background-color: #7a5431;
    box-shadow: 0 8px 24px var(--primary-blue-glow);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-white);
    border: 1px solid rgba(0, 0, 0, 0.2);
}

.btn-outline:hover {
    border-color: var(--text-white);
    background-color: rgba(0, 0, 0, 0.05);
}

.btn-block {
    width: 100%;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 14px;
}

/* Badges */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.badge-dark {
    background-color: rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-gray);
}

.badge-light {
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    backdrop-filter: blur(4px);
}

.badge-light-blue {
    background-color: var(--light-blue);
    color: var(--primary-blue);
}

.badge .dot {
    width: 6px;
    height: 6px;
    background-color: var(--primary-blue);
    border-radius: 50%;
    margin-right: 8px;
}

/* Navbar */
.navbar {
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: rgba(251, 249, 244, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: var(--gold);
}

.logo-text span {
    color: var(--text-white);
    font-weight: 400;
    margin-left: 8px;
}

.nav-logo {
    height: 48px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: #000000;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-white);
}

/* Hero Section */
.hero {
    padding: 60px 0 20px 0;
    position: relative;
    overflow: visible;
}

.hero-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: auto;
    max-width: 100vw;
    opacity: 0.04;
    z-index: 0;
    pointer-events: none;
    mix-blend-mode: multiply;
}

/* Background Blobs */
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.6;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background-color: #f7e6d2; /* Tom pêssego/rosa claro */
    top: -100px;
    left: -150px;
}

.blob-2 {
    width: 600px;
    height: 600px;
    background-color: #e8dbcd; /* Bege médio */
    bottom: -200px;
    right: -100px;
}

.blob-3 {
    width: 400px;
    height: 400px;
    background-color: #f0e6d6;
    top: 30%;
    left: 40%;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 580px;
}

.hero-title {
    font-size: 54px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--text-white);
}

.highlight {
    color: var(--highlight);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 32px;
    font-weight: 400;
}

.hero-subtitle strong {
    color: var(--text-dark);
}

.hero-social-proof {
    margin-top: 32px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.avatars {
    display: flex;
}

.avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--bg-dark);
    margin-left: -12px;
    background: linear-gradient(135deg, #966b42 0%, #d4af37 100%);
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.35);
}

.avatar:first-child {
    margin-left: 0;
}

.hero-social-proof span {
    font-size: 14px;
    color: var(--text-gray);
}

.hero-social-proof strong {
    color: var(--text-dark);
}

/* Hero Image & Floating Icons */
.hero-image-wrapper {
    position: relative;
    width: 650px;
    height: 550px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}

.neon-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--primary-blue) 0%, rgba(150, 107, 66, 0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(70px);
    opacity: 0.6;
    z-index: 1;
}

.hero-panel {
    position: absolute;
    border-radius: 20px;
    z-index: 1;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.panel-1 {
    width: 340px;
    height: 190px;
    background-color: var(--light-blue);
    top: 20%;
    left: -20px;
    border-radius: 24px;
    opacity: 0.9;
}

.panel-2 {
    width: 200px;
    height: 200px;
    background-color: var(--primary-blue);
    bottom: 15%;
    right: 30px;
    border-radius: 24px;
    opacity: 0.95;
}

.hero-image {
    position: relative;
    z-index: 5;
    max-width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom;
    filter: drop-shadow(-10px 10px 20px rgba(0,0,0,0.3));
    -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 25%, rgba(0,0,0,1) 50%);
    mask-image: linear-gradient(to top, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 25%, rgba(0,0,0,1) 50%);
}
.hero-image-wrapper picture {
    display: contents;
}

.floating-icon {
    position: absolute;
    width: 55px;
    height: 55px;
    background-color: var(--bg-card-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    z-index: 3;
    animation: float 6s ease-in-out infinite;
    border: 2px solid rgba(150, 107, 66, 0.15);
}

.floating-icon svg {
    filter: drop-shadow(0 2px 6px rgba(150, 107, 66, 0.4));
    transition: transform 0.3s;
}

.floating-icon:hover svg {
    transform: scale(1.1);
}

.icon-1 {
    top: 15%;
    right: 10%;
    animation-delay: 0s;
}

.icon-2 {
    top: 40%;
    left: 5%;
    animation-delay: 1.5s;
}

.icon-3 {
    bottom: 25%;
    right: 0%;
    animation-delay: 3s;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

/* Nossos Números */
.nossos-numeros {
    background-color: transparent;
    padding: 20px 0 100px 0;
    position: relative;
    z-index: 5;
}

.numeros-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.numeros-text {
    max-width: 500px;
}

.numeros-text .badge {
    margin-bottom: 20px;
    background-color: var(--bg-card);
}

.numeros-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-card {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 24px 32px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    width: 380px;
    box-shadow: 0 10px 40px rgba(150, 107, 66, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.feature-card:hover {
    transform: translateX(-10px) translateY(-5px);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 15px 50px rgba(150, 107, 66, 0.15);
    border-color: rgba(150, 107, 66, 0.3);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: var(--primary-blue);
    background: linear-gradient(135deg, var(--bg-card-light), var(--light-blue));
    width: 60px;
    height: 60px;
    border-radius: 14px;
    box-shadow: inset 0 2px 4px rgba(255,255,255,0.8), 0 4px 12px rgba(150,107,66,0.1);
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    filter: drop-shadow(0 2px 4px rgba(150, 107, 66, 0.3));
}

.feature-card p {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.3;
}

.numeros-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.n-stat-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.6) 0%, rgba(243,239,229,0.4) 100%);
    backdrop-filter: blur(10px);
    padding: 40px 20px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: all 0.4s ease;
    box-shadow: 0 8px 32px rgba(0,0,0,0.04);
}

.n-stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(150,107,66,0.12);
    border-color: rgba(150, 107, 66, 0.2);
}

.n-stat-card h3 {
    font-size: 46px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
    font-weight: 800;
}

.n-stat-card p {
    color: var(--text-gray);
    font-size: 16px;
}

.numeros-footer-text {
    text-align: center;
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.6;
}

/* Sobre Nós - Card 50/50 */
.about-section {
    padding: 40px 0 80px 0;
}

.about-card {
    display: flex;
    background: linear-gradient(135deg, #ffffff 0%, #f3efe5 100%);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.about-card-image {
    flex: 1;
    position: relative;
    min-height: 400px;
}

.about-card-image picture,
.about-card-image img {
    width: 100%;
    height: 100%;
}

.about-card-image picture {
    display: block;
}

.about-card-image img {
    object-fit: cover;
    object-position: bottom;
    filter: drop-shadow(-10px 10px 20px rgba(0,0,0,0.3));
    -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 25%, rgba(0,0,0,1) 50%);
    mask-image: linear-gradient(to top, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 25%, rgba(0,0,0,1) 50%);
}

.about-card-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-card-content h3 {
    font-size: 32px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.about-card-content p {
    color: var(--text-gray);
    margin-bottom: 16px;
    line-height: 1.7;
    font-size: 16px;
}

/* Awareness Section */
.awareness-section {
    padding: 20px 0 100px 0;
    position: relative;
    z-index: 5;
    background-color: transparent;
}

.awareness-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 50px;
    line-height: 1.3;
}

.awareness-title .highlight-number {
    color: var(--primary-blue);
    font-size: 40px;
    font-weight: 800;
}

.awareness-cards-wrapper {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 50px;
}

.awareness-card {
    display: flex;
    align-items: center;
    background: transparent;
    padding: 0;
    border-radius: 0;
    border: none;
    box-shadow: none;
    max-width: 420px;
    transition: transform 0.3s ease;
}

.awareness-card:hover {
    transform: translateY(-5px);
}

.awareness-number {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(150, 107, 66, 0.3);
    border-radius: 12px;
    padding: 16px 24px;
    margin-right: 20px;
    background: rgba(150, 107, 66, 0.03);
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
    text-align: center;
}

.awareness-card p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.5;
    text-align: left;
}

.awareness-card p strong {
    color: var(--primary-blue);
    font-weight: 700;
}

.awareness-footer-card {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 24px 40px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
    border-bottom: 3px solid var(--gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    position: relative;
}

.awareness-footer-card p {
    color: var(--text-dark);
    font-size: 14px;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.awareness-footer-card p strong {
    color: var(--primary-blue);
    font-weight: 700;
}

/* Seção de Serviços (Split Layout com Fade Bege Escuro) */
.services-split-section {
    padding: 160px 0;
    background: linear-gradient(to bottom, 
        rgba(216, 195, 165, 0) 0%, 
        rgba(216, 195, 165, 0.4) 15%, 
        rgba(216, 195, 165, 0.4) 85%, 
        rgba(216, 195, 165, 0) 100%
    );
    position: relative;
    z-index: 5;
    border-top: none;
}

.services-split-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
}

.services-content {
    flex: 1;
    max-width: 550px;
}

.services-split-title {
    color: var(--primary-blue);
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
}

.services-desc {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 40px;
}

.services-check-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-check-list li {
    display: flex;
    align-items: center;
    font-size: 15px;
    color: var(--text-gray);
    margin-bottom: 18px;
    font-weight: 500;
}

.services-check-list li svg {
    color: #27ae60; /* Verde igual à referência */
    margin-right: 14px;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.services-collage {
    flex: 1;
    position: relative;
    height: 500px;
    display: flex;
    justify-content: flex-end;
}

.collage-img-main {
    width: 85%;
    height: 420px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.collage-img-overlap {
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 60%;
    height: 320px;
    object-fit: cover;
    border-radius: 20px;
    border: 10px solid #fbf9f4; /* Combina com o off-white do site */
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    transition: all 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.collage-img-main img,
.collage-img-overlap img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

.services-collage:hover .collage-img-main {
    transform: scale(1.02) rotate(1deg) translateY(-5px);
    box-shadow: 0 30px 60px rgba(150, 107, 66, 0.15);
}

.services-collage:hover .collage-img-overlap {
    transform: scale(1.06) translate(-15px, 15px);
    box-shadow: 0 25px 50px rgba(150, 107, 66, 0.2);
    border-color: #ffffff;
}

/* Depoimentos */
.testimonials-section {
    padding: 100px 0;
    overflow: hidden;
    background-image: linear-gradient(rgba(17, 17, 17, 0.85), rgba(17, 17, 17, 0.85)), image-set(url('./assets/bg-depoimentos.avif') type('image/avif'), url('./assets/bg-depoimentos.png') type('image/png'));
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 20px;
}

.testimonials-section .section-title {
    margin-bottom: 0px;
    color: #ffffff;
}

.testimonials-section .section-subtitle {
    color: rgba(255, 255, 255, 0.7) !important;
}

.testimonials-slider {
    width: 100%;
    position: relative;
    display: flex;
    overflow: hidden;
    padding: 20px 0;
}

.testimonials-slider::before,
.testimonials-slider::after {
    content: '';
    position: absolute;
    top: 0;
    width: 250px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.testimonials-slider::before {
    left: 0;
    background: linear-gradient(to right, rgba(17,17,17,1) 0%, transparent 100%);
}

.testimonials-slider::after {
    right: 0;
    background: linear-gradient(to left, rgba(17,17,17,1) 0%, transparent 100%);
}

.testimonial-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scrollMarquee 50s linear infinite;
}

.testimonial-track:hover {
    animation-play-state: paused;
}

@keyframes scrollMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.testimonial-card.premium-card {
    width: 380px;
    background: #ffffff;
    border-radius: 24px;
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 240px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.4s ease;
    position: relative;
}

.testimonial-card.premium-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.08);
    border-color: rgba(212,175,55,0.3);
}

.testi-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.testimonial-card.premium-card .author-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    margin-right: 15px;
    border: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    background: linear-gradient(135deg, #966b42 0%, #d4af37 100%);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-weight: 800;
    font-size: 16px;
    color: var(--text-dark);
}

.author-role {
    font-size: 13px;
    color: var(--text-gray);
    font-weight: 500;
}

.quote-icon {
    margin-left: auto;
    font-size: 60px;
    color: rgba(212,175,55,0.15);
    font-family: serif;
    line-height: 1;
    height: 40px;
    transform: translateY(-10px);
}

.testi-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 20px;
    font-style: italic;
}

.testi-stars {
    color: var(--gold);
    font-size: 16px;
    letter-spacing: 2px;
}

/* CTA Formulário */
.cta-section {
    padding: 60px 0 100px 0;
}

.cta-card {
    background: linear-gradient(180deg, var(--light-blue) 0%, #ffffff 100%);
    border-radius: 24px;
    padding: 80px 40px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.05);
}

.cta-title {
    font-size: 36px;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.cta-subtitle {
    color: var(--text-dark-gray);
    font-size: 18px;
    margin-bottom: 40px;
}

.cta-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cta-form input {
    padding: 16px 20px;
    border-radius: 8px;
    border: 1px solid #e0e5f2;
    background-color: #fff;
    font-size: 16px;
    font-family: var(--font-body);
    outline: none;
    transition: border-color 0.3s;
}

.cta-form input:focus {
    border-color: var(--primary-blue);
}

.cta-form button {
    margin-top: 10px;
    padding: 16px;
    font-size: 16px;
}

/* Footer */
.site-footer {
    background-color: #111111;
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-about .footer-logo {
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
}

.footer-about .footer-logo span {
    color: var(--gold);
}

.footer-about .footer-desc {
    line-height: 1.6;
    margin-bottom: 25px;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255,255,255,0.05);
    color: #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--gold);
    color: #fff;
    transform: translateY(-3px);
}

.footer-contact h4, .footer-map h4 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.5;
}

.contact-list li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-list a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-list a:hover {
    color: var(--gold);
}

.map-wrapper {
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 14px;
}

/* Scroll Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.menu-toggle {
    display: none;
    cursor: pointer;
    color: var(--text-dark);
    appearance: none;
    background: transparent;
    border: 0;
    padding: 0;
    line-height: 0;
}
.nav-btn-mobile {
    display: none;
}

/* Responsive básico */
@media (max-width: 992px) {
    .navbar {
        padding: 10px 0;
    }
    
    .container {
        padding: 0 18px;
    }

    .nav-logo {
        height: 40px;
        width: 40px;
    }

    .logo {
        gap: 8px;
    }

    .logo-text {
        font-size: 21px;
    }

    .logo-text span {
        margin-left: 5px;
    }
    
    .menu-toggle {
        display: block;
    }
    .nav-btn-desktop {
        display: none;
    }
    .nav-btn-mobile {
        display: inline-flex;
        margin-top: 10px;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        flex-direction: column;
        padding: 30px 20px;
        gap: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.05);
        display: none;
        text-align: center;
    }
    
    .nav-links.active {
        display: flex;
    }

    .hero {
        padding: 24px 0 0;
    }
    
    .hero-container {
        flex-direction: column-reverse;
        text-align: center;
        gap: 8px;
    }
    
    .hero-title {
        font-size: clamp(31px, 8.1vw, 34px);
        line-height: 1.08;
        letter-spacing: -0.02em;
        margin-bottom: 18px;
    }
    
    .hero-subtitle {
        font-size: 15px;
        line-height: 1.55;
        margin-bottom: 22px;
    }

    .hero .btn-primary {
        width: 100%;
        min-height: 56px;
        padding: 13px 18px;
        line-height: 1.25;
    }

    .hero-image-wrapper {
        width: min(100%, 330px);
        height: 274px;
        margin-top: -4px;
    }

    .hero-watermark {
        width: 260px;
    }

    .hero-blob {
        filter: blur(40px);
        opacity: 0.45;
    }

    .blob-3 {
        display: none;
    }

    .neon-glow {
        width: 260px;
        height: 260px;
        filter: blur(45px);
    }

    .panel-1 {
        width: 250px;
        height: 145px;
        left: 18px;
        top: 26%;
    }

    .panel-2 {
        width: 150px;
        height: 150px;
        right: 22px;
        bottom: 10%;
    }

    .floating-icon {
        width: 45px;
        height: 45px;
        border-radius: 12px;
    }

    .floating-icon svg {
        width: 22px;
        height: 22px;
    }

    .hero-social-proof {
        justify-content: center;
        margin-top: 22px;
        gap: 12px;
    }

    .avatar {
        width: 34px;
        height: 34px;
    }

    .hero-social-proof span {
        max-width: 210px;
        line-height: 1.35;
    }

    .nossos-numeros {
        padding-top: 12px;
    }

    .numeros-top, .about-card, .services-split-container {
        flex-direction: column;
        text-align: center;
    }
    
    .numeros-top {
        gap: 40px;
    }
    .services-split-container {
        gap: 40px;
    }

    .feature-card {
        width: 100%;
    }

    .numeros-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .services-collage {
        width: 100%;
        height: 400px;
        justify-content: center;
    }
    
    .collage-img-main {
        width: 90%;
        height: 320px;
    }
    
    .collage-img-overlap {
        width: 65%;
        height: 240px;
    }

    .awareness-cards-wrapper {
        flex-direction: column;
        align-items: center;
    }
    
    .awareness-card {
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .cta-card {
        padding: 40px 20px;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .testimonials-slider::before,
    .testimonials-slider::after {
        width: 30px; /* Reduzindo o gradiente branco para não tampar a leitura no celular */
    }
    
    .testimonial-card.premium-card {
        width: 280px; /* Reduzido para caber mais na tela do celular */
        padding: 25px 20px;
        min-height: auto;
    }
    
    .testi-text {
        font-size: 14px;
        color: #4a4a5a; /* Escurecido para ficar mais nítido */
        font-weight: 500;
    }
    
    .quote-icon {
        font-size: 40px;
        transform: translateY(-5px);
    }
}

/* =========================================
   ÁREA DO CLIENTE (LOGIN PAGE)
   ========================================= */
.login-body {
    background-color: var(--bg-white);
    margin: 0;
    overflow: hidden;
    height: 100vh;
}

.login-split-container {
    display: flex;
    height: 100vh;
}

/* Lado da Imagem */
.login-image-side {
    flex: 1.2;
    background-image: image-set(url('./assets/login_bg.avif') type('image/avif'), url('./assets/login_bg.png') type('image/png'));
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 60px;
}

.login-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(17, 17, 17, 0.95) 0%, rgba(17, 17, 17, 0.2) 100%);
    z-index: 1;
}

.login-brand {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 500px;
}

.login-brand .logo-text span {
    color: var(--gold);
}

.login-brand p {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 20px;
}

/* Lado do Formulário */
.login-form-side {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    padding: 40px;
}

.login-form-wrapper {
    width: 100%;
    max-width: 420px;
}

.back-link {
    display: inline-block;
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 40px;
    transition: color 0.3s;
}

.back-link:hover {
    color: var(--gold);
}

.login-title {
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.login-subtitle {
    color: var(--text-gray);
    margin-bottom: 40px;
    line-height: 1.5;
}

.login-form .input-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.login-form label {
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.login-form input[type="email"],
.login-form input[type="password"] {
    padding: 16px;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 8px;
    font-size: 15px;
    background-color: #f8f9fa;
    transition: all 0.3s;
    font-family: var(--font-body);
}

.login-form input:focus {
    outline: none;
    border-color: var(--gold);
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(212,175,55,0.1);
}

.login-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    font-size: 14px;
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-gray);
    cursor: pointer;
}

.forgot-password {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
}

.forgot-password:hover {
    text-decoration: underline;
}

.login-footer {
    margin-top: 30px;
    text-align: center;
    font-size: 14px;
    color: var(--text-gray);
}

.login-footer a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
}

@media (max-width: 992px) {
    .login-split-container {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
        overflow-y: auto;
    }
    .login-image-side {
        padding: 40px 20px;
        min-height: 300px;
    }
    .login-form-side {
        padding: 40px 20px;
    }
}
.hero-images-container {
    position: absolute;
    bottom: 0;
    right: 5%;
    width: 650px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 0px;
    z-index: 10;
}
.hero-images-container img {
    position: relative;
    max-height: 90%;
    width: 50%;
    object-fit: contain;
    object-position: bottom;
    filter: drop-shadow(-10px 10px 20px rgba(0,0,0,0.3));
    animation: float 6s ease-in-out infinite;
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 98%);
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 98%);
}
.hero-images-container img:nth-child(2) {
    animation-delay: 1.5s;
    max-height: 85%;
    margin-left: -60px;
    z-index: 9;
}

.about-images-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: flex-end;
    justify-content: center;
    background-color: var(--light-blue);
    overflow: hidden;
    position: relative;
}
.about-images-wrapper img {
    width: 55%;
    height: auto;
    object-fit: contain;
    object-position: bottom;
    align-self: flex-end;
}
.about-images-wrapper img:nth-child(2) {
    margin-left: -30px;
    width: 50%;
    z-index: 2;
}
