:root {
    --whatsapp: #25D366;
    --whatsapp-dark: #128C7E;
    --dark: #333333;
    --light: #f8f9fa;
    --white: #ffffff;
    --purple: #8a2be2;
    --purple-dark: #6a1cb2;
    --gray: #6c757d;
    --light-gray: #e9ecef;
    --border-radius: 10px;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --gradient-primary: linear-gradient(135deg, var(--whatsapp) 0%, var(--purple) 100%);
    --gradient-dark: linear-gradient(135deg, #222222 0%, #444444 100%);
}

/* Estilos gerais e fontes */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    overflow-x: hidden;
    scroll-behavior: smooth;
    background-color: var(--light);
}

::selection {
    background-color: var(--whatsapp);
    color: var(--white);
}

/* Efeito de scroll suave em toda a página */
html {
    scroll-behavior: smooth;
}

/* Scrollbar personalizada */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light);
}

::-webkit-scrollbar-thumb {
    background: var(--whatsapp);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--whatsapp-dark);
}

/* Tipografia aprimorada */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

p {
    line-height: 1.7;
}

/* Modificando cores de fundo e estrutura das seções */
section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}

.section-padding {
    padding: 100px 0;
}

section .container {
    position: relative;
    z-index: 2;
}

/* Aumentar o padding da última seção para compensar pelo footer */
section:last-of-type {
    padding-bottom: 150px;
}

section#inicio {
    background-color: #111;
}

section#funcionalidades {
    background-color: #ffffff;
}

section#planos {
    background-color: #f8f9fa;
}

section#depoimentos {
    background-color: #ffffff;
}

section#faq {
    background-color: #f8f9fa;
}

section#contato {
    background-color: #ffffff;
}

/* Títulos de seção com estilo aprimorado */
.section-title {
    margin-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.section-title h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-title p {
    font-size: 18px;
    color: var(--gray);
    max-width: 700px;
    margin: 15px auto 0;
}

.section-title span.highlight {
    color: var(--whatsapp);
    font-weight: 700;
}

.bg-light {
    background-color: #f8f9fa !important;
    position: relative;
}

/* Efeito de vidro (glassmorphism) */
.glass-effect {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--border-radius);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Botões aprimorados */
.btn {
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1.2px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.btn::after {
    content: '';
    position: absolute;
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    z-index: -1;
    border-radius: 30px;
}

.btn:hover::after {
    width: 100%;
}

.btn-cta {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 15px 35px;
    font-size: 16px;
    position: relative;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--purple) 0%, var(--whatsapp) 100%);
    z-index: -1;
    transition: opacity 0.5s ease;
    opacity: 0;
    border-radius: 30px;
}

.btn-cta:hover::before {
    opacity: 1;
}

.btn-cta i {
    margin-right: 8px;
    transition: transform 0.3s ease;
}

.btn-cta:hover i {
    transform: translateX(3px);
}

.btn-login {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 8px 24px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-login::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--white);
    transition: all 0.4s ease;
    z-index: -1;
}

.btn-login:hover {
    color: var(--dark);
}

.btn-login:hover::before {
    width: 100%;
}

.btn-plan {
    background: var(--gradient-primary);
    color: var(--white);
    width: 100%;
    border: none;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.2);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.btn-plan::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--purple) 0%, var(--whatsapp) 100%);
    transition: opacity 0.5s ease;
    opacity: 0;
    z-index: -1;
    border-radius: 30px;
}

.btn-plan:hover::before {
    opacity: 1;
}

.btn-plan i {
    margin-left: 8px;
    transition: transform 0.3s ease;
    opacity: 0;
}

.btn-plan:hover i {
    opacity: 1;
    transform: translateX(5px);
}

.btn-contact {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    width: auto;
    position: relative;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.2);
    padding-left: 32px;
    padding-right: 32px;
    display: inline-block;
}

.btn-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--purple) 0%, var(--whatsapp) 100%);
    transition: opacity 0.5s ease;
    opacity: 0;
    z-index: -1;
    border-radius: 30px;
}

.btn-contact:hover::before {
    opacity: 1;
}

/* Navbar com efeitos avançados */
.navbar {
    background-color: rgba(0, 0, 0, 0.85);
    padding: 20px 0;
    transition: all 0.5s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    position: fixed;
}
.navbar > .container {
    max-width: 1140px;
    margin: 0 auto;
    padding-left: 16px;
    padding-right: 16px;
}
@media (max-width: 1200px) {
  .navbar > .container {
    max-width: 960px;
  }
}
@media (max-width: 991.98px) {
  .navbar > .container {
    max-width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }
}

.navbar-brand {
    font-weight: 800;
    font-size: 28px;
    color: var(--white);
    display: flex;
    align-items: center;
}

.navbar-brand img {
    height: 40px;
    margin-right: 10px;
}

.logo-text {
    color: var(--white);
    position: relative;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.logo-text::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: width 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.navbar-brand:hover .logo-text::after {
    width: 100%;
}

.navbar-toggler {
    border: none;
    outline: none;
    padding: 0;
    width: 30px;
    height: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: none;
    position: relative;
    height: 2px;
    width: 100%;
    background: var(--white);
    display: inline-block;
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

.navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler-icon::after {
    bottom: -8px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background: transparent;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    transform: translateY(8px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transform: translateY(-8px) rotate(-45deg);
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    padding: 10px 15px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 15px;
    width: calc(100% - 30px);
    height: 2px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}

.nav-link:hover, 
.nav-link:focus,
.nav-link.active {
    color: var(--whatsapp) !important;
    text-shadow: 0 0 10px rgba(37, 211, 102, 0.5);
}

.nav-link:hover::before, 
.nav-link:focus::before,
.nav-link.active::before {
    transform: scaleX(1);
    transform-origin: left;
}

.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.9);
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

/* Menu dropdown aprimorado */
.dropdown-menu {
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 0;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    min-width: 200px;
    margin-top: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    color: var(--white);
    font-weight: 500;
    padding: 10px 20px;
    transition: all 0.3s ease;
    position: relative;
}

.dropdown-item:hover {
    background: transparent;
    color: var(--whatsapp);
    padding-left: 25px;
}

.dropdown-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 2px;
    background: var(--whatsapp);
    transition: all 0.3s ease;
}

.dropdown-item:hover::before {
    width: 15px;
}

/* Hero Section ajustada */
.hero-section {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.8) 100%), url('../img/hero-bg.svg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 200px 0 120px;
    position: relative;
    overflow: hidden;
}

