/* ============================================ */
/* RESET E CONFIGURAÇÕES GLOBAIS               */
/* ============================================ */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Montserrat', sans-serif;
    background: #ffffff;
    color: #1d1d1d;
    line-height: 1.5;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 { font-family: 'Cormorant Garamond', serif; font-weight: 500; }

/* ============================================ */
/* SCROLLBAR                                    */
/* ============================================ */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #d3ebf1; }
::-webkit-scrollbar-thumb { background: #4bacd9; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #3a9bc7; }

/* ============================================ */
/* NAVBAR                                       */
/* ============================================ */
.navbar {
    background-color: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    padding: 12px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}
.navbar.scrolled { padding: 8px 0; box-shadow: 0 5px 30px rgba(0,0,0,0.12); }

.navbar-brand img { height: 40px; }

.nav-link {
    font-family: 'Poppins', sans-serif;
    font-size: 13px; font-weight: 500;
    color: #333333 !important;
    margin: 0 12px;
    text-transform: uppercase; letter-spacing: 1px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-link::after {
    content: ''; position: absolute; bottom: -2px; left: 0;
    width: 0; height: 2px; background: #4bacd9;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-link:hover::after { width: 100%; }
.nav-link:hover { color: #4bacd9 !important; }

.navbar-toggler { border: none; padding: 0; }
.navbar-toggler:focus { box-shadow: none; outline: none; }

/* ============================================ */
/* ÍCONE HAMBURGUER                             */
/* ============================================ */
.hamburger-icon { width: 28px; height: 18px; position: relative; cursor: pointer; }
.hamburger-icon span {
    display: block; position: absolute;
    height: 2px; width: 100%;
    background: #4bacd9; border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.hamburger-icon span:nth-child(1) { top: 0; }
.hamburger-icon span:nth-child(2) { top: 8px; }
.hamburger-icon span:nth-child(3) { top: 16px; }

/* ============================================ */
/* MENU MOBILE OVERLAY                          */
/* ============================================ */
.mobile-menu-overlay {
    position: fixed; top: 0; right: -100%;
    width: 100%; height: 100vh;
    background: #4bacd9; z-index: 9999;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}
.mobile-menu-overlay.active { right: 0; opacity: 1; }
.mobile-menu-content { text-align: center; color: white; }
.mobile-menu-content a {
    display: block; color: white;
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px; font-weight: 300;
    text-decoration: none; margin: 18px 0; letter-spacing: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu-content a:hover { opacity: 0.8; transform: scale(1.05); }

.mobile-whatsapp-btn {
    display: inline-block; background: white;
    color: #333333 !important;
    font-family: 'Poppins', sans-serif !important;
    font-size: 15px !important; font-weight: 500 !important;
    padding: 10px 28px !important; border-radius: 50px;
    margin-top: 25px !important;
    text-transform: uppercase; letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-whatsapp-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(0,0,0,0.2); }

.close-menu-btn {
    position: absolute; top: 20px; right: 20px;
    font-size: 36px; color: white;
    background: none; border: none; cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.close-menu-btn:hover { transform: rotate(90deg); }

/* ============================================ */
/* BOTÃO PADRÃO                                 */
/* ============================================ */
.btn-primary-custom {
    background: #4bacd9; color: white;
    padding: 9px 22px; border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 12px; font-weight: 600;
    text-transform: uppercase; letter-spacing: 1px;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none; display: inline-block;
    position: relative; overflow: hidden;
}
.btn-primary-custom:hover {
    background: #3a9bc7; transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(75, 172, 217, 0.4); color: white;
}
.btn-primary-custom::before {
    content: ''; position: absolute; top: 50%; left: 50%;
    width: 0; height: 0; border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}
.btn-primary-custom:hover::before { width: 300px; height: 300px; }

/* ============================================ */
/* BOTÃO DO MENU - SÓ DESKTOP                   */
/* ============================================ */
.heromenucelular-btn {
    background: #4bacd9; color: #fff;
    padding: 8px 10px; border-radius: 8px;
    display: inline-flex; align-items: center; gap: 8px;
    text-decoration: none; font-weight: 600; font-size: 11px;
    transition: 0.3s; text-transform: uppercase; letter-spacing: 0.5px;
    width: fit-content;
}
.heromenucelular-btn:hover { background: #3297c5; color: #fff; transform: translateY(-2px); }

/* ============================================ */
/* HERO SECTION                                 */
/* ============================================ */
.hero-section { padding: 0; background-color: #fff; overflow: hidden; }
.hero-row { display: flex; align-items: stretch; min-height: 600px; }
.hero-text-col {
    flex: 0 0 50%; max-width: 50%;
    padding: 40px 80px;
    display: flex; flex-direction: column; justify-content: center;
}
.hero-image-col { flex: 0 0 50%; max-width: 50%; margin: 0; padding: 0; }
.hero-image-col img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center top;
    display: block; margin: 0; padding: 0;
}

.hero-mini-title, .mini-title {
    color: #4bacd9; font-weight: 800; font-size: 12px;
    letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px; margin-top: 40px;
}
.hero-title {
    font-size: 50px; line-height: 1.15; font-weight: 600;
    margin: 0 0 12px 0; color: #000000;
}
.hero-subtitle {
    font-size: 19px; line-height: 1.4; font-weight: 600;
    color: #333333; margin-bottom: 12px;
}
.hero-text { font-size: 14px; line-height: 1.6; color: #5c5c5c; margin-bottom: 20px; }

.hero-icons { display: flex; gap: 12px; margin: 20px 0; flex-wrap: wrap; }
.hero-icon-item { width: 100px; text-align: center; }
.hero-icon-item i { color: #4bacd9; font-size: 24px; }
.hero-icon-item span { display: block; margin-top: 5px; font-size: 11px; color: #555; }

.hero-btn {
    background: #4bacd9; color: #fff;
    padding: 10px 22px; border-radius: 8px;
    display: inline-flex; align-items: center; gap: 8px;
    text-decoration: none; font-weight: 600; font-size: 12px;
    transition: 0.3s; text-transform: uppercase; letter-spacing: 0.5px;
    width: fit-content;
}
.hero-btn:hover { background: #3297c5; color: #fff; transform: translateY(-2px); }

/* Badge na hero */
.hero-badge {
    position: absolute; bottom: 30px; left: 70px;
    background-color: #FFF; color: #000000;
    padding: 15px 20px; border-radius: 12px;
    font-size: 13px; font-weight: 500;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    max-width: 300px;
    line-height: 1.4;
    z-index: 2;
}
.hero-badge i { color: #f1c607; margin-right: 8px; }

/* ============================================ */
/* SEÇÃO "CANSADO DE"                           */
/* ============================================ */
.cansado-section { padding: 70px 0; background: #d3ebf1; }
.cansado-title, .section-title {
    text-align: center; font-size: 35px; margin-bottom: 15px;
    font-weight: 700; color: #000000;
}
.cansado-subtitle {
    text-align: center; font-size: 16px; color: #5c5c5c;
    margin-bottom: 35px; font-weight: 400;
}
.cansado-card {
    position: relative; border-radius: 16px; overflow: hidden;
    margin-bottom: 25px; transition: all 0.3s ease;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    cursor: pointer; height: 220px;
}
.cansado-card:hover { transform: translateY(-5px); box-shadow: 0 15px 35px rgba(75, 172, 217, 0.25); }
.cansado-card-img {
    width: 100%; height: 100%; object-fit: cover;
    display: block; transition: all 0.4s ease;
}
.cansado-card:hover .cansado-card-img { transform: scale(1.05); filter: brightness(0.35); }
.cansado-card::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 100%; height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
    z-index: 1;
}
.cansado-card-overlay {
    position: absolute; bottom: 0; left: 0;
    width: 100%; padding: 20px 18px; z-index: 2; text-align: center;
}
.cansado-card-overlay p {
    font-size: 17px; color: #ffffff; margin: 0;
    font-weight: 600; text-shadow: 0 1px 10px rgba(0, 0, 0, 0.863);
    letter-spacing: 0.3px;
}

.outline-btn {
    border: 2px solid #4bacd9; color: #4bacd9;
    padding: 10px 24px; border-radius: 8px;
    text-decoration: none; display: inline-flex; align-items: center; gap: 8px;
    margin-top: 10px; font-weight: 600; font-size: 12px; transition: all 0.3s ease;
}
.outline-btn:hover { background: #4bacd9; color: #fff; }

/* ============================================ */
/* SEÇÃO ATENDIMENTO - LAYOUT VERTICAL          */
/* ============================================ */
.atendimento-section { padding: 70px 0; background: #ffffff; }
.atendimento-section-title {
    text-align: center; font-size: 32px; margin-bottom: 10px;
    font-weight: 700; color: #000000;
}
.atendimento-section-subtitle {
    text-align: center; font-size: 15px; color: #5c5c5c; margin-bottom: 40px;
}

.atendimento-card-vertical {
    background: #f8fbfd;
    border-radius: 18px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.349);
    transition: all 0.3s ease;
    border: 1px solid #ececec;
    display: flex;
    flex-direction: column;
}
.atendimento-card-vertical:hover {
    box-shadow: 0 15px 40px rgba(75, 172, 217, 0.15);
    transform: translateY(-5px);
}

.atendimento-card-img {
    width: 100%;
    height: 300px;
    overflow: hidden;
}
.atendimento-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.4s ease;
}
.atendimento-card-vertical:hover .atendimento-card-img img {
    transform: scale(1.05);
}

.atendimento-card-body {
    padding: 30px 35px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.atendimento-card-body h3 {
    font-size: 24px;
    color: #000000;
    margin-bottom: 10px;
    font-weight: 600;
}
.atendimento-card-body > p {
    font-size: 14px;
    color: #5c5c5c;
    line-height: 1.6;
    margin-bottom: 15px;
}

.atendimento-info {
    margin: 10px 0 20px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}
.atendimento-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
}
.atendimento-icon-circle {
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: #4bacd9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.atendimento-icon-circle i { color: #ffffff; font-size: 14px; }
.atendimento-info-text { font-size: 13px; color: #555; line-height: 1.4; }

.atendimento-card-body .hero-btn {
    font-size: 11px;
    padding: 10px 20px;
    margin-top: auto;
}

/* ============================================ */
/* SEÇÃO AGENDAMENTO                            */
/* ============================================ */
.agendamento-section { padding: 70px 0; background: #d3ebf1; }
.section-subtitle { text-align: center; font-size: 15px; color: #5c5c5c; margin-bottom: 35px; }
.step-card {
    text-align: center; padding: 28px 18px;
    background: #ffffff; border-radius: 14px;
    margin-bottom: 20px; transition: all 0.3s ease;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05);
    position: relative;
}
.step-card:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(75, 172, 217, 0.15); }
.step-number {
    width: 40px; height: 40px; background: #4bacd9; color: #fff;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    margin: auto auto 12px; font-weight: 700; font-size: 16px;
}
.step-card h4 { font-size: 18px; margin-bottom: 8px; color: #000000; }
.step-card p { font-size: 12px; color: #666; }

.step-connector { display: none; position: absolute; top: 30px; right: -10px; font-size: 40px; color: #4bacd9; }
@media (min-width: 992px) { .step-connector { display: block; } }

.agendamento-cta { text-align: center; margin-top: 10px; }

/* ============================================ */
/* SEÇÃO SOBRE MIM                              */
/* ============================================ */
.sobre-section { padding: 70px 0; background: #ffffff; }
.sobre-img { border-radius: 20px; }
.sobre-title { font-size: 40px; margin: 10px 0 8px; color: #000000; }
.sobre-subtitle { font-size: 20px; margin-bottom: 20px; color: #4bacd9; }
.sobre-section p { line-height: 1.7; color: #555; font-size: 14px; margin-bottom: 10px; }
.sobre-list { margin: 20px 0; }
.sobre-list div { margin-bottom: 10px; font-weight: 500; font-size: 13px; color: #333333; }
.sobre-list i { color: #4bacd9; margin-right: 8px; }

/* ============================================ */
/* SEÇÃO BENEFÍCIOS                             */
/* ============================================ */
.transformar-section { padding: 70px 0; background: #d3ebf1; }
.transformar-left h2 { font-size: 36px; line-height: 1.25; margin-top: 20px; color: #000000; }
.transformar-img { width: 100px; }
.benefit-item {
    margin-bottom: 25px; background: #ffffff; padding: 25px;
    border-radius: 12px; transition: all 0.3s ease;
    box-shadow: 0 3px 15px rgba(0,0,0,0.05); height: calc(100% - 25px);
}
.benefit-item:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(75, 172, 217, 0.15); }
.benefit-header { display: flex; align-items: center; gap: 14px; margin-bottom: 10px; }
.benefit-icon-circle {
    width: 42px; height: 42px; min-width: 42px;
    background: #4bacd9; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.benefit-icon-circle i { color: #ffffff; font-size: 18px; }
.benefit-item h4 { color: #333; margin: 0; font-size: 20px; line-height: 1.2; font-weight: 800; }
.benefit-item p { font-size: 13px; color: #666; margin: 0; padding-left: 56px; }

.beneficios-cta { text-align: center; margin-top: 30px; }

/* ============================================ */
/* SEÇÃO DEPOIMENTOS (SLIDER COM SETAS)        */
/* ============================================ */
.testimonials-section { padding: 70px 0; background: #ffffff; overflow: hidden; }

.testimonials-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonials-slider { position: relative; width: 100%; overflow: hidden; padding: 20px 0; }
.testimonials-track { display: flex; gap: 24px; transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1); }

.testimonial-slide {
    flex: 0 0 calc(33.333% - 16px);
    min-width: calc(33.333% - 16px);
    background: #edf9fc; 
    border-radius: 18px; 
    padding: 30px;
    position: relative; 
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(0.9);
}

.testimonial-slide.center-slide {
    transform: scale(1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.041);
    background: #d3ebf1;
}

.testimonial-slide:hover { box-shadow: 0 20px 50px rgba(0,0,0,0.1); }

.testimonial-quote-icon {
    font-size: 45px; 
    color: #4bacd9; 
    opacity: 0.12;
    position: absolute; 
    top: 12px; 
    right: 22px;
    font-family: 'Cormorant Garamond', serif;
}

.testimonial-text {
    font-size: 14px; 
    color: #333333; 
    font-style: italic;
    margin-bottom: 12px; 
    position: relative; 
    z-index: 1;
}

.testimonial-author { font-size: 13px; color: #333; font-weight: 800; }

.testimonial-nav {
    background: #4bacd9;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    flex-shrink: 0;
    z-index: 10;
}

.testimonial-nav:hover { background: #3a96c0; transform: scale(1.05); }
.testimonial-nav:active { transform: scale(0.95); }

.testimonials-buttons-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.herogoogle-btn {
    background: #4bacd9; 
    color: #fff;
    padding: 10px 22px; 
    border-radius: 8px;
    display: inline-flex; 
    align-items: center; 
    gap: 8px;
    text-decoration: none; 
    font-weight: 600; 
    font-size: 12px;
    transition: 0.3s; 
    text-transform: uppercase; 
    letter-spacing: 0.5px;
    width: fit-content;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.herogoogle-btn:hover { 
    background: #3297c5; 
    color: #fff; 
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(50, 151, 197, 0.3);
}

.google-gentle-invite {
    font-size: 13px;
    color: #333;
    margin-top: 15px;
    margin-bottom: 0;
    font-style: italic;
}

/* ============================================ */
/* SEÇÃO FAQ                                    */
/* ============================================ */
.faq-section { padding: 70px 0; background: #d3ebf1; }
.accordion-button {
    font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 500;
    color: #000000; background: white;
    border: 1px solid #e0e0e0; border-radius: 10px !important;
    padding: 14px 22px; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.accordion-button:not(.collapsed) {
    background: #4bacd9; color: white; border-color: #4bacd9; box-shadow: none;
}
.accordion-button:focus { box-shadow: none; border-color: #4bacd9; }
.accordion-body {
    font-size: 13px; color: #333333; padding: 18px 22px;
    background: white; border-radius: 0 0 10px 10px;
}
.accordion-item { margin-bottom: 10px; border: none; border-radius: 10px !important; overflow: hidden; }

/* ============================================ */
/* SEÇÃO CTA FINAL                              */
/* ============================================ */
.cta-section {
    padding: 60px 0; background-color: #fff;
    color: white; text-align: center;
    position: relative; overflow: hidden;
}
.cta-content { position: relative; z-index: 1; }
.cta-title { font-size: 34px; font-weight: 500; margin-bottom: 12px; color: #333; }
.cta-text { font-size: 16px; margin-bottom: 25px; color: #333; }

/* ============================================ */
/* FOOTER                                       */
/* ============================================ */
.footer { background: #d3ebf1; color: #333; padding: 45px 0 18px; }
.footer-logo img { height: 50px; margin-bottom: 12px; }
.footer-description { font-size: 12px; color: #000000; margin-bottom: 20px; }
.footer h5 {
    font-family: 'Poppins', sans-serif; font-size: 14px; font-weight: 600;
    color: #4bacd9; margin-bottom: 15px; text-transform: uppercase; letter-spacing: 1px;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 8px; }
.footer-links a {
    color: #333; text-decoration: none; font-size: 13px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer-links a:hover { color: #000000; padding-left: 5px; font-weight: 600; }
.footer-contact i { color: #4bacd9; margin-right: 8px; font-size: 14px; }
.footer-contact p { font-size: 12px; color: #333; }
.social-links { display: flex; gap: 10px; margin-top: 12px; }
.social-link {
    width: 34px; height: 34px; border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex; align-items: center; justify-content: center;
    color: #333; text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); font-size: 15px;
}
.social-link:hover { background: #fff; transform: translateY(-2px); color: #4bacd9; }
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 30px; padding-top: 15px; text-align: center;
}
.footer-bottom p { font-size: 11px; color: #333; margin: 0; }

/* ============================================ */
/* BOTÃO FLUTUANTE WHATSAPP                     */
/* ============================================ */
.whatsapp-float {
    position: fixed; bottom: 25px; right: 25px;
    width: 65px; height: 65px;
    background: #25D366; color: white;
    border-radius: 50%; display: flex;
    align-items: center; justify-content: center;
    font-size: 34px; z-index: 9999;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    animation: pulse 2s infinite;
}
.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.05); color: white;
    box-shadow: 0 10px 35px rgba(37, 211, 102, 0.5);
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 0 0 25px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-bubble {
    position: fixed; bottom: 100px; right: 25px;
    background: #ffffff; color: #333;
    padding: 15px 20px; border-radius: 20px 20px 5px 20px;
    font-size: 14px; font-weight: 500;
    max-width: 240px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.15);
    z-index: 9998;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease;
    pointer-events: none;
    line-height: 1.4;
}
.whatsapp-bubble.show { opacity: 1; transform: translateY(0); }
.whatsapp-bubble::after {
    content: '';
    position: absolute; bottom: -8px; right: 25px;
    width: 0; height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #ffffff;
}
.whatsapp-bubble-close {
    position: absolute; top: 5px; right: 10px;
    background: none; border: none;
    font-size: 16px; color: #999; cursor: pointer;
    pointer-events: all;
}

/* ============================================ */
/* ANIMAÇÃO DE SCROLL                           */
/* ============================================ */
.scroll-animate { opacity: 0; transform: translateY(30px); transition: all 0.8s ease; }
.scroll-animate.animated { opacity: 1; transform: translateY(0); }

/* ============================================ */
/* RESPONSIVO - TABLET (991px)                  */
/* ============================================ */
@media (max-width: 991px) {
    .navbar .heromenucelular-btn { display: none !important; }
    .hero-row { flex-direction: column; min-height: auto; }
    .hero-text-col, .hero-image-col { flex: 0 0 100%; max-width: 100%; }
    .hero-text-col { padding: 40px 30px; }
    .hero-image-col img { height: 400px; }
    .hero-title { font-size: 36px; }
    .hero-section, .sobre-section, .transformar-section, .agendamento-section, .atendimento-section { padding: 50px 0; }
    .sobre-title { font-size: 32px; }
    .transformar-left h2 { font-size: 28px; }
    .hero-badge { position: relative; bottom: auto; left: auto; margin-top: 20px; max-width: 100%; }
    .step-connector { display: none; }
    .sobre-img { max-width: 350px; margin: 0 auto 30px; display: block; }
}

/* ============================================ */
/* RESPONSIVO - MOBILE (768px)                  */
/* ============================================ */
@media (max-width: 768px) {
    .section-title, .cansado-title, .atendimento-section-title { font-size: 30px; font-weight: 800; margin-bottom: 10px; }
    .sobre-title { font-size: 32px; font-weight: 700; }
    .transformar-left h2 { font-size: 28px; font-weight: 700; }
    .cta-title { font-size: 30px; font-weight: 700; }
    .cansado-subtitle, .section-subtitle, .atendimento-section-subtitle { font-size: 16px; margin-bottom: 25px; }
    .hero-text { font-size: 16px; }
    .sobre-section p { font-size: 16px; }
    .benefit-item p { font-size: 15px; }
    .testimonial-text { font-size: 15px; }
    .cta-text { font-size: 16px; }
    .step-card p { font-size: 14px; }
    .atendimento-info-text { font-size: 14px; }
    .footer-description { font-size: 13px; }
    .footer-contact p { font-size: 13px; }
    .footer-links a { font-size: 14px; }
    
    .hero-btn, .herogoogle-btn, .btn-primary-custom, .outline-btn, .heromenucelular-btn {
        font-size: 10px !important;
        padding: 8px 16px !important;
    }
    .hero-btn i, .herogoogle-btn i, .btn-primary-custom i, .outline-btn i { font-size: 12px !important; }
    .whatsapp-float { font-size: 28px !important; padding: 0 !important; }
    .heromenucelular-btn { font-size: 11px !important; padding: 8px 15px !important; }
    
    .navbar-collapse {
        background: white; padding: 20px; border-radius: 10px;
        margin-top: 10px; box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    .nav-link { margin: 10px 0; }
    .testimonial-slide { flex: 0 0 280px; padding: 22px; }
    .hero-title { font-size: 34px; font-weight: 700; }
    .hero-image-col img { height: 350px; }
    .hero-text-col { padding: 30px 20px; }
    .benefit-icon-circle { width: 36px; height: 36px; min-width: 36px; }
    .benefit-icon-circle i { font-size: 15px; }
    .benefit-item h4 { font-size: 19px; }
    .benefit-item p { padding-left: 50px; }
    .cansado-card { height: 200px; }
    .cansado-card-overlay p { font-size: 16px; }
    .atendimento-icon-circle { width: 34px; height: 34px; min-width: 34px; }
    .atendimento-icon-circle i { font-size: 14px; }
    .whatsapp-float { width: 62px; height: 62px; font-size: 30px; bottom: 20px; right: 20px; }
    .whatsapp-bubble { bottom: 95px; right: 20px; }
    .sobre-img { max-width: 300px; margin: 0 auto 30px; display: block; }
    .step-card h4 { font-size: 17px; }
    .sobre-section .col-lg-7 { padding-left: 20px; padding-right: 20px; }
    .footer .container { padding-left: 20px; padding-right: 20px; }
}

/* ============================================ */
/* RESPONSIVO - MOBILE PEQUENO (576px)          */
/* ============================================ */
@media (max-width: 576px) {
    .section-title, .cansado-title, .atendimento-section-title { font-size: 26px; font-weight: 800; }
    .sobre-title { font-size: 28px; font-weight: 700; }
    .cansado-subtitle, .section-subtitle, .atendimento-section-subtitle { font-size: 15px; }
    .hero-btn, .herogoogle-btn, .btn-primary-custom, .outline-btn, .heromenucelular-btn {
        font-size: 11px !important;
        padding: 8px 20px !important;
    }
    .hero-btn i, .herogoogle-btn i, .btn-primary-custom i, .outline-btn i { font-size: 11px !important; }
    .btn-primary-custom { padding: 8px 20px; font-size: 11px; }
    .cta-title { font-size: 26px; font-weight: 700; }
    .hero-title { font-size: 30px; font-weight: 700; }
    .hero-subtitle { font-size: 17px; }
    .hero-text { font-size: 15px; }
    .transformar-left h2 { font-size: 26px; font-weight: 700; }
    .testimonial-slide { flex: 0 0 260px; padding: 18px; }
    .hero-image-col img { height: 300px; }
    .cansado-card { height: 180px; }
    .cansado-card-overlay p { font-size: 15px; }
    .benefit-item { padding: 20px; }
    .benefit-header { gap: 10px; }
    .benefit-item p { padding-left: 46px; font-size: 14px; }
    .benefit-item h4 { font-size: 18px; }
    .sobre-img { max-width: 250px; }
    .hero-badge { font-size: 12px; padding: 12px 15px; }
    .step-card h4 { font-size: 17px; font-weight: 700; }
    .step-card p { font-size: 14px; }
    .whatsapp-float { width: 58px; height: 58px; font-size: 28px; }
}

@media (max-width: 1024px) {
    .testimonial-slide { flex: 0 0 calc(50% - 12px); min-width: calc(50% - 12px); }
}

@media (max-width: 768px) {
    .testimonial-nav { width: 40px; height: 40px; }
    .testimonial-slide { flex: 0 0 calc(100% - 0px); min-width: calc(100% - 0px); }
    .testimonials-wrapper { gap: 10px; }
    .testimonials-buttons-row { flex-direction: column; align-items: center; gap: 15px; }
    .hero-btn { width: 100%; max-width: 280px; padding: 12px 24px; font-size: 12px; }
    .section-subtitle { font-size: 16px; color: #666; max-width: 700px; margin: 0 auto; line-height: 1.6; }
}