.elementor-6020 .elementor-element.elementor-element-1324359{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}@media(min-width:768px){.elementor-6020 .elementor-element.elementor-element-1324359{--content-width:100%;}}/* Start custom CSS for html, class: .elementor-element-5848a10 *//* --- CONFIGURAÇÕES DE VARIÁVEIS & TEMA DO DESIGN SYSTEM --- */
:root {
    --background: #FEFCF9;
    --foreground: #0B2545;
    --primary: #0B2545;
    --primary-light: #0D2E55;
    --primary-gradient-end: #163a6b;
    --secondary: #F5EDE0;
    --secondary-hover: #EDE5D8;
    --muted-foreground: #5C6E82;
    --accent: #1A3F6F;
    --light-blue: #6BAED6;
    --light-blue-subtle: #A8C8E8;
    --white: #FFFFFF;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--background);
    color: var(--foreground);
}

body {
    min-height: 100vh;
}

/* --- UTILITÁRIOS REUTILIZÁVEIS --- */
.container {
    max-width: 1152px;
    margin: 0 auto;
    padding: 0 24px;
}
.text-center { text-align: center; }
.relative { position: relative; }
.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
}
@media (min-width: 1024px) {
    .grid-2 { grid-template-columns: 1fr 1fr; }
}
.section-eyebrow {
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 16px;
    display: block;
}
.section-title {
    font-family: 'Lora', serif;
    font-size: 1.875rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 24px;
    color: var(--primary);
}
@media (min-width: 768px) {
    .section-title { font-size: 2.25rem; }
}
.serif-italic {
    font-family: 'Lora', serif;
    font-weight: 400;
    font-style: italic;
}
.text-muted {
    color: var(--muted-foreground);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 24px;
}
.max-w-2xl { max-width: 42rem; margin: 0 auto; }
.max-w-3xl { max-width: 48rem; margin: 0 auto; }
.mb-4 { margin-bottom: 1rem; }

/* --- HEADER / NAV STYLING --- */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 50;
    background-color: rgba(11, 37, 69, 0.95);
    backdrop-filter: blur(4px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.header-container {
    max-width: 1152px;
    margin: 0 auto;
    padding: 0 24px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.logo-title {
    font-family: 'Lora', serif;
    color: var(--white);
    font-weight: 600;
    font-size: 1.15rem;
    letter-spacing: 0.02em;
}
.logo-subtitle {
    color: var(--light-blue-subtle);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}
.nav-desktop {
    display: none;
}
.btn-nav {
    display: none;
}
.menu-toggle {
    display: block;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.375rem;
    cursor: pointer;
    padding: 4px;
}

/* Gaveta Responsiva Mobile */
.nav-mobile {
    display: none;
    background-color: var(--primary);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 24px;
    flex-direction: column;
    gap: 16px;
}
.nav-mobile.open { display: flex; }
.mobile-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.2s;
}
.mobile-link:hover { color: var(--white); }
.btn-nav-mobile {
    background-color: #25d366;
    color: white;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 12px;
    border-radius: 9999px;
    text-align: center;
}

/* --- REGRAS DO HEADER EXCLUSIVAS PARA DESKTOP --- */
@media (min-width: 768px) {
    .menu-toggle {
        display: none !important;
    }
    .logo {
        flex: 1;
        justify-content: flex-start;
    }
    .nav-desktop {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 32px;
        flex: 2;
    }
    .nav-desktop a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        font-size: 0.875rem;
        transition: color 0.2s ease;
        white-space: nowrap;
    }
    .nav-desktop a:hover { color: var(--white); }
    
    .btn-nav {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background-color: #25d366;
        color: white;
        text-decoration: none;
        font-size: 0.875rem;
        font-weight: 600;
        padding: 8px 20px;
        border-radius: 9999px;
        transition: background-color 0.2s ease;
        white-space: nowrap;
        flex: 1;
        max-width: max-content;
        margin-left: auto;
    }
    .btn-nav:hover { background-color: var(--secondary); color: var(--primary); }
}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 60%, var(--primary-gradient-end) 100%);
}
.hero-texture {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: radial-gradient(circle at 1px 1px, white 1px, transparent 0);
    background-size: 40px 40px;
}
.circle-decor {
    position: absolute;
    right: 0; top: 50%;
    transform: translateY(-50%) translateX(50%);
    border-radius: 50%;
    display: none;
}
@media (min-width: 1024px) {
    .circle-decor { display: block; }
}
.circle-decor.step1 { width: 600px; height: 600px; border: 1px solid rgba(255, 255, 255, 0.05); }
.circle-decor.step2 { width: 800px; height: 800px; border: 1px solid rgba(255, 255, 255, 0.03); }