/* Desativar o efeito de brilho na hero section */
.hero-section::after {
    display: none;
}

.hero-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--light) 0%, transparent 100%);
    z-index: 1;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
    line-height: 1.2;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.hero-section .lead {
    font-size: 1.25rem;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.2s;
    animation-fill-mode: both;
    max-width: 600px;
}

.hero-section .btn-cta {
    animation: fadeInUp 1s ease 0.4s;
    animation-fill-mode: both;
}

.hero-img {
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 15px 15px rgba(0, 0, 0, 0.2));
}

/* Animação de partículas */
.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--whatsapp);
    border-radius: 50%;
    animation: moveParticle 15s infinite linear;
    opacity: 0.3;
}

.particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-duration: 20s;
    width: 4px;
    height: 4px;
    opacity: 0.2;
}

.particle:nth-child(2) {
    top: 60%;
    left: 30%;
    animation-duration: 25s;
    width: 5px;
    height: 5px;
    background: var(--purple);
}

.particle:nth-child(3) {
    top: 40%;
    left: 70%;
    animation-duration: 30s;
    width: 8px;
    height: 8px;
}

.particle:nth-child(4) {
    top: 80%;
    left: 50%;
    animation-duration: 22s;
    width: 6px;
    height: 6px;
    background: var(--purple);
}

.particle:nth-child(5) {
    top: 10%;
    left: 90%;
    animation-duration: 18s;
    width: 7px;
    height: 7px;
}

@keyframes moveParticle {
    0% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(100px, 50px);
    }
    50% {
        transform: translate(50px, 100px);
    }
    75% {
        transform: translate(-50px, 50px);
    }
    100% {
        transform: translate(0, 0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
    }
    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animação de texto digitado */
.typing-text {
    display: inline-block;
    position: relative;
}

.typing-text::after {
    content: '|';
    position: absolute;
    right: -10px;
    animation: blink 0.8s infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

/* Features Section */
.feature-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 35px 25px;
    text-align: center;
    transition: var(--transition);
    margin-bottom: 40px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border-top: 3px solid transparent;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--whatsapp) 0%, var(--purple) 100%);
    opacity: 0;
    z-index: -1;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    border-top: 3px solid var(--whatsapp);
}

.feature-card:hover::before {
    opacity: 0.05;
}

.feature-card:hover .icon-wrapper {
    background: var(--whatsapp);
    transform: rotateY(360deg);
}

.feature-card:hover .icon-wrapper i {
    color: var(--white);
}

.feature-card .icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.7s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.feature-card .icon-wrapper i {
    font-size: 32px;
    color: var(--whatsapp);
    transition: color 0.7s ease;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
    transition: var(--transition);
    color: var(--dark);
    font-weight: 600;
}

.feature-card p {
    color: var(--gray);
    margin-bottom: 0;
    transition: var(--transition);
    line-height: 1.6;
    font-size: 15px;
}

.integrations-section {
    margin-top: 50px;
    padding: 30px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.integrations-section h3 {
    margin-bottom: 30px;
}

.integration-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.integration-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition);
}

.integration-item:hover {
    transform: translateY(-5px);
}

.integration-item i {
    font-size: 36px;
    color: var(--whatsapp);
    margin-bottom: 10px;
}

.integration-item span {
    font-size: 14px;
    font-weight: 600;
}

/* Pricing Plans */
.plan-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    margin-bottom: 30px;
    position: relative;
    height: 100%;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.plan-header {
    padding: 30px;
    text-align: center;
    background: var(--light);
    border-bottom: 1px solid var(--light-gray);
}

.plan-header h3 {
    font-size: 24px;
    margin-bottom: 5px;
}

.plan-subtitle {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 20px;
}

.price {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.currency {
    font-size: 20px;
    font-weight: 600;
    margin-top: 5px;
}

.amount {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
}

.period {
    font-size: 16px;
    margin-top: 10px;
    color: var(--gray);
}

.plan-features {
    padding: 30px;
}

.plan-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.plan-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--light-gray);
    display: flex;
    align-items: center;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features li i {
    color: var(--whatsapp);
    margin-right: 10px;
}

.plan-features li i.fa-check {
    color: var(--whatsapp);
    margin-right: 10px;
}

.plan-features li i.fa-times {
    color: #dc3545;
    margin-right: 10px;
}

.plan-features li.disabled {
    color: var(--gray);
    opacity: 0.7;
}

.plan-footer {
    padding: 20px 30px 30px;
    text-align: center;
}

.plan-card.popular {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 1;
    border: 2px solid var(--whatsapp);
}

.plan-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-tag {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--whatsapp);
    color: var(--white);
    padding: 5px 40px;
    transform: rotate(45deg);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 1;
}

/* Testimonials */
.testimonial-slider {
    position: relative;
    padding: 30px 0;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-content {
    position: relative;
    padding: 20px 0;
    text-align: center;
}

.testimonial-content:before {
    content: '\f10d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 24px;
    color: var(--whatsapp);
    opacity: 0.3;
}

.testimonial-content p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--dark);
}

.testimonial-user {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 18px;
    box-shadow: 0 2px 12px rgba(37,211,102,0.08);
    background: #fff;
    border: none;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
}

.user-info h5 {
    font-size: 18px;
    margin-bottom: 5px;
}

.user-info p {
    color: var(--gray);
    font-size: 14px;
    margin: 0;
}

.carousel-control-prev,
.carousel-control-next {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    opacity: 1;
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.carousel-control-prev {
    left: -20px;
}

.carousel-control-next {
    right: -20px;
}

.carousel-control-prev i,
.carousel-control-next i {
    color: var(--whatsapp);
    font-size: 16px;
}

/* FAQ Section */
.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: var(--border-radius) !important;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.accordion-header {
    margin: 0;
}

.accordion-button {
    font-weight: 600;
    padding: 20px;
    background-color: var(--white);
    color: var(--dark);
}

.accordion-button:not(.collapsed) {
    background-color: var(--white);
    color: var(--whatsapp);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2325D366'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
    padding: 20px;
    background-color: var(--white);
    color: var(--gray);
}

/* Footer */
.footer {
    background: var(--dark);
    padding: 80px 0 0;
    color: var(--white);
}

.footer-about {
    margin-bottom: 30px;
}

.footer-logo {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    margin-bottom: 30px;
}

.footer-links h5 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h5:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--whatsapp);
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--whatsapp);
    padding-left: 5px;
}

