/* ============================================
   VARIÁVEIS DE CONFIGURAÇÃO
   ============================================ */
:root {
    --verde-principal: #00A859;
    --verde-escuro: #007A3D;
    --verde-claro: #E8F5EE;
    --azul-complementar: #0D6EFF;
    --fundo-claro: #F8FAF9;
    --texto-escuro: #1A2B3C;
    --texto-medio: #4A5A6A;
    --branco: #FFFFFF;
    --amarelo-destaque: #FFB800;
    --sombra-suave: 0 8px 30px rgba(0, 0, 0, 0.08);
    --sombra-media: 0 12px 40px rgba(0, 0, 0, 0.12);
    --borda-radius: 16px;
    --borda-radius-sm: 10px;
    --transicao: all 0.3s ease;
}

/* ============================================
   ESTILOS GLOBAIS
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--texto-escuro);
    background-color: var(--fundo-claro);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
}

.section-padding {
    padding: 80px 0;
}

.section-tag {
    display: inline-block;
    background: var(--verde-claro);
    color: var(--verde-escuro);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 16px;
    color: var(--texto-escuro);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--texto-medio);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   BOTÕES
   ============================================ */
.btn-assinar {
    background: linear-gradient(135deg, #00C86F 0%, #00A859 50%, #007A3D 100%);
    color: var(--branco);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 16px 32px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transicao);
    text-decoration: none;
    display: inline-block;
    text-align: center;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(0, 168, 89, 0.35);
    position: relative;
    overflow: hidden;
}

.btn-assinar:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 168, 89, 0.45);
    color: var(--branco);
    background: linear-gradient(135deg, #00B464 0%, #00954E 50%, #006633 100%);
}

.btn-assinar:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 168, 89, 0.35);
}

.btn-assinar .btn-icon {
    margin-right: 8px;
}

.btn-assinar.btn-lg {
    font-size: 1.25rem;
    padding: 18px 40px;
}

/* ============================================
   ANIMAÇÕES DE ENTRADA
   ============================================ */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.fade-in {
    opacity: 0;
    transition: opacity 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar-lsb {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    transition: var(--transicao);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar-lsb.scrolled {
    padding: 6px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar-lsb .navbar-brand {
    font-weight: 800;
    color: var(--verde-escuro);
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar-lsb .navbar-brand img {
    height: 80px;        /* Ajuste conforme necessário */
    width: auto;
    max-height: none;     /* Remove limite anterior */
}

.navbar-lsb .nav-link {
    font-weight: 500;
    color: var(--texto-escuro);
    margin: 0 10px;
    transition: var(--transicao);
}

.navbar-lsb .nav-link:hover {
    color: var(--verde-principal);
}

.navbar-lsb .btn-assinar {
    padding: 10px 24px;
    font-size: 0.9rem;
}

/* ============================================
   MENU HAMBÚRGUER ANIMADO (X)
   ============================================ */
.navbar-toggler {
    border: none;
    padding: 8px;
    cursor: pointer;
    width: 34px;
    height: 28px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    box-shadow: none !important;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Oculta o ícone padrão do Bootstrap */
.navbar-toggler .navbar-toggler-icon {
    display: none;
}

/* Cria as três linhas customizadas */
.navbar-toggler::before,
.navbar-toggler::after,
.navbar-toggler .custom-line {
    height: 3px;  /* atual */
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--texto-escuro);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.navbar-toggler::before {
    top: 0;
}

.navbar-toggler::after {
    bottom: 0;
}

.navbar-toggler .custom-line {
    top: 50%;
    transform: translateY(-50%);
}

/* Estado aberto (menu expandido) – transforma em X */
.navbar-toggler:not(.collapsed)::before {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.navbar-toggler:not(.collapsed)::after {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

.navbar-toggler:not(.collapsed) .custom-line {
    opacity: 0;
    transform: scaleX(0);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    background: linear-gradient(135deg, #F0F9F4 0%, #E8F5EE 30%, #FFFFFF 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 168, 89, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(13, 110, 255, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--branco);
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--verde-escuro);
    box-shadow: var(--sombra-suave);
    margin-bottom: 20px;
}

.hero-badge i {
    color: var(--verde-principal);
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--texto-escuro);
    line-height: 1.2;
}

.hero-title .highlight {
    color: var(--verde-principal);
    position: relative;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--texto-medio);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-price-box {
    background: var(--branco);
    border-radius: var(--borda-radius);
    padding: 20px 24px;
    box-shadow: var(--sombra-suave);
    margin-bottom: 25px;
    display: inline-block;
}

.hero-price-old {
    font-size: 1rem;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 4px;
}

.hero-price-new {
    font-size: 2rem;
    font-weight: 800;
    color: var(--verde-escuro);
}

.hero-price-new span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--texto-medio);
}

.hero-image-wrapper {
    position: relative;
    text-align: center;
}

.hero-image-wrapper img {
    max-width: 100%;
    border-radius: var(--borda-radius);
    box-shadow: var(--sombra-media);
    transition: var(--transicao);
}

.hero-image-wrapper img:hover {
    transform: scale(1.02);
}

.hero-floating-card {
    position: absolute;
    background: var(--branco);
    border-radius: var(--borda-radius-sm);
    padding: 12px 18px;
    box-shadow: var(--sombra-media);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--texto-escuro);
    animation: float 3s ease-in-out infinite;
}

.hero-floating-card.card-1 {
    top: 20px;
    right: 10px;
}

.hero-floating-card.card-2 {
    bottom: 30px;
    left: 10px;
    animation-delay: 1.5s;
}

.hero-floating-card i {
    font-size: 1.5rem;
    color: var(--verde-principal);
}

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

.hero-trust-text {
    font-size: 0.9rem;
    color: var(--texto-medio);
    margin-top: 15px;
}

/* ============================================
   SEÇÃO COMPARAÇÃO
   ============================================ */
.comparison-section {
    background: var(--branco);
}

.comparison-card {
    border-radius: var(--borda-radius);
    padding: 30px;
    transition: var(--transicao);
    height: 100%;
    border: 2px solid transparent;
}

.comparison-card.presencial {
    background: #FFF5F5;
    border-color: #FFD7D7;
}

.comparison-card.online {
    background: #F0FAF4;
    border-color: #B8E6CC;
}

.comparison-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--sombra-media);
}

.comparison-card .card-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    display: block;
}