.hero-container {
    position: relative;
    max-width: 1152px;
    margin: 0 auto;
    padding: 140px 24px 96px 24px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
    align-items: center;
}
@media (min-width: 1024px) {
    .hero-container { grid-template-columns: 1fr 1fr; }
}

.hero-content h1 {
    font-family: 'Lora', serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 24px;
}
@media (min-width: 768px) { .hero-content h1 { font-size: 2.85rem; } }
.hero-subtitle-text {
    display: block;
    color: var(--light-blue-subtle);
    font-weight: 400;
    font-style: italic;
    font-size: 1.25rem;
    margin-top: 12px;
    line-height: 1.4;
}
@media (min-width: 768px) { .hero-subtitle-text { font-size: 1.5rem; } }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 8px 16px;
    border-radius: 9999px;
    margin-bottom: 32px;
}
.eyebrow-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background-color: var(--light-blue);
}
.hero-checkmarks {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}
.hero-checkmarks li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.4;
}
.hero-checkmarks i {
    color: var(--light-blue);
    margin-top: 2px;
    font-size: 1.1rem;
}
.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #25d366;
    color: white;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 9999px;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}
.btn-cta:hover {
    background-color: var(--secondary);
    color: var(--primary);
    gap: 16px;
}

.hero-image-mobile { display: block; }
.hero-image-desktop { display: none; }
@media (min-width: 1024px) {
    .hero-image-mobile { display: none; }
    .hero-image-desktop { display: block; }
}

.image-card {
    position: relative;
    border-radius: 16px;
    overflow: visible;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    aspect-ratio: 4/5;
    max-width: 320px;
    margin: 0 auto;
}
.image-card img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: top;
    border-radius: 16px;
}
.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 37, 69, 0.5) 0%, transparent 100%);
    border-radius: 16px;
}
.badge-experience {
    position: absolute;
    bottom: 16px; left: 16px; right: 16px;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(4px);
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
}
.badge-circle {
    width: 44px; height: 44px;
    border-radius: 50%;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.badge-circle span { color: var(--white); font-weight: 700; font-size: 0.9rem; }
.badge-title { color: var(--primary); font-family: 'Lora', serif; font-weight: 600; font-size: 0.875rem; }
.badge-subtitle { color: var(--muted-foreground); font-size: 0.75rem; }

.floating-badge {
    position: absolute;
    left: -32px; top: 25%;
    background-color: var(--secondary);
    border-radius: 12px;
    padding: 12px 16px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    z-index: 3;
}
.float-title { color: var(--primary); font-size: 0.75rem; font-weight: 600; }
.float-subtitle { color: var(--muted-foreground); font-size: 0.75rem; }
.hero-bottom-fade {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 96px;
    background: linear-gradient(to top, #FEFCF9, transparent);
}

/* --- DIFFERENTIALS SECTION --- */
.differentials { padding: 96px 0; background-color: #FEFCF9; }
.ultrasound-img-wrapper {
    margin-top: 40px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    aspect-ratio: 16/9;
}
.ultrasound-img-wrapper img { width: 100%; height: 100%; object-fit: cover; }
.list-heading {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}
.differential-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.differential-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background-color: var(--secondary);
    border-radius: 12px;
    transition: background-color 0.2s;
}
.differential-list li:hover { background-color: var(--secondary-hover); }
.check-circle-dark {
    width: 24px; height: 24px;
    border-radius: 50%;
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.check-circle-dark i { color: var(--white); font-size: 0.75rem; }
.differential-list span { color: var(--primary); font-size: 0.875rem; font-weight: 500; line-height: 1.6; }

/* --- CONDITIONS BANNER --- */
.conditions-banner {
    background-color: var(--primary);
    padding: 20px 0;
    overflow: hidden;
    border-top: 1px solid var(--accent);
    border-bottom: 1px solid var(--accent);
    white-space: nowrap;
    display: flex;
}
.scroll-track {
    display: inline-block;
    padding-left: 0;
    animation: scrollEffect 35s linear infinite;
}
.conditions-banner span {
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.35em;
    color: rgba(255, 255, 255, 0.9);
}
@keyframes scrollEffect {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

/* --- TREATMENTS SECTION --- */
.treatments { padding: 96px 0; background-color: #F5EDE0; }
.treatments-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 64px;
}
@media (min-width: 768px) { .treatments-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .treatments-grid { grid-template-columns: repeat(3, 1fr); } }

.treatment-card {
    background-color: var(--white);
    border-radius: 16px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}
.treatment-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}
.card-icon { font-size: 1.875rem; margin-bottom: 12px; }
.card-title {
    font-family: 'Lora', serif;
    color: var(--primary);
    font-weight: 700;
    font-size: 1.15rem;
    line-height: 1.3;
    margin-bottom: 4px;
}
.card-subtitle-treatment {
    font-size: 0.85rem;
    color: var(--muted-foreground);
    margin-bottom: 20px;
    font-style: italic;
}
.card-list {
    list-style: none;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 28px;
    border-top: 1px solid #F5EDE0;
    padding-top: 16px;
}
.card-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--foreground);
    font-size: 0.875rem;
}
.card-list i { color: var(--light-blue); font-size: 0.45rem; flex-shrink: 0; }
.btn-card-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 9999px;
    text-decoration: none;
    text-align: center;
    transition: all 0.2s;
    background-color: #25d366;
}
.btn-card-cta:hover { background-color: var(--primary); color: var(--white); }