.footer-social h5 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-social h5:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--whatsapp);
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--whatsapp);
    transform: translateY(-5px);
}

.footer-bottom {
    padding: 20px 0;
    margin-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
}

.footer-bottom-links li {
    margin-left: 20px;
}

.footer-bottom-links li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom-links li a:hover {
    color: var(--whatsapp);
}

/* WhatsApp Flutuante */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: var(--transition);
    text-decoration: none;
    border: none;
    outline: none;
}

.floating-whatsapp:hover {
    transform: scale(1.1);
    color: var(--white);
    text-decoration: none;
}

.floating-whatsapp i {
    line-height: 0;
}

/* Animações */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    }
}

/* Responsividade */
@media (max-width: 992px) {
    .navbar {
        background-color: rgba(0, 0, 0, 0.9);
    }
    
    .navbar-nav {
        padding: 20px 0;
    }
    
    .nav-link {
        padding: 15px 0;
    }
    
    .btn-login {
        margin-top: 10px;
        width: 100%;
        text-align: center;
    }
    
    .hero-section {
        padding: 150px 0 80px;
    }
    
    .hero-section h1 {
        font-size: 36px;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
    
    .plan-card.popular {
        transform: scale(1);
    }
    
    .plan-card.popular:hover {
        transform: translateY(-10px);
    }
    
    .footer-bottom-links {
        justify-content: flex-start;
        margin-top: 15px;
    }
    
    .footer-bottom-links li {
        margin-left: 0;
        margin-right: 20px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 70px 0;
    }
    
    .section-padding {
        padding: 70px 0;
    }
    
    .section-title h2 {
        font-size: 30px;
    }
    
    .hero-section {
        padding: 120px 0 70px;
        text-align: center;
    }
    
    .hero-section h1 {
        font-size: 30px;
    }
    
    .hero-img {
        margin-top: 50px;
    }
    
    .feature-card {
        margin-bottom: 30px;
        padding: 30px 20px;
    }
    
    .row [class*="col-"]:last-child .feature-card {
        margin-bottom: 0;
    }
    
    .plan-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .preloader-logo {
        font-size: 20px;
    }
    
    .hero-section {
        padding: 150px 0 100px;
    }
    
    .hero-section h1 {
        font-size: 1.8rem;
    }
    
    .badge {
        font-size: 0.7rem;
        padding: 6px 12px;
    }
    
    .metric-item {
        padding: 10px 5px;
    }
    
    .metric-item h3 {
        font-size: 1.2rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .floating-whatsapp {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
    
    .back-to-top {
        width: 45px;
        height: 45px;
        font-size: 18px;
        bottom: 80px;
        right: 20px;
    }
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #111;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.spinner {
    width: 60px;
    height: 60px;
    position: relative;
    margin-bottom: 20px;
}

.double-bounce1, .double-bounce2 {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--whatsapp);
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
    animation-delay: -1.0s;
    background-color: var(--purple);
}

@keyframes sk-bounce {
    0%, 100% { 
        transform: scale(0.0);
    } 50% { 
        transform: scale(1.0);
    }
}

.preloader-logo {
    color: var(--white);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Métrica Cards na Hero Section */
.metric-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px 5px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.metric-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.metric-item h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 5px;
    color: var(--whatsapp);
}

.metric-item h3 span {
    font-size: 1rem;
    opacity: 0.8;
}

.metric-item p {
    font-size: 0.85rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

/* Badge na hero section */
.badge-wrapper {
    display: inline-block;
}

.badge {
    font-weight: 500;
    font-size: 0.85rem;
    padding: 8px 16px;
    border-radius: 30px;
    animation: pulse 2s infinite;
}

/* Text highlight */
.text-highlight {
    color: var(--whatsapp);
    font-weight: 600;
}

/* Hero image e elementos flutuantes */
.hero-image-wrapper {
    position: relative;
    padding: 20px;
}

.hero-blob {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(37, 211, 102, 0.1) 0%, transparent 70%);
    z-index: -1;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: blob-morph 8s ease-in-out infinite;
}

@keyframes blob-morph {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    25% {
        border-radius: 50% 50% 30% 70% / 50% 50% 50% 50%;
    }
    50% {
        border-radius: 70% 30% 50% 50% / 40% 60% 40% 60%;
    }
    75% {
        border-radius: 40% 60% 60% 40% / 60% 40% 60% 40%;
    }
    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

.hero-floating-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--whatsapp);
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    animation: float 8s ease-in-out infinite;
}

.hero-icon-1 {
    top: 20%;
    left: 0;
    animation-delay: 0s;
}

.hero-icon-2 {
    top: 60%;
    right: 5%;
    animation-delay: 2s;
    color: var(--purple);
}

.hero-icon-3 {
    bottom: 10%;
    left: 10%;
    animation-delay: 4s;
}

/* Botões hero section */
.hero-buttons {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.btn-outline {
    color: var(--white);
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    border-color: var(--white);
    color: var(--white);
}

.btn-outline i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.btn-outline:hover i {
    transform: translateX(3px);
}

/* Voltar ao topo */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gradient-primary);
    transform: translateY(-5px);
}

/* Form success animation */
.form-success {
    animation: formSuccess 1s ease;
}