.comparison-card.presencial .card-icon {
    color: #E74C3C;
}

.comparison-card.online .card-icon {
    color: var(--verde-principal);
}

.comparison-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.comparison-list {
    list-style: none;
    padding: 0;
}

.comparison-list li {
    margin-bottom: 10px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.comparison-list li .icon-x {
    color: #E74C3C;
    font-weight: 700;
}

.comparison-list li .icon-check {
    color: var(--verde-principal);
    font-weight: 700;
}

.comparison-image {
    border-radius: var(--borda-radius);
    width: 100%;
    max-height: 250px;
    object-fit: cover;
    margin-bottom: 20px;
    box-shadow: var(--sombra-suave);
}

/* ============================================
   SEÇÃO VÍDEOS
   ============================================ */
.videos-section {
    background: var(--fundo-claro);
}

.video-card {
    border-radius: var(--borda-radius);
    overflow: hidden;
    box-shadow: var(--sombra-suave);
    background: var(--branco);
    transition: var(--transicao);
    cursor: pointer;
    position: relative;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--sombra-media);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--verde-principal);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transicao);
}

.video-card:hover .video-play-btn {
    background: var(--verde-principal);
    color: var(--branco);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-card-body {
    padding: 20px;
}

.video-card-body h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.video-card-body p {
    font-size: 0.85rem;
    color: var(--texto-medio);
    margin-bottom: 0;
}

/* ============================================
   SEÇÃO ESPECIALIDADES
   ============================================ */
.specialties-section {
    background: var(--branco);
}

.specialty-card {
    background: var(--fundo-claro);
    border-radius: var(--borda-radius-sm);
    padding: 24px 18px;
    text-align: center;
    transition: var(--transicao);
    cursor: pointer;
    border: 2px solid transparent;
    height: 100%;
}

.specialty-card:hover {
    background: var(--branco);
    border-color: var(--verde-principal);
    transform: translateY(-5px);
    box-shadow: var(--sombra-media);
}

.specialty-card .specialty-icon {
    font-size: 2.2rem;
    color: var(--verde-principal);
    margin-bottom: 12px;
    display: block;
    transition: var(--transicao);
}

.specialty-card:hover .specialty-icon {
    transform: scale(1.15);
}

.specialty-card h5 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.specialty-card p {
    font-size: 0.78rem;
    color: var(--texto-medio);
    margin-bottom: 0;
}

/* ============================================
   SEÇÃO POR QUE ESCOLHER
   ============================================ */
.why-section {
    background: var(--fundo-claro);
}

.benefit-card {
    background: var(--branco);
    border-radius: var(--borda-radius);
    padding: 30px 24px;
    text-align: center;
    transition: var(--transicao);
    height: 100%;
    box-shadow: var(--sombra-suave);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--sombra-media);
}

.benefit-card .benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
    color: var(--verde-principal);
}