/* --- AUTHORITY (SOBRE) SECTION --- */
.authority { padding: 64px 0; background-color: var(--primary); overflow: hidden; }
@media (min-width: 1024px) { .authority { padding: 96px 0; } }
.align-start { align-items: flex-start; }
.aspect-wrapper { 
    position: relative;
    width: 100%; 
    max-width: 340px; 
    margin: 0 auto 48px auto; 
    aspect-ratio: 3/4; 
}
@media (min-width: 1024px) { .aspect-wrapper { max-width: 100%; margin: 0; } }

.outer-image-wrapper {
    position: absolute;
    inset: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.outer-image-wrapper img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.light-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 37, 69, 0.2), transparent);
}
.crm-badge {
    position: absolute;
    right: 16px; bottom: 0;
    transform: translateY(30%); 
    background-color: var(--secondary);
    border-radius: 12px;
    padding: 12px 16px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    z-index: 10;
    white-space: nowrap;
}
@media (min-width: 1024px) { .crm-badge { right: -5%; transform: translateY(50%); padding: 16px 20px; } }
.crm-title { color: var(--primary); font-size: 0.85rem; font-weight: 700; margin-bottom: 2px; }
.crm-subtitle { color: var(--muted-foreground); font-size: 0.75rem; }
.badge-divider { margin-top: 8px; padding-top: 8px; border-top: 1px solid #EDE5D8; }
.crm-extra { color: var(--primary); font-size: 0.75rem; font-weight: 600; }

.about-text-content { margin-top: 16px; text-align: center; }
@media (min-width: 1024px) { .about-text-content { margin-top: 0; text-align: left; } }
.text-light-blue { color: var(--light-blue); }
.about-paragraphs {
    display: flex;
    flex-direction: column;
    gap: 16px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 40px;
}
.stats-grid { display: grid; grid-template-columns: 1fr; gap: 16px; margin-bottom: 40px; }
@media (min-width: 480px) { .stats-grid { grid-template-columns: repeat(3, 1fr); } }
.stat-box { background-color: rgba(255, 255, 255, 0.1); border-radius: 12px; padding: 16px; text-align: center; }
.stat-val { font-family: 'Lora', serif; color: var(--white); font-size: 1.4rem; font-weight: 700; margin-bottom: 4px; }
.stat-label { color: rgba(255, 255, 255, 0.5); font-size: 0.75rem; line-height: 1.3; }
.color-blue { color: var(--primary) !important; }

/* --- HOW IT WORKS --- */
.how-it-works { padding: 96px 0; background-color: #FEFCF9; }
.steps-grid { display: grid; grid-template-columns: 1fr; gap: 32px; margin-top: 2rem; }
@media (min-width: 768px) { .steps-grid { grid-template-columns: 1fr 1fr; } }
.step-card { display: flex; gap: 24px; padding: 32px; border-radius: 16px; }
.step-card.light { background-color: var(--secondary); }
.step-card.dark { background-color: var(--primary); }
.step-num { font-family: 'Lora', serif; font-size: 3rem; font-weight: 700; line-height: 1; flex-shrink: 0; }
.step-card.light .step-num { color: rgba(11, 37, 69, 0.15); }
.step-card.dark .step-num { color: rgba(255, 255, 255, 0.15); }
.step-title { font-family: 'Lora', serif; font-size: 1.125rem; font-weight: 700; margin-bottom: 12px; }
.step-card.light .step-title { color: var(--primary); }
.step-card.dark .step-title { color: var(--white); }
.step-body { font-size: 0.875rem; line-height: 1.6; }
.step-card.light .step-body { color: var(--muted-foreground); }
.step-card.dark .step-body { color: rgba(255, 255, 255, 0.7); }

/* --- FINAL CTA --- */
.final-cta { padding: 96px 0; background-color: #F5EDE0; }
.blue-italic { color: var(--accent); }
.text-lg { font-size: 1.125rem; }
.final-cta p { margin-bottom: 40px; }
.bg-blue { background-color: #25d366; }
.large-cta { padding: 20px 40px; }
.large-cta:hover { background-color: var(--accent); color: var(--white); }
.text-white { color: white; }

/* --- FOOTER --- */
.footer { background-color: var(--primary); padding: 56px 0 40px 0; border-top: 1px solid rgba(255, 255, 255, 0.1); }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; margin-bottom: 40px; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.2fr 1.3fr 1fr; } }
.footer-brand { font-family: 'Lora', serif; color: var(--white); font-weight: 600; font-size: 1.25rem; margin-bottom: 4px; }
.footer-text-sm { color: rgba(255, 255, 255, 0.8); font-size: 0.8rem; margin-bottom: 16px; }
.footer-crm { display: flex; gap: 8px; color: var(--light-blue-subtle); font-size: 0.75rem; font-weight: 500; }
.footer-heading { color: var(--white); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 20px; }
.flex-start-gap { display: flex; align-items: flex-start; gap: 12px; }
.footer-address { color: rgba(255, 255, 255, 0.75); font-size: 0.875rem; line-height: 1.6; }
.footer-contact-link { display: flex; align-items: center; gap: 12px; color: var(--white); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.footer-contact-link:hover { color: rgba(255, 255, 255, 0.8); }
.btn-footer-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    background-color: #25d366;
    color: var(--white);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 12px 20px;
    border-radius: 9999px;
    transition: background-color 0.2s;
}
.btn-footer-wa:hover { background-color: rgba(255, 255, 255, 0.2); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 24px; display: flex; flex-direction: column; align-items: center; justify-content: space-between; gap: 16px; }
@media (min-width: 768px) { .footer-bottom { flex-direction: row; } }
.footer-bottom p { color: rgba(255, 255, 255, 0.5); font-size: 0.75rem; }

/* --- TESTIMONIALS SECTION STYLING --- */
.testimonials-section {
    padding: 96px 0;
    background-color: #FEFCF9; /* Mantém o fundo sutil do tema */
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 48px;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Base do quadrado de depoimento */
.testimonial-card-box {
    background-color: var(--white);
    border: 1px solid rgba(11, 37, 69, 0.06);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 20px rgba(11, 37, 69, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 1 / 1; /* Força os blocos a manterem o formato perfeitamente quadrado no desktop */
    min-height: 320px; /* Garante tamanho mínimo confortável em telas mobile */
}

.testimonial-card-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(11, 37, 69, 0.06);
}

/* O quinto depoimento se ajusta no layout de colunas do desktop */
@media (min-width: 768px) and (max-width: 1023px) {
    .testimonial-span-special {
        grid-column: span 2;
        aspect-ratio: auto;
    }
}

@media (min-width: 1024px) {
    .testimonial-span-special {
        grid-column: span 2;
        aspect-ratio: auto; /* Deixa fluir melhor por ser mais extenso textualmente */
    }
}

/* Estrelas douradas */
.testimonial-stars {
    color: #FFB547; /* Tom elegante de dourado/âmbar */
    font-size: 0.9rem;
    margin-bottom: 16px;
    display: flex;
    gap: 4px;
}

/* Texto do depoimento */
.testimonial-text {
    font-size: 0.925rem;
    line-height: 1.6;
    color: var(--foreground);
    font-style: italic;
    flex: 1;
    overflow-y: auto; /* Se o texto for muito grande para o quadrado em resoluções específicas, cria scroll interno sutil */
    padding-right: 4px;
}

/* Barra de rolagem discreta para o texto se necessário */
.testimonial-text::-webkit-scrollbar {
    width: 4px;
}
.testimonial-text::-webkit-scrollbar-thumb {
    background-color: rgba(11, 37, 69, 0.1);
    border-radius: 4px;
}

/* Autor e rodapé do card */
.testimonial-author {
    margin-top: 24px;
    border-top: 1px solid rgba(11, 37, 69, 0.06);
    padding-top: 16px;
}

.author-name {
    font-family: 'Lora', serif;
    font-weight: 700;
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 2px;
}

.author-label {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

/* Auxiliar de margem */
.mb-16 {
    margin-bottom: 4rem;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-aeaa9e1 *//* garante que não vai surgir barra horizontal */
html, body { overflow-x: hidden; }

.btn-whatsapp{
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;

  background-color: rgb(37, 211, 102);
  width: 60px;
  height: 60px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;
  font-size: 28px;
  text-decoration: none;
}

.btn-whatsapp:before,
.btn-whatsapp:after{
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1px solid #25d366;
  inset: -20px;              /* no lugar de left/right/top/bottom */
  animation: animate 1.5s linear infinite;
  opacity: 0;
  pointer-events: none;
}

.pulsaDelay:after{ animation-delay: 0.5s; }

@keyframes animate{
  0%{ transform: scale(0.5); opacity: 0; }
  50%{ opacity: 1; }
  100%{ transform: scale(1.2); opacity: 0; }
}/* End custom CSS */