@keyframes formSuccess {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Melhorias na responsividade */
@media (max-width: 992px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .metric-item {
        margin-bottom: 15px;
    }
    
    .hero-floating-icon {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .btn-outline {
        margin-top: 15px;
        margin-left: 0 !important;
        display: none;
    }
    
    .metrics {
        margin-top: 30px;
    }
    
    .metric-item h3 {
        font-size: 1.5rem;
    }
    
    .wave-separator svg {
        height: 40px;
    }
}

@media (max-width: 576px) {
    .preloader-logo {
        font-size: 20px;
    }
    
    .hero-section {
        padding: 150px 0 100px;
    }
    
    .hero-section h1 {
        font-size: 1.8rem;
    }
    
    .badge {
        font-size: 0.7rem;
        padding: 6px 12px;
    }
    
    .metric-item {
        padding: 10px 5px;
    }
    
    .metric-item h3 {
        font-size: 1.2rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .floating-whatsapp {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 20px;
    }
    
    .back-to-top {
        width: 45px;
        height: 45px;
        font-size: 18px;
        bottom: 80px;
        right: 20px;
    }
}

/* ===== NAVBAR MODERNO GLASS ===== */
.navbar-glass {
    background: var(--glass-bg);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-radius: 0 0 24px 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    border: 1px solid var(--glass-border);
    transition: background 0.4s, box-shadow 0.4s;
    padding: 18px 0;
}

.navbar-glass .navbar-brand img {
    height: 40px;
    width: auto;
    margin-right: 12px;
}

.navbar-glass .nav-link {
    color: var(--white);
    font-weight: 500;
    margin: 0 8px;
    position: relative;
    transition: color 0.3s;
}

.navbar-glass .nav-link.active,
.navbar-glass .nav-link:hover,
.navbar-glass .nav-link:focus {
    color: var(--whatsapp);
    text-shadow: 0 0 8px rgba(37, 211, 102, 0.3);
}

.navbar-glass .btn-login {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.10);
    padding: 10px 28px;
    border-radius: 30px;
    transition: background 0.3s, color 0.3s;
}

.navbar-glass .btn-login:hover {
    background: var(--purple);
    color: var(--white);
}

/* Alternância de logo no navbar conforme fundo */
.navbar-glass .logo-dark { display: inline; }
.navbar-glass .logo-light { display: none; }

@media (max-width: 991.98px) {
  .navbar-glass {
    background: #181c23 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border: none;
  }
  .navbar-glass .navbar-collapse {
    background: #181c23;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    margin-top: 18px;
    padding: 28px 0 18px 0;
    min-width: 90vw;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    top: 70px;
    z-index: 9999;
    border: 2px solid var(--glass-border);
    animation: fadeInUp 0.4s;
  }
  .navbar-glass .navbar-collapse.show ~ .navbar-brand .logo-dark {
    display: none !important;
  }
  .navbar-glass .navbar-collapse.show ~ .navbar-brand .logo-light {
    display: inline !important;
  }
}

/* Alternativa para garantir troca via JS (caso precise):
.navbar-glass.menu-light .logo-dark { display: none; }
.navbar-glass.menu-light .logo-light { display: inline; }
*/

/* Custom Hamburger */
.custom-toggler {
    border: none;
    background: transparent;
    outline: none;
    box-shadow: none;
}
.custom-toggler .navbar-toggler-icon {
    background-image: none;
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    position: relative;
    transition: all 0.3s;
    display: block;
}
.custom-toggler .navbar-toggler-icon::before,
.custom-toggler .navbar-toggler-icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s;
}
.custom-toggler .navbar-toggler-icon::before {
    top: -9px;
}
.custom-toggler .navbar-toggler-icon::after {
    top: 9px;
}
.custom-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background: transparent;
}
.custom-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    transform: translateY(9px) rotate(45deg);
}
.custom-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 991.98px) {
    .navbar-glass .navbar-collapse {
        background: #181c23;
        border-radius: 24px;
        box-shadow: 0 8px 32px rgba(0,0,0,0.18);
        margin-top: 18px;
        padding: 28px 0 18px 0;
        min-width: 90vw;
        left: 50%;
        transform: translateX(-50%);
        position: absolute;
        top: 70px;
        z-index: 9999;
        border: 2px solid var(--glass-border);
        animation: fadeInUp 0.4s;
    }
    .navbar-glass .nav-link {
        color: var(--white);
        font-size: 1.2rem;
        margin: 18px 0;
        text-align: center;
        border-radius: 18px;
        padding: 14px 0;
        transition: background 0.2s, color 0.2s;
    }
    .navbar-glass .nav-link.active,
    .navbar-glass .nav-link:focus,
    .navbar-glass .nav-link:hover {
        color: #fff;
        background: rgba(0,0,0,0.12);
        box-shadow: 0 2px 12px rgba(0,0,0,0.08);
        font-weight: 700;
    }
    .navbar-glass .btn-login {
        width: 90%;
        margin: 24px auto 0 auto;
        display: block;
        background: var(--gradient-primary);
        color: #fff;
        font-size: 1.1rem;
        border-radius: 24px;
        box-shadow: 0 4px 18px rgba(37,211,102,0.18);
        padding: 16px 0;
        letter-spacing: 1.2px;
        font-weight: 700;
        border: none;
    }
    .navbar-glass .btn-login:hover {
        background: var(--purple-dark);
        color: #fff;
    }
}

/* === SIDEBAR MINIMALISTA MOBILE === */
.sidebar-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 12001;
  gap: 5px;
}
.sidebar-hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Overlay escuro */
.sidebar-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(20, 20, 30, 0.65);
  z-index: 12000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.sidebar-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* Sidebar */
.mobile-sidebar {
  position: fixed;
  top: 32px;
  left: 16px;
  width: 82vw;
  max-width: 320px;
  height: auto;
  min-height: 60vh;
  max-height: 80vh;
  background: rgba(30, 32, 40, 0.98);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  border-radius: 22px;
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  z-index: 12002;
  transform: translateX(-120%) scale(0.98);
  opacity: 0;
  transition: all 0.35s cubic-bezier(.77,0,.18,1);
  display: flex;
  flex-direction: column;
  padding: 28px 22px 22px 22px;
  gap: 18px;
}
.mobile-sidebar.active {
  transform: translateX(0) scale(1);
  opacity: 1;
}

.close-sidebar {
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  position: absolute;
  top: 14px;
  right: 18px;
  z-index: 2;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.close-sidebar:hover { opacity: 1; }

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
}
.sidebar-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-decoration: none;
  font-size: 1.08rem;
  font-weight: 500;
  padding: 10px 12px;
  border-radius: 12px;
  transition: background 0.18s, color 0.18s;
  opacity: 0.92;
}
.sidebar-link i {
  font-size: 1.15em;
  color: var(--whatsapp);
  transition: color 0.2s;
}
.sidebar-link:hover, .sidebar-link.active {
  background: var(--gradient-primary);
  color: var(--white);
  opacity: 1;
}
.sidebar-link:hover i, .sidebar-link.active i {
  color: var(--white);
}