.benefit-card h4 {
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 0.88rem;
    color: var(--texto-medio);
    margin-bottom: 0;
}

/* ============================================
   SEÇÃO DEPOIMENTOS
   ============================================ */
.testimonials-section {
    background: var(--branco);
}

.testimonial-card {
    background: var(--fundo-claro);
    border-radius: var(--borda-radius);
    padding: 28px 24px;
    transition: var(--transicao);
    height: 100%;
    box-shadow: var(--sombra-suave);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--sombra-media);
}

.testimonial-stars {
    color: var(--amarelo-destaque);
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.testimonial-text {
    font-size: 0.9rem;
    color: var(--texto-medio);
    margin-bottom: 16px;
    font-style: italic;
}

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

.testimonial-author img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author .author-info h5 {
    font-size: 0.9rem;
    margin-bottom: 2px;
}

.testimonial-author .author-info p {
    font-size: 0.8rem;
    color: var(--texto-medio);
    margin-bottom: 0;
}

.testimonial-demo-badge {
    display: inline-block;
    background: #FFF3CD;
    color: #856404;
    font-size: 0.7rem;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

/* ============================================
   SEÇÃO PREÇO
   ============================================ */
.pricing-section {
    background: linear-gradient(135deg, #E8F5EE 0%, #F0F9F4 50%, #E8F5EE 100%);
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 168, 89, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.pricing-card {
    background: var(--branco);
    border-radius: 20px;
    padding: 40px 35px;
    box-shadow: var(--sombra-media);
    max-width: 550px;
    margin: 0 auto;
    position: relative;
    border: 3px solid var(--verde-principal);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--amarelo-destaque);
    color: #1A1A1A;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 6px 20px;
    border-radius: 30px;
    white-space: nowrap;
}

.pricing-plan-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--texto-escuro);
    margin-bottom: 5px;
}

.pricing-plan-desc {
    font-size: 0.9rem;
    color: var(--texto-medio);
    margin-bottom: 20px;
}

.pricing-price-old {
    font-size: 1.1rem;
    color: #999;
    text-decoration: line-through;
}

.pricing-price-new {
    font-size: 3rem;
    font-weight: 800;
    color: var(--verde-escuro);
    line-height: 1;
    margin-bottom: 5px;
}

.pricing-price-new span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--texto-medio);
}

.pricing-savings {
    display: inline-block;
    background: var(--verde-claro);
    color: var(--verde-escuro);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
    text-align: left;
}

.pricing-features li {
    margin-bottom: 10px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li i {
    color: var(--verde-principal);
    font-size: 1rem;
}

.pricing-note {
    font-size: 0.8rem;
    color: var(--texto-medio);
    margin-top: 15px;
    text-align: center;
}

/* ============================================
   CTA INTERMEDIÁRIO
   ============================================ */
.cta-intermediate {
    background: linear-gradient(135deg, #007A3D 0%, #00A859 50%, #0D6EFF 100%);
    padding: 60px 0;
    text-align: center;
    color: var(--branco);
    position: relative;
    overflow: hidden;
}

.cta-intermediate::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    pointer-events: none;
}

.cta-intermediate h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--branco);
}

.cta-intermediate p {
    font-size: 1.05rem;
    margin-bottom: 25px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-intermediate .btn-assinar {
    background: var(--branco);
    color: var(--verde-escuro);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-intermediate .btn-assinar:hover {
    background: #F0F0F0;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

/* ============================================
   SEÇÃO COMO FUNCIONA
   ============================================ */
.how-section {
    background: var(--branco);
}

.how-step {
    text-align: center;
    padding: 30px 20px;
    transition: var(--transicao);
    border-radius: var(--borda-radius);
}

.how-step:hover {
    background: var(--fundo-claro);
    transform: translateY(-5px);
}

.how-step .step-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--verde-claro) 0%, var(--verde-principal) 100%);
    color: var(--branco);
    font-size: 1.8rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 20px rgba(0, 168, 89, 0.3);
}

.how-step h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.how-step p {
    font-size: 0.9rem;
    color: var(--texto-medio);
    margin-bottom: 0;
}

/* ============================================
   FAQ
   ============================================ */
.faq-section {
    background: var(--fundo-claro);
}

.accordion-item {
    border: none;
    margin-bottom: 12px;
    border-radius: var(--borda-radius-sm) !important;
    overflow: hidden;
    box-shadow: var(--sombra-suave);
}

.accordion-button {
    font-weight: 600;
    font-size: 0.95rem;
    padding: 18px 24px;
    color: var(--texto-escuro);
    background: var(--branco);
}