.sidebar-login {
  margin-top: 18px;
  width: 100%;
  text-align: center;
  border-radius: 16px;
  font-size: 1.08rem;
  font-weight: 600;
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  box-shadow: 0 2px 8px rgba(37,211,102,0.10);
  padding: 12px 0;
  letter-spacing: 1.1px;
  transition: background 0.3s, color 0.3s;
}
.sidebar-login:hover {
  background: var(--purple-dark);
  color: var(--white);
}

@media (min-width: 992px) {
  .sidebar-hamburger, #mobileSidebar, #sidebarOverlay { display: none !important; }
}
@media (max-width: 991.98px) {
  .navbar-glass .navbar-collapse { display: none !important; }
}

/* === PLANOS MODERNOS === */
.planos-modernos {
  background: #181c23;
}
.plan-modern-card {
  background: rgba(30,32,40,0.98);
  border-radius: 22px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  padding: 38px 28px 28px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.25s, box-shadow 0.25s;
  min-height: 420px;
  border: 1.5px solid var(--glass-border);
  position: relative;
  overflow: hidden;
  height: 100%;
}
.plan-modern-card.popular.plan-modern-card-popular {
  border: 2.5px solid var(--whatsapp);
  box-shadow: 0 16px 48px rgba(37,211,102,0.13);
  transform: scale(1.08);
  z-index: 2;
  min-height: 480px;
  padding-top: 54px;
}
.plan-modern-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 16px 48px rgba(37,211,102,0.13);
}
.plan-modern-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 22px;
}
.plan-modern-header i {
  font-size: 2.5rem;
  color: var(--whatsapp);
  margin-bottom: 10px;
  filter: drop-shadow(0 2px 8px rgba(37,211,102,0.10));
}
.plan-modern-card.popular .plan-modern-header i {
  color: var(--purple);
}
.plan-modern-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.plan-modern-subtitle {
  color: var(--gray);
  font-size: 1rem;
  margin-bottom: 0;
}
.plan-modern-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px 0;
  width: 100%;
}
.plan-modern-features li {
  color: var(--white);
  font-size: 1.04rem;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  opacity: 0.92;
}
.plan-modern-features li i {
  color: var(--whatsapp);
  font-size: 1.1em;
}
.btn-modern-cta {
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  border-radius: 18px;
  font-weight: 700;
  font-size: 1.08rem;
  padding: 13px 0;
  width: 100%;
  box-shadow: 0 2px 8px rgba(37,211,102,0.10);
  letter-spacing: 1.1px;
  transition: background 0.3s, color 0.3s, transform 0.2s;
}
.btn-modern-cta:hover {
  background: var(--purple-dark);
  color: var(--white);
  transform: translateY(-2px) scale(1.03);
}

/* Modal Teste Grátis */
.modal-teste-content {
  background: #23263a;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  border: 1.5px solid var(--glass-border);
  color: var(--white);
}
.modal-teste-content .modal-header {
  border-bottom: 1px solid var(--glass-border);
  background: transparent;
}
.modal-teste-content .modal-title {
  color: var(--whatsapp);
  font-weight: 700;
}
.modal-teste-content .btn-close {
  filter: invert(1);
}
.modal-teste-content .modal-body {
  padding: 28px 18px 18px 18px;
}
.modal-teste-content .form-label {
  color: var(--white);
  font-weight: 500;
}
.modal-teste-content .form-control {
  background: rgba(255,255,255,0.08);
  border: 1.5px solid var(--glass-border);
  color: var(--white);
  border-radius: 12px;
  font-size: 1rem;
  margin-bottom: 10px;
}
.modal-teste-content .form-control:focus {
  border-color: var(--whatsapp);
  background: rgba(255,255,255,0.13);
  color: var(--white);
  box-shadow: 0 0 0 2px var(--whatsapp);
}
#modalTesteFeedback {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--whatsapp) !important;
}

@media (max-width: 991.98px) {
  .plan-modern-card,
  .plan-modern-card.popular.plan-modern-card-popular {
    min-height: 0;
    padding: 28px 12px 22px 12px;
    height: auto;
    transform: none;
  }
  .plan-modern-popular-info {
    top: -18px;
    font-size: 0.95rem;
    padding: 6px 14px;
  }
}
@media (max-width: 576px) {
  .plan-modern-card,
  .plan-modern-card.popular.plan-modern-card-popular {
    padding: 18px 6px 16px 6px;
    min-height: 0;
  }
  .plan-modern-header h3 {
    font-size: 1.1rem;
  }
  .plan-modern-header i {
    font-size: 2rem;
  }
  .btn-modern-cta {
    font-size: 1rem;
    padding: 11px 0;
  }
  .plan-modern-popular-info {
    top: -10px;
    font-size: 0.9rem;
    padding: 5px 10px;
  }
}

/* Correção do selo 'Mais escolhido' nos cards de planos */
.plan-modern-popular-info {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--whatsapp);
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  padding: 7px 22px;
  border-radius: 18px;
  box-shadow: 0 2px 8px rgba(37,211,102,0.13);
  letter-spacing: 1px;
  z-index: 10;
  text-align: center;
  margin-bottom: 0;
  width: max-content;
  pointer-events: none;
}
.col-md-4.d-flex {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.plan-modern-card,
.plan-modern-card.popular.plan-modern-card-popular {
  flex: 1 1 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 440px;
  height: 100%;
  margin-top: 18px;
}
.plan-modern-card.popular.plan-modern-card-popular {
  min-height: 500px;
  padding-top: 54px;
  z-index: 2;
}
@media (max-width: 991.98px) {
  .plan-modern-popular-info {
    top: -18px;
    font-size: 0.95rem;
    padding: 6px 14px;
  }
  .plan-modern-card,
  .plan-modern-card.popular.plan-modern-card-popular {
    min-height: 0;
    height: auto;
    margin-top: 12px;
  }
}
@media (max-width: 576px) {
  .plan-modern-popular-info {
    top: -10px;
    font-size: 0.9rem;
    padding: 5px 10px;
  }
  .plan-modern-card,
  .plan-modern-card.popular.plan-modern-card-popular {
    margin-top: 8px;
  }
}

/* === CLIENTES EMPRESAS (Marquee) === */
.clientes-empresas-section {
  padding-top: 32px;
  padding-bottom: 32px;
  box-shadow: 0 -18px 48px -18px rgba(24,28,35,0.10);
  position: relative;
  z-index: 3;
}
.clientes-empresas-title {
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}
.clientes-empresas-stars i {
  color: #FFD600;
  font-size: 1.2rem;
  margin-right: 2px;
}
.clientes-empresas-marquee-wrapper {
  position: relative;
  height: 64px;
  min-height: 64px;
  background: transparent;
  overflow: hidden;
  width: 100%;
}
.clientes-empresas-marquee {
  display: flex;
  align-items: center;
  gap: 32px;
  animation: marquee-clientes 28s linear infinite;
  will-change: transform;
}
.clientes-empresas-marquee li {
  display: flex;
  align-items: center;
  margin-right: 32px !important;
  margin-bottom: 0 !important;
}
.clientes-empresas-marquee img {
  height: 38px;
  width: auto;
  filter: grayscale(0.2) brightness(0.98);
  opacity: 0.92;
  transition: filter 0.3s, opacity 0.3s, transform 0.3s;
  max-width: 120px;
}
.clientes-empresas-marquee img:hover {
  filter: grayscale(0) brightness(1.1) drop-shadow(0 2px 8px rgba(0,0,0,0.08));
  opacity: 1;
  transform: scale(1.07);
}
@keyframes marquee-clientes {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (max-width: 991.98px) {
  .clientes-empresas-section {
    padding-top: 18px;
    padding-bottom: 18px;
  }
  .clientes-empresas-marquee-wrapper {
    height: 48px;
    min-height: 48px;
  }
  .clientes-empresas-marquee img {
    height: 28px;
    max-width: 80px;
  }
}
@media (max-width: 576px) {
  .clientes-empresas-title {
    font-size: 1rem;
  }
  .clientes-empresas-marquee-wrapper {
    height: 38px;
    min-height: 38px;
  }
  .clientes-empresas-marquee img {
    height: 18px;
    max-width: 60px;
  }
  .clientes-empresas-marquee {
    gap: 18px;
  }
  .clientes-empresas-marquee li {
    margin-right: 18px !important;
  }
}

/* === DEPOIMENTOS MODERNOS === */
.depoimentos-modernos {
  background: #f8f9fa;
  padding-top: 80px;
  padding-bottom: 80px;
}
.depoimento-card {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  padding: 38px 28px 28px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.25s, box-shadow 0.25s;
  min-height: 340px;
  border: 1.5px solid var(--glass-border);
  position: relative;
  overflow: hidden;
  height: 100%;
  text-align: center;
}
.depoimento-card.destaque {
  border: 2.5px solid var(--whatsapp);
  box-shadow: 0 16px 48px rgba(37,211,102,0.13);
  transform: scale(1.04);
  z-index: 2;
  min-height: 380px;
  background: linear-gradient(135deg, #f8fff8 0%, #e9f7ef 100%);
}
.depoimento-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 16px 48px rgba(37,211,102,0.13);
}
.depoimento-avatar {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 18px;
  box-shadow: 0 2px 12px rgba(37,211,102,0.08);
  background: #fff;
  border: none;
}
.depoimento-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
}
.depoimento-texto {
  font-size: 1.08rem;
  color: var(--dark);
  margin-bottom: 18px;
  font-style: italic;
  line-height: 1.7;
  min-height: 80px;
}
.depoimento-nome {
  font-weight: 700;
  color: var(--whatsapp);
  font-size: 1.1rem;
  margin-bottom: 2px;
}
.depoimento-cargo {
  color: var(--gray);
  font-size: 0.98rem;
  margin-bottom: 0;
}
@media (max-width: 991.98px) {
  .depoimentos-modernos {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .depoimento-card, .depoimento-card.destaque {
    min-height: 0;
    height: auto;
    padding: 28px 12px 22px 12px;
  }
  .depoimento-avatar {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 576px) {
  .depoimentos-modernos {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .depoimento-card, .depoimento-card.destaque {
    padding: 18px 6px 16px 6px;
  }
  .depoimento-avatar {
    width: 44px;
    height: 44px;
  }
  .depoimento-texto {
    font-size: 0.98rem;
    min-height: 0;
  }
} 

/* === FAQ MODERNO === */
.faq-moderno {
  background: #f8f9fa;
  padding-top: 80px;
  padding-bottom: 80px;
}
.faq-accordion-wrapper {
  margin-top: 32px;
}
.faq-accordion .accordion-item {
  border: none;
  border-radius: 18px !important;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(37,211,102,0.06);
  margin-bottom: 18px;
  background: #fff;
  transition: box-shadow 0.3s;
}
.faq-accordion .accordion-item:last-child {
  margin-bottom: 0;
}
.faq-accordion .accordion-header {
  margin: 0;
}
.faq-accordion .accordion-button {
  font-weight: 600;
  padding: 22px 28px;
  background-color: #fff;
  color: var(--dark);
  font-size: 1.08rem;
  border: none;
  border-radius: 0 !important;
  box-shadow: none;
  transition: background 0.2s, color 0.2s;
  outline: none;
  position: relative;
}
.faq-accordion .accordion-button:not(.collapsed) {
  background: linear-gradient(90deg, var(--whatsapp) 0%, var(--purple) 100%);
  color: #fff;
  font-weight: 700;
}
.faq-accordion .accordion-button:focus {
  box-shadow: 0 0 0 2px var(--whatsapp);
  border-color: var(--whatsapp);
}
.faq-accordion .accordion-button::after {
  background-image: none;
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--whatsapp);
  font-size: 1.1rem;
  margin-left: auto;
  transition: transform 0.3s, color 0.3s;
}
.faq-accordion .accordion-button:not(.collapsed)::after {
  transform: rotate(-180deg);
  color: #fff;
}
.faq-accordion .accordion-body {
  padding: 22px 28px;
  background-color: #f8f9fa;
  color: var(--gray);
  font-size: 1.02rem;
  border-top: 1px solid var(--glass-border);
  border-radius: 0 0 18px 18px;
}
@media (max-width: 991.98px) {
  .faq-moderno {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .faq-accordion .accordion-button, .faq-accordion .accordion-body {
    padding: 16px 12px;
    font-size: 1rem;
  }
  .faq-accordion-wrapper {
    margin-top: 18px;
  }
}
@media (max-width: 576px) {
  .faq-moderno {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .faq-accordion .accordion-button, .faq-accordion .accordion-body {
    padding: 10px 6px;
    font-size: 0.97rem;
  }
}

/* === FOOTER MODERNO === */
.footer-moderno {
  background: #181c23;
  color: var(--white);
  padding-top: 0;
  padding-bottom: 0;
  font-size: 1rem;
}
.footer-moderno .footer-logo img {
  height: 36px;
  width: auto;
}
.footer-moderno .footer-desc {
  color: rgba(255,255,255,0.7);
  font-size: 1.02rem;
  margin-bottom: 0;
}
.footer-moderno .footer-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--white);
}
.footer-moderno .footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-moderno .footer-links li {
  margin-bottom: 10px;
}
.footer-moderno .footer-links li a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
  font-weight: 500;
}
.footer-moderno .footer-links li a:hover {
  color: var(--whatsapp);
  padding-left: 5px;
}
.footer-moderno .footer-social-icons {
  gap: 10px;
}
.footer-moderno .footer-social-link {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.25rem;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  text-decoration: none;
}
.footer-moderno .footer-social-link:hover {
  background: var(--whatsapp);
  color: #fff;
  transform: translateY(-3px) scale(1.08);
}
.footer-moderno .footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  font-size: 0.98rem;
  margin-top: 0;
  padding-top: 18px;
  padding-bottom: 8px;
}
.footer-moderno .footer-bottom-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  gap: 18px;
  vertical-align: middle;
}
.footer-moderno .footer-bottom-links li a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s;
  font-size: 0.98rem;
}
.footer-moderno .footer-bottom-links li a:hover {
  color: var(--whatsapp);
}
@media (max-width: 991.98px) {
  .footer-moderno .footer-logo img {
    height: 28px;
  }
  .footer-moderno .footer-title {
    font-size: 1rem;
    margin-bottom: 12px;
  }
  .footer-moderno .footer-social-link {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }
}
@media (max-width: 576px) {
  .footer-moderno .footer-logo img {
    height: 22px;
  }
  .footer-moderno .footer-title {
    font-size: 0.98rem;
  }
  .footer-moderno .footer-bottom-links {
    gap: 10px;
    font-size: 0.93rem;
  }
}