.accordion-button:not(.collapsed) {
    background: var(--verde-claro);
    color: var(--verde-escuro);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--verde-claro);
}

.accordion-button::after {
    background-size: 1rem;
}

.accordion-body {
    font-size: 0.9rem;
    color: var(--texto-medio);
    padding: 18px 24px;
    background: var(--branco);
}

/* ============================================
   CTA FINAL
   ============================================ */
.cta-final {
    background: linear-gradient(135deg, #0D6EFF 0%, #007A3D 100%);
    padding: 80px 0;
    text-align: center;
    color: var(--branco);
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

.cta-final::after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    pointer-events: none;
}

.cta-final h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--branco);
}

.cta-final p {
    font-size: 1.15rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-final .btn-assinar {
    background: var(--branco);
    color: var(--verde-escuro);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    font-size: 1.2rem;
}

.cta-final .btn-assinar:hover {
    background: #F0F0F0;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.cta-final .cta-note {
    font-size: 0.85rem;
    margin-top: 15px;
    opacity: 0.8;
}

/* ============================================
   RODAPÉ
   ============================================ */
.footer-lsb {
    background: #1A2B3C;
    color: #B0BEC5;
    padding: 50px 0 20px;
}

.footer-lsb h5 {
    color: var(--branco);
    font-size: 1rem;
    margin-bottom: 18px;
    font-weight: 600;
}

.footer-lsb a {
    color: #B0BEC5;
    text-decoration: none;
    transition: var(--transicao);
    font-size: 0.88rem;
}

.footer-lsb a:hover {
    color: var(--verde-principal);
}

.footer-lsb .footer-logo {
    font-weight: 800;
    color: var(--branco);
    font-size: 1.3rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-lsb .footer-logo img {
    height: 50px;        /* Mesmo tamanho */
    width: auto;
    max-height: none;
}

.footer-lsb .footer-social {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.footer-lsb .footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transicao);
}

.footer-lsb .footer-social a:hover {
    background: var(--verde-principal);
    color: var(--branco);
    transform: translateY(-3px);
}

.footer-lsb .footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 30px 0 20px;
    padding-top: 20px;
}

.footer-lsb .footer-disclaimer {
    font-size: 0.75rem;
    color: #78909C;
    line-height: 1.8;
}

.footer-lsb .footer-bottom {
    font-size: 0.8rem;
    color: #78909C;
    text-align: center;
}

/* ============================================
   BOTÃO FLUTUANTE WHATSAPP
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--branco);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transicao);
    text-decoration: none;
    animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: var(--branco);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float .whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: #333;
    color: var(--branco);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transicao);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

@keyframes pulse-whatsapp {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7); }
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-section {
        padding: 100px 0 60px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-padding {
        padding: 60px 0;
    }
}

@media (max-width: 767px) {
        .hero-section {
        padding: 60px 0 40px;   /* ajuste o valor conforme necessário */
    }

       .navbar-toggler {
        width: 28px;   /* reduza */
        height: 22px;  /* reduza */
        padding: 6px;
    }
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-price-new {
        font-size: 1.6rem;
    }
    
    .hero-image-wrapper {
        margin-top: 30px;
    }
    
    .hero-floating-card.card-1 {
        top: 10px;
        right: 5px;
        font-size: 0.75rem;
        padding: 8px 12px;
    }
    
    .hero-floating-card.card-2 {
        bottom: 15px;
        left: 5px;
        font-size: 0.75rem;
        padding: 8px 12px;
    }
    
    .hero-floating-card i {
        font-size: 1rem;
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
    
    .pricing-price-new {
        font-size: 2.2rem;
    }
    
    .cta-final h2 {
        font-size: 1.8rem;
    }
    
    .cta-intermediate h2 {
        font-size: 1.5rem;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-float .whatsapp-tooltip {
        display: none;
    }
    
    .btn-assinar {
        font-size: 1rem;
        padding: 14px 24px;
    }
    
    .btn-assinar.btn-lg {
        font-size: 1.1rem;
        padding: 16px 30px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 50px 0 30px;   /* ajuste o valor conforme necessário */
    }

    
    .navbar-toggler {
        margin-right: 10px;   /* ajuste o valor conforme necessário */
    }
    .navbar-lsb .navbar-brand img {
        height: 75px;
    }
    .footer-lsb .footer-logo img {
        height: 75px;
    }




    .hero-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .comparison-card {
        padding: 20px;
    }
    
    .specialty-card {
        padding: 18px 12px;
    }
    
    .specialty-card h5 {
        font-size: 0.85rem;
    }
    
    .video-thumbnail {
        height: 160px;
    }
}