/* === INTEGRAÇÕES MODERNAS === */
.integracoes-modernas {
  background: #fff;
  padding-top: 80px;
  padding-bottom: 80px;
}
.integracao-card {
  background: #f8f9fa;
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(37,211,102,0.07);
  padding: 32px 18px 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.22s, box-shadow 0.22s, background 0.22s;
  min-height: 210px;
  border: 1.5px solid var(--glass-border);
  position: relative;
  overflow: hidden;
  height: 100%;
  text-align: center;
}
.integracao-card:hover {
  background: linear-gradient(135deg, var(--whatsapp) 0%, var(--purple) 100%);
  color: #fff;
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 8px 32px rgba(37,211,102,0.13);
}
.integracao-icon {
  font-size: 2.5rem;
  color: var(--whatsapp);
  margin-bottom: 16px;
  transition: color 0.22s;
}
.integracao-card:hover .integracao-icon {
  color: #fff;
}
.integracao-nome {
  font-weight: 700;
  font-size: 1.08rem;
  margin-bottom: 6px;
  color: var(--dark);
  transition: color 0.22s;
}
.integracao-card:hover .integracao-nome {
  color: #fff;
}
.integracao-desc {
  color: var(--gray);
  font-size: 0.98rem;
  transition: color 0.22s;
}
.integracao-card:hover .integracao-desc {
  color: #fff;
}
@media (max-width: 991.98px) {
  .integracoes-modernas {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .integracao-card {
    min-height: 0;
    height: auto;
    padding: 22px 8px 16px 8px;
  }
  .integracao-icon {
    font-size: 2rem;
  }
}
@media (max-width: 576px) {
  .integracoes-modernas {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .integracao-card {
    padding: 12px 2px 10px 2px;
  }
  .integracao-icon {
    font-size: 1.4rem;
  }
  .integracao-nome {
    font-size: 0.98rem;
  }
  .integracao-desc {
    font-size: 0.93rem;
  }
}

/* === FUNCIONALIDADES MODERNAS === */
.funcionalidades-modernas {
  background: #fff;
  padding-top: 80px;
  padding-bottom: 80px;
}
.funcionalidade-card {
  background: #f8f9fa;
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(37,211,102,0.07);
  padding: 32px 18px 24px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.22s, box-shadow 0.22s, background 0.22s;
  min-height: 210px;
  border: 1.5px solid var(--glass-border);
  position: relative;
  overflow: hidden;
  height: 100%;
  text-align: center;
}
.funcionalidade-card:hover {
  background: linear-gradient(135deg, var(--whatsapp) 0%, var(--purple) 100%);
  color: #fff;
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 8px 32px rgba(37,211,102,0.13);
}
.funcionalidade-icon {
  font-size: 2.5rem;
  color: var(--whatsapp);
  margin-bottom: 16px;
  transition: color 0.22s;
}
.funcionalidade-card:hover .funcionalidade-icon {
  color: #fff;
}
.funcionalidade-titulo {
  font-weight: 700;
  font-size: 1.08rem;
  margin-bottom: 6px;
  color: var(--dark);
  transition: color 0.22s;
}
.funcionalidade-card:hover .funcionalidade-titulo {
  color: #fff;
}
.funcionalidade-desc {
  color: var(--gray);
  font-size: 0.98rem;
  transition: color 0.22s;
}
.funcionalidade-card:hover .funcionalidade-desc {
  color: #fff;
}
@media (max-width: 991.98px) {
  .funcionalidades-modernas {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .funcionalidade-card {
    min-height: 0;
    height: auto;
    padding: 22px 8px 16px 8px;
  }
  .funcionalidade-icon {
    font-size: 2rem;
  }
}
@media (max-width: 576px) {
  .funcionalidades-modernas {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .funcionalidade-card {
    padding: 12px 2px 10px 2px;
  }
  .funcionalidade-icon {
    font-size: 1.4rem;
  }
  .funcionalidade-titulo {
    font-size: 0.98rem;
  }
  .funcionalidade-desc {
    font-size: 0.93rem;
  }
}

/* === HERO SECTION MODERNA === */
.hero-section-moderna {
  background: linear-gradient(120deg, #23263a 0%, #23263a 60%, #2e3147 100%);
  color: var(--white);
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}
.hero-section-moderna .hero-title {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 18px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-section-moderna .hero-lead {
  font-size: 1.18rem;
  color: #e9ecef;
  margin-bottom: 32px;
  max-width: 500px;
}
.hero-section-moderna .hero-video-wrapper {
  max-width: 480px;
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  overflow: hidden;
  background: #181c23;
  border: 1.5px solid var(--glass-border);
}
@media (max-width: 991.98px) {
  .hero-section-moderna {
    padding: 80px 0 40px;
    min-height: 0;
  }
  .hero-section-moderna .hero-title {
    font-size: 1.5rem;
  }
  .hero-section-moderna .hero-video-wrapper {
    max-width: 100%;
    margin-top: 32px;
  }
}

.hero-section-moderna::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 180px;
  /* Degradê mais suave, intermediário antes do branco */
  background: linear-gradient(
    to bottom,
    rgba(24,28,35,0.0) 0%,
    #23263a 40%,
    #e9ecef 90%,
    #f8f9fa 100%
  );
  z-index: 2;
  pointer-events: none;
}

/* === MODAL HERO TESTE MODERNA === */
.modal-blur .modal-dialog {
  backdrop-filter: blur(8px) saturate(120%);
  -webkit-backdrop-filter: blur(8px) saturate(120%);
}
.modal-hero-teste-content {
  background: rgba(30,32,40,0.92);
  border-radius: 22px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  border: 1.5px solid var(--glass-border);
  color: var(--white);
  animation-duration: 0.5s;
  animation-fill-mode: both;
}
.modal-hero-teste-content .modal-header {
  border-bottom: none;
  background: transparent;
  padding-bottom: 0;
}
.modal-hero-teste-content .modal-title {
  color: var(--whatsapp);
  font-weight: 700;
  font-size: 1.3rem;
}
.modal-hero-teste-content .btn-close {
  filter: invert(1);
  opacity: 0.7;
  transition: opacity 0.2s;
}
.modal-hero-teste-content .btn-close:hover {
  opacity: 1;
}
.modal-hero-teste-content .modal-body {
  padding: 28px 18px 18px 18px;
}
.modal-hero-teste-content .form-label {
  color: var(--white);
  font-weight: 500;
}
.modal-hero-teste-content .form-control {
  background: rgba(255,255,255,0.08);
  border: 1.5px solid var(--glass-border);
  color: var(--white);
  border-radius: 12px;
  font-size: 1rem;
  margin-bottom: 10px;
}
.modal-hero-teste-content .form-control:focus {
  border-color: var(--whatsapp);
  background: rgba(255,255,255,0.13);
  color: var(--white);
  box-shadow: 0 0 0 2px var(--whatsapp);
}
.modal-hero-teste-content .btn-cta {
  background: var(--gradient-primary);
  color: var(--white);
  border: none;
  border-radius: 18px;
  font-weight: 700;
  font-size: 1.08rem;
  padding: 13px 0;
  width: 100%;
  box-shadow: 0 2px 8px rgba(37,211,102,0.10);
  letter-spacing: 1.1px;
  transition: background 0.3s, color 0.3s, transform 0.2s;
}
.modal-hero-teste-content .btn-cta:hover {
  background: var(--purple-dark);
  color: var(--white);
  transform: translateY(-2px) scale(1.03);
}
#modalHeroTesteFeedback {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--whatsapp) !important;
}
@media (max-width: 991.98px) {
  .modal-hero-teste-content .modal-title {
    font-size: 1.1rem;
  }
  .modal-hero-teste-content .modal-body {
    padding: 18px 8px 12px 8px;
  }
}
@media (max-width: 576px) {
  .modal-hero-teste-content .modal-title {
    font-size: 1rem;
  }
  .modal-hero-teste-content .modal-body {
    padding: 10px 2px 8px 2px;
  }
}

@media (max-width: 576px) {
  .hero-section-moderna .hero-title {
    margin-top: 38px;
  }
}
.hero-section-moderna .hero-video-wrapper {
  max-width: 600px;
}
@media (max-width: 991.98px) {
  .hero-section-moderna .hero-video-wrapper {
    max-width: 100%;
  }
}

.input-group.input-group-phone {
  position: relative;
}
.input-group.input-group-phone .input-group-text {
  background: #fff;
  border: 1.5px solid var(--glass-border);
  border-right: none;
  border-radius: 12px 0 0 12px;
  padding: 0 12px 0 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1.1rem;
  color: var(--dark);
}
.input-group.input-group-phone .input-group-text img {
  width: 22px;
  height: 16px;
  margin-right: 4px;
  border-radius: 3px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}
.input-group.input-group-phone .form-control {
  border-radius: 0 12px 12px 0;
  border-left: none;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid var(--glass-border);
  font-size: 1rem;
  color: var(--dark);
}
.input-group.input-group-phone .form-control:focus {
  border-color: var(--whatsapp);
  background: rgba(255,255,255,0.13);
  color: var(--dark);
  box-shadow: 0 0 0 2px var(--whatsapp);
}
@media (max-width: 576px) {
  .input-group.input-group-phone .input-group-text {
    font-size: 0.98rem;
    padding: 0 7px 0 4px;
  }
  .input-group.input-group-phone .form-control {
    font-size: 0.98rem;
  }
}

.modal-backdrop.show {
  background: rgba(30,32,40,0.25) !important;
  backdrop-filter: blur(6px) !important;
  -webkit-backdrop-filter: blur(6px) !important;
}