* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    background: #000000;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    width: 100%;
    max-width: 100vw;
}

/* Background animado */
.animated-background {
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

/* Orbes de gradiente animados */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    animation: float 20s ease-in-out infinite;
    opacity: 0.4;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #031bce 0%, transparent 70%);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #0017c3 0%, transparent 70%);
    bottom: -150px;
    left: -100px;
    animation-delay: 5s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(50px, -50px) scale(1.1); }
    50% { transform: translate(-30px, 30px) scale(0.9); }
    75% { transform: translate(30px, 50px) scale(1.05); }
}

/* Partículas flutuantes */
.particles {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #09c6ff;
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 15s linear infinite;
    box-shadow: 0 0 10px #09caff, 0 0 20px #007d96;
}

@keyframes particleFloat {
    0% { 
        transform: translateY(0) translateX(0) scale(0);
        opacity: 0;
    }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { 
        transform: translateY(-100vh) translateX(100px) scale(1);
        opacity: 0;
    }
}

/* Ajustes para mobile - fundo mais apagado */
@media (max-width: 768px) {
    .orb {
        opacity: 0.15; /* Reduz de 0.4 para 0.15 */
        filter: blur(80px); /* Reduz o blur */
    }
    
    .orb-1,
    .orb-2 {
        width: 400px;
        height: 400px;
    }
    
    .orb-3 {
        width: 300px;
        height: 300px;
        opacity: 0.05; /* Quase imperceptível */
    }
    
    .particle {
        opacity: 0;
        animation: particleFloatMobile 15s linear infinite;
    }
    
    @keyframes particleFloatMobile {
        0% { 
            transform: translateY(100vh) translateX(0) scale(0);
            opacity: 0;
        }
        10% { opacity: 0.3; } /* Reduz opacidade máxima */
        90% { opacity: 0.3; }
        100% { 
            transform: translateY(-100px) translateX(100px) scale(1);
            opacity: 0;
        }
    }
}

/* Para telas muito pequenas */
@media (max-width: 480px) {
    .orb {
        opacity: 0.1; /* Ainda mais apagado */
    }
    
    .orb-3 {
        display: none; /* Esconde completamente o orb central */
    }
}






/* Hero Section */
.hero {
    margin-top: 50px;
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: sans-serif;
    padding: 2rem 1rem;
    overflow-x: hidden;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    position: relative;
    
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    width: 100%;
}

/* Wrapper que controla o grid só no desktop */
.hero-grid-wrapper {
    display: contents;
}

.hero-text {
    max-width: 650px;
    text-align: left;
}

.hero-tag {
    display: inline-block;
    padding: 0.7rem 1.8rem;
    background: rgba(255, 92, 9, 0.1);
    border: 1px solid rgba(255, 92, 9, 0.3);
    border-radius: 50px;
    font-family: 'League Spartan', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #3d50fa;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero h1 {
    margin-top: 0;
    font-family: 'HK Modular', 'League Spartan', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
}

h1 .highlight {
    position: relative;
    display: inline-block;
}

.highlight-cyan {
    color: #00d4ff;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.922);
    margin-bottom: 1rem;
    font-weight: 400;
}

.hero-description {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.837);
    margin-bottom: 1rem;
    font-weight: 400;
}

.hero-description strong {
    color: rgb(255, 255, 255);
    font-weight: 600;
}

/* Planning Info Box */
.planning-info {
    margin: 2rem 0 2rem 0;
    padding: 1.5rem 1.6rem;
    background: rgba(255, 92, 9, 0.04);
    border-left: 2px solid rgba(255, 92, 9, 0.4);
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.planning-item {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
}

.item-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: rgba(255, 92, 9, 0.8);
    margin-top: 2px;
}

.planning-item strong {
    color: #ff5c09;
    font-weight: 600;
}

/* Benefits Grid */
.benefits-info {
    margin: 0 0 2.5rem 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.benefit-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    color: #210eff;
}

/* CTAs - Desktop */
.hero-cta-group {
    margin-top: 5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 0.8rem;
    max-width: 600px;
}

.hero-cta-group1 {
    margin-top: 2rem;
    display: none;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 0.8rem;
    max-width: 600px;
}

.primary-cta {
    grid-column: 1 / -1;
}

.primary-cta,
.secondary-cta,
.tertiary-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 13px 24px;
    border-radius: 60px;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    transition: 0.25s ease-in-out;
    text-decoration: none;
    white-space: nowrap;
    width: 100%;
}

.cta-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.primary-cta {
    background: linear-gradient(135deg,
    #a8faff 0%,
    #7ee9ff 40%,
    #52d6ff 75%,
    #2bbfff 100%
);
    color: #000;
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.4);
}

.primary-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 35px rgba(0, 212, 255, 0.6);
}

.secondary-cta {
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.secondary-cta:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.tertiary-cta {
    color: rgba(255, 255, 255, 0.85);
    border: 2px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.03);
}

.tertiary-cta:hover {
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

/* Hero Visual (substitui video-wrapper) */
.hero-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    width: 100%;
    max-width: 600px;
}

.image-wrapper {
    width: 100%;
    max-width: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-mockup {
    width: 80%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 212, 255, 0.3));
}

/* Info Box */
.info-box {
    margin: 0;
    padding: 1rem 1.2rem;
    background: rgba(0, 212, 255, 0.05);
    border-left: 3px solid rgba(0, 212, 255, 0.5);
    border-radius: 8px;
    width: 100%;
}

.info-highlight {
    font-size: 0.85rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.6rem;
}

.info-highlight strong {
    color: #00d4ff;
    font-weight: 700;
    font-size: 1rem;
}

.info-description {
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Additional Info */
.additional-info {
    width: 100%;
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Bottom Features */
.bottom-features {
    
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: #a7a7a7;
    font-weight: 300;
}

.badge-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    color: #00c48c;
}

/* Hero Image */
.hero-image {
    flex: 1;
    max-width: 800px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.hero-image img {
    max-width: 110%;
    height: auto;
    background: transparent;
    filter: drop-shadow(0 20px 40px rgba(0, 212, 255, 0.3));
}

/* Hero Card Stats */
.hero-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 92, 9, 0.5), transparent);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'HK Modular', 'League Spartan', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #ff5c09;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    margin: 2.5rem 0;
}

.trust-badges {
    display: flex;
    justify-content: space-around;
    align-items: center;
    opacity: 0.5;
}

.badge {
    font-family: 'League Spartan', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
}

.mobile-cta {
    display: none;
}



@media (max-width: 1300px) {

 .hero-content {
        margin-top: 30px;
       
    }

  .hero h1{
    font-size: 2.8rem;
  }

  .info-content{
    margin-top: 4rem;;
  }

}



/* Responsivo */
@media (max-width: 1024px) {
    .hero-content {
        margin-top: 80px;
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 0 2rem;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .hero h1 {
        font-size: 3rem;
        
    }
    
    .hero-visual {
        max-width: 100%;
    }
    
    .hero-cta-group {
        display: none;
    }
    
    .mobile-cta {
        display: grid;
    }

    .info-content{
    margin-top: 0.3rem;;
  }
  
   .hero-visual img{
    display: none;
   }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 4rem 1rem 3rem;
    }
    
    .hero h1 {
        font-size: 3rem;
        letter-spacing: -1px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-cta-group1 {
        grid-template-columns: 1fr;
    }
    
    .image-wrapper {
        max-width: 100%;
    }
    
    .bottom-features {
        flex-direction: column;
        gap: 0.8rem;
    }
}




/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 20;
    padding: 1.5rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

header.scrolled {
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(255, 92, 9, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3), 0 0 80px rgba(255, 92, 9, 0.05);
    padding: 1rem 4rem;
}

.header-logo {
    height: 80px;
    transition: all 0.4s ease;
}

header.scrolled .header-logo {
    height: 70px;
}

nav {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    font-family: 'League Spartan', sans-serif;
    letter-spacing: 0.5px;
    position: relative;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #4df6ff, #4fb6fb);
    transition: width 0.3s ease;
}

nav a:hover {
    color: #3bc7ff;
}

nav a:hover::after {
    width: 100%;
}

.nav-cta {
    display: inline-block;
    padding: 10px 25px;
    color: #ffffff;
    border-radius: 60px;
    font-size: 1rem;
    font-weight: 500;
    border: solid 1px #96fffa;
    transition: 0.25s ease-in-out;
    box-shadow: 0 0 20px rgba(14, 211, 255, 0.172);
    text-decoration: none;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    color: #ffffff;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.422);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: linear-gradient(180deg, #02c0d9, #25a2eb, #3bf6ea);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Logo Animation Container */
.logo-animation-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    overflow: hidden;
}

.animated-logo-svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    opacity: 0.12;
}

.logo-part {
    opacity: 1;
    transition: transform 1.2s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.8s ease;
    transform-origin: center;
}

/* Content Section */
.content {
    min-height: 100vh;
    padding: 4rem 2rem;
    color: rgba(255, 255, 255, 0.649);
    font-family: sans-serif;
}

.content h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 0.9rem;
    opacity: 0.5;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

















/* ========================================
   RESPONSIVE - MOBILE (768px)
   ======================================== */
@media (max-width: 768px) {
    /* Garantir que nada estoure */
    body, html {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
    }

    /* Header Mobile */
    header {
        padding: 1rem 1.5rem;
        width: 100%;
    }

    header.scrolled {
        padding: 0.8rem 1.5rem;
    }

    .header-logo {
        height: 60px;
    }

    header.scrolled .header-logo {
        height: 55px;
    }

    /* Hamburger Menu */
    .hamburger {
        display: flex;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.4s ease;
        border-left: 1px solid rgba(255, 92, 9, 0.2);
        z-index: 999;
    }

    nav.active {
        right: 0;
    }

    nav a {
        font-size: 1.2rem;
    }

    .nav-cta {
        padding: 12px 30px;
        font-size: 1rem;
    }

   
   


    

   

    

    /* Hero Video Section */
    .hero-video {
        width: 100%;
        max-width: 100%;
        order: 2;
        padding: 0;
    }

    .video-wrapper {
        margin-top: 0;
        width: 100%;
        max-width: 100%;
        height: 0;
        padding-bottom: 56.25%; /* Aspect ratio 16:9 */
        position: relative;
        overflow: hidden;
        border-radius: 12px;
    }

    .dentro {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
        border-radius: 12px;
    }

    /* Additional Info */
    .additional-info {
        width: 100%;
        max-width: 100%;
        margin-top: 2rem;
    }

    .info-content {
        width: 100%;
    }

    .info-box {
        padding: 1.2rem 1rem;
        margin: 1.5rem 0;
        width: 100%;
    }

    .info-highlight {
        font-size: 0.95rem;
        margin-bottom: 0.8rem;
        line-height: 1.5;
    }

    .info-highlight strong {
        font-size: 1.1rem;
    }

    .info-description {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    /* Bottom Features */
    .bottom-features {
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
        width: 100%;
        margin-top: 1rem;
    }

    .feature-badge {
        font-size: 1rem;
        justify-content: flex-start;
        gap: 0.6rem;
        padding: 0.5rem 0;
    }

    .badge-icon {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
    }

    /* Hero Image (se existir) */
    .hero-image {
        width: 100%;
        max-width: 100%;
        margin: 2rem auto 0;
        padding: 0 1rem;
        order: 3;
    }

    .hero-image img {
        max-width: 80%;
        height: auto;
        margin: 0 auto;
        display: block;
    }

    /* Hero Card */
    .hero-card {
        padding: 2rem 1.5rem;
        margin: 2rem 1rem 0;
        width: calc(100% - 2rem);
        max-width: 100%;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .trust-badges {
        flex-direction: column;
        gap: 1rem;
    }

    .badge {
        font-size: 0.85rem;
    }
}

/* ========================================
   RESPONSIVE - SMALL MOBILE (480px)
   ======================================== */
@media (max-width: 480px) {
    header {
        padding: 1rem 1rem;
    }

    .header-logo {
        height: 50px;
    }

    header.scrolled .header-logo {
        height: 45px;
    }

    nav {
        width: 80%;
    }

    /* Hero Adjustments */
    .hero {
        padding: 100px 0 2rem;
    }

    .hero-content {
        margin-top: 10px;
        padding: 0 1.2rem;
        gap: 2rem;
    }

    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-description {
        font-size: 0.98rem;
    }

    .planning-info {
        padding: 1rem;
    }

    .planning-item,
    .benefit-item {
        font-size: 0.82rem;
    }

   

    

    .info-box {
        padding: 1rem 0.9rem;
    }

    .info-highlight {
        font-size: 0.9rem;
    }

    .info-highlight strong {
        font-size: 1.05rem;
    }

    .info-description {
        font-size: 0.8rem;
    }

    .bottom-features {
        gap: 0.7rem;
        margin-left: 20px;
        
    }

    .feature-badge {
        font-size: 1rem;
    }

    .badge-icon {
        width: 14px;
        height: 14px;
    }

    .hero-image {
        padding: 0 0.5rem;
    }

    .hero-image img {
        max-width: 85%;
    }

    .hero-card {
        padding: 1.5rem 1.2rem;
        margin: 2rem 0.8rem 0;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }
}



@media (max-width: 768px) {

    /* Garante que o grid nunca ultrapasse a largura */
    .hero-cta-group {
        display: none;
        width: 100%;
        max-width: 100%;
        
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
        padding: 0;
        box-sizing: border-box;
    }

     /* Garante que o grid nunca ultrapasse a largura */
    .hero-cta-group1 {
        display: grid;
        width: 100%;
        max-width: 100%;
        
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
        padding: 0;
        box-sizing: border-box;
    }

    /* Garante que NENHUM botão estoure a largura */
    .primary-cta,
    .secondary-cta,
    .tertiary-cta {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    /* Botão principal ocupando toda a linha */
    .primary-cta {
        grid-column: 1 / -1;
    }

    /* Reduzir padding em telas muito estreitas (evita overflow) */
    .primary-cta,
    .secondary-cta,
    .tertiary-cta {
        padding-left: 12px;
        padding-right: 12px;
    }

    /* Em telas muito pequenas (< 380px) vira 1 coluna */
    @media (max-width: 380px) {
        .hero-cta-group {
            grid-template-columns: 1fr;
        }
        .primary-cta {
            grid-column: 1;
        }
    }

      /* Em telas muito pequenas (< 380px) vira 1 coluna */
    @media (max-width: 480px) {
        .hero-cta-group {
            grid-template-columns: 1fr;
        }

        .hero-cta-group1 {
            grid-template-columns: 1fr;
        }
        .primary-cta {
            grid-column: 1;
        }
    }
}


/* ========================================
   RESPONSIVE - EXTRA SMALL (380px)
   ======================================== */
@media (max-width: 380px) {
    .hero {
        padding: 90px 0 1.5rem;
    }

    .hero-content {
        padding: 0 1rem;
        gap: 1.5rem;
    }

    .hero h1 {
        font-size: 1.65rem;
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .hero-description {
        font-size: 0.82rem;
    }

    

    .planning-item,
    .benefit-item {
        font-size: 0.8rem;
    }

    .info-highlight {
        font-size: 0.88rem;
    }

    .info-description {
        font-size: 0.78rem;
    }

    .feature-badge {
        font-size: 1rem;
    }

    .hero-image img {
        max-width: 90%;
    }

    .hero-card {
        margin: 2rem 0.5rem 0;
        padding: 1.2rem 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* ========================================
   PREVENT HORIZONTAL SCROLL
   ======================================== */
@media (max-width: 768px) {
    * {
        max-width: 100vw;
    }
    
    img, iframe, video {
        max-width: 100%;
        height: auto;
    }
    
    .hero-content > * {
        max-width: 100%;
    }
}


















        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@500;600;700;800;900&display=swap');
    
   
    
   
    .faq-section {
    color: #FFFFFF;
    max-width: 960px;
    margin: 180px auto 200px;
    padding: 0 40px;
}

/* ==== TÍTULO ==== */
.faq-header {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 120px;
}

.faq-small {
    display: inline-block;
    padding: 8px 24px;
    background: linear-gradient(135deg, #00d9ff, #00fff2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 11px;
    border: solid 1px rgba(0, 217, 255, 0.4);
    border-radius: 40px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.faq-big {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    color: white;
    text-shadow: 
        4px 4px 0px #000,
        -1px -1px 0px #000,
        1px -1px 0px #000,
        -1px 1px 0px #000,
        1px 1px 0px #000;
    letter-spacing: -1px;
}

.faq-big span {
    background: linear-gradient(135deg,
    #a8faff 0%,
    #7ee9ff 40%,
    #52d6ff 75%,
    #2bbfff 100%
); ;
    position: relative;
    display: inline-block;
}



/* ACCORDION */
.faq-item {
    position: relative;
    padding: 42px 0;
    cursor: pointer;
}

.faq-item::before,
.faq-item::after {
    content: '';
    position: absolute;
    left: 50%;
    width: 100vw;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(0, 217, 255, 0.2) 15%, 
        rgba(0, 217, 255, 0.4) 50%, 
        rgba(0, 217, 255, 0.2) 85%, 
        transparent 100%);
    transform: translateX(-50%);
    transition: all 0.6s ease;
}

.faq-item::before { top: 0; }
.faq-item::after  { bottom: 0; }
.faq-item:not(.active)::before,
.faq-item:not(.active)::after { opacity: 0.4; }

.faq-item.active::before,
.faq-item.active::after {
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(0, 217, 255, 0.15) 20%,
        #00d9ff 50%,
        rgba(0, 217, 255, 0.4) 70%,
        transparent 100%);
    opacity: 1;
    animation: glowLine 4s ease-in-out infinite;
}

@keyframes glowLine {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.faq-question {
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 1.3;
    padding: 0 10px;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.4s ease;
}

.faq-question::after {
    content: '+';
    font-size: 40px;
    color: #00d9ff;
    margin-left: 40px;
    flex-shrink: 0;
    transition: transform 0.4s ease;
}

.faq-item.active .faq-question::after {
    content: '−';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 19px;
    line-height: 1.7;
    color: #e0e0e0;
    font-weight: 500;
}

.faq-answer-inner {
    padding-top: 32px;
    padding-bottom: 20px;
    opacity: 0;
    transform: translateY(-12px);
    transition: all 0.6s ease 0.2s;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 40px;
}

.faq-item.active .faq-answer-inner {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .faq-section { margin: 120px auto; padding: 0 24px; }
    .faq-big { font-size: 52px; }
    .faq-small { font-size: 12px; }
    .faq-question { font-size: 19px; }
    .faq-question::after { margin-left: 20px; font-size: 36px; }
}












    


.steps-section {
    font-family: 'HK Modular', 'League Spartan', sans-serif;
    background: #000;
    color: #fff;
    position: relative;
    overflow: hidden;
    padding: 120px 60px;
}

.steps-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Header */
.steps-header {
    text-align: center;
    margin-bottom: 80px;
}

.steps-badge {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 100px;
    color: #6360fa;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 32px;
}

.steps-header h2 {
    font-family: 'HK Modular', 'League Spartan', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
    background-clip: text;
}

.steps-header h2 span {
    color: #ffffff;
    position: relative;
    display: inline-block;
}

.steps-header h2 span::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 3px;
     background: linear-gradient(90deg, 
    #07f3ff 0%,
    #00d2ff 40%,
    rgba(0, 150, 255, 0) 100%
  );
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(33, 14, 255, 0.3);
}

.steps-header-description {
    font-size: 18px;
    color: #888;
    font-weight: 400;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* Grid Layout */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Step Card */
.step-card {
    text-align: left;
    padding: 48px 40px;
    position: relative;
    background: rgba(59, 131, 246, 0.059);
    border: 1px solid rgba(96, 157, 255, 0.139);
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.step-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        rgba(59, 130, 246, 0.5) 0%, 
        rgba(99, 102, 241, 0.5) 50%,
        rgba(59, 130, 246, 0) 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.step-card:hover::before {
    opacity: 1;
}

.step-icon {
    margin-bottom: 24px;
    opacity: 0.9;
    transition: all 0.3s ease;
   
}

.stap-svg {
    stroke:#00eaff;
    filter: drop-shadow(0 0 2px rgba(43, 226, 250, 0.35));
}



.step-number {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #60ebfa;
    margin-bottom: 16px;
    padding: 6px 16px;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 100px;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
}

.step-number-large {
    position: absolute;
    top: 40px;
    right: 30px;
    font-size: 140px;
    font-weight: 900;
    color: rgba(59, 184, 246, 0.048);
    z-index: 0;
    pointer-events: none;
    line-height: 1;
    font-family: 'HK Modular', 'League Spartan', sans-serif;
}

.step-text {
    font-size: 24px;
    line-height: 1.3;
    color: #fff;
    font-weight: 600;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.step-description {
    font-size: 16px;
    line-height: 1.6;
    color: #999;
    font-weight: 400;
    position: relative;
    z-index: 2;
}

.step-card:hover {
    background: rgba(59, 130, 246, 0.05);
    border-color: rgba(59, 130, 246, 0.15);
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.15);
}

.step-card:hover .step-icon {
    opacity: 1;
    transform: scale(1.1) rotate(5deg);
}

.step-card:hover .step-number {
    background: rgba(59, 130, 246, 0.25);
    border-color: rgba(59, 130, 246, 0.5);
}

.step-card:hover .step-description {
    color: #bbb;
}

.step-card:hover .step-number-large {
    color: rgba(59, 130, 246, 0.06);
}

/* Background Effects */
.steps-section::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -20%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    filter: blur(100px);
    pointer-events: none;
    animation: bgMove1 15s ease-in-out infinite alternate;
}

.steps-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -20%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
    filter: blur(100px);
    pointer-events: none;
    animation: bgMove2 18s ease-in-out infinite alternate;
}

@keyframes bgMove1 {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(10%, 10%);
    }
}

@keyframes bgMove2 {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(-10%, -10%);
    }
}

.highlight {
    background: linear-gradient(135deg,
    #a8faff 0%,
    #7ee9ff 40%,
    #52d6ff 75%,
    #2bbfff 100%
);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Responsive */
@media (max-width: 1024px) {
    .steps-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        gap: 24px;
    }

    .steps-header h2 {
        font-size: 48px;
    }

    .steps-section {
        padding: 80px 40px;
    }
}

@media (max-width: 768px) {
    .steps-section {
        padding: 60px 24px;
    }

    .steps-header {
        margin-bottom: 60px;
    }

    .steps-header h2 {
        font-size: 40px;
        line-height: 1.2;
    }

    .steps-header-description {
        font-size: 16px;
    }

    .step-card {
        padding: 36px 32px;
    }

    .step-icon svg {
        width: 44px;
        height: 44px;
    }

    .step-number {
        font-size: 10px;
        padding: 5px 14px;
        margin-bottom: 14px;
    }

    .step-number-large {
        font-size: 110px;
        right: 20px;
        top: 30px;
    }

    .step-text {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .step-description {
        font-size: 15px;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .steps-header h2 {
        font-size: 32px;
    }

    .steps-badge {
        font-size: 9px;
        padding: 6px 16px;
    }

    .step-card {
        padding: 32px 28px;
    }

    .step-number-large {
        font-size: 90px;
        right: 15px;
        top: 25px;
    }

    .step-text {
        font-size: 20px;
    }

    .step-description {
        font-size: 14px;
    }

    .step-icon svg {
        width: 40px;
        height: 40px;
    }
}














@keyframes drift {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            50% { transform: translate(30px, 30px) rotate(5deg); }
        }

        .container {
            max-width: 1400px;
            width: 100%;
            position: relative;
            z-index: 1;
        }

        .benefits-wrapper {
            margin-top: 50px;
            background: rgba(10, 10, 10, 0.6);
            backdrop-filter: blur(40px);
            border-radius: 40px;
            padding: 80px 60px;
            border: 1px solid rgba(255, 255, 255, 0.06);
            position: relative;
            overflow: hidden;
        }

        .benefits-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 300px;
            background: radial-gradient(ellipse at top, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
            pointer-events: none;
        }

        .header {
            text-align: center;
            margin-bottom: 80px;
            position: relative;
        }

        .header-badge {
            display: inline-block;
            padding: 8px 20px;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
            border: 1px solid rgba(59, 130, 246, 0.3);
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: #60a5fa;
            margin-bottom: 24px;
        }

        .title-beneficios {
            font-size: 2rem;
            font-weight: 700;
            background: linear-gradient(135deg, #ffffff 0%, #94a3b8 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -0.03em;
            line-height: 1.1;
            margin-bottom: 16px;
        }

        .subtitle-beneficios {
            font-size: 1.15rem;
            color: #64748b;
            font-weight: 400;
            letter-spacing: -0.01em;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 24px;
            margin-bottom: 60px;
            position: relative;
        }

        .benefit-card {
            background: linear-gradient(135deg, rgba(15, 15, 15, 0.8) 0%, rgba(20, 20, 20, 0.4) 100%);
            border: 1px solid rgba(255, 255, 255, 0.04);
            border-radius: 24px;
            padding: 15px;
            position: relative;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
            cursor: pointer;
            text-align: left;
        }

        .benefit-card::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 24px;
            padding: 1px;
            background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.5s ease;
        }

        .benefit-card:hover {
            transform: translateY(-8px);
            border-color: rgba(59, 130, 246, 0.3);
            background: linear-gradient(135deg, rgba(15, 15, 15, 0.9) 0%, rgba(25, 25, 30, 0.6) 100%);
        }

        .benefit-card:hover::before {
            opacity: 1;
        }

        .benefit-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(59, 130, 246, 0.15) 0%, transparent 50%);
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }

        .benefit-card:hover::after {
            opacity: 1;
        }

        .benefit-header {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            margin-bottom: 20px;
        }

        .icon-box {
            width: 64px;
            height: 64px;
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            flex-shrink: 0;
            
        }

        .benefit-card:hover .icon-box {
            transform: scale(1.1) rotate(5deg);
        }

       

       .icon-box svg {
    width: 26px;
    height: 26px;
    filter: drop-shadow(0 0 10px rgba(0, 124, 158, 0.305));
}


        .benefit-content h3 {
            font-size: 1rem;
            font-weight: 600;
            color: #f8fafc;
            margin-bottom: 8px;
            letter-spacing: -0.02em;
        }

        .benefit-content p {
            font-size: 0.8rem;
            color: #94a3b8;
            line-height: 1.6;
            font-weight: 400;
        }

        .guarantee-box {
           
            border-top: 1px solid rgba(59, 130, 246, 0.2);
            border-radius: 8px;
            padding: 28px 30px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

       

        

        .guarantee-content {
            position: relative;
            z-index: 1;
        }

        .guarantee-icon {
            width: 56px;
            height: 56px;
            margin: 0 auto 24px;
            background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 0 40px rgba(59, 130, 246, 0.3);
        }

        .guarantee-icon svg {
            width: 28px;
            height: 28px;
        }

        .guarantee-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #f8fafc;
            margin-bottom: 16px;
            letter-spacing: -0.02em;
        }

        .guarantee-text {
            font-size: 1.05rem;
            color: #94a3b8;
            line-height: 1.7;
            max-width: 600px;
            margin: 0 auto;
        }

        

        @media (max-width: 768px) {
            .benefits-wrapper {
                padding: 50px 30px;
                border-radius: 32px;
            }

            .title {
                font-size: 2.5rem;
            }

            .header {
                margin-bottom: 50px;
            }

           

            .benefit-card {
                padding: 28px;
            }

            .guarantee-box {
                padding: 36px 30px;
            }

            
        }

         @media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr !important;
        gap: 28px;
    }

    /* Mobile: muda para coluna e centraliza tudo */
@media (max-width: 768px) {
    .benefit-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
        margin-bottom: 24px;
    }

    /* Centraliza o ícone e dá um destaque legal */
    .icon-box {
        margin: 0 auto;
        transform: none !important; /* remove o rotate do hover no mobile se quiser */
    }

    .benefit-card:hover .icon-box {
        transform: scale(1.1) !important; /* mantém só o scale no hover */
    }

    /* Garante que o título e texto fiquem centralizados */
    .benefit-content {
        width: 100%;
    }

    .benefit-content h3 {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }

    .benefit-content p {
        font-size: 0.9rem;
        line-height: 1.65;
    }
}
}

        

          

         











 .quality-system-animated-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            overflow: hidden;
        }

        .quality-system-gradient-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.3;
            animation: qualitySystemFloat 8s infinite ease-in-out;
        }

        .quality-system-orb1 {
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(6, 182, 212, 0.4), transparent);
            top: -200px;
            left: -200px;
            animation-delay: 0s;
        }

        .quality-system-orb2 {
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(34, 197, 94, 0.3), transparent);
            bottom: -250px;
            right: -250px;
            animation-delay: 2s;
        }

        .quality-system-orb3 {
            width: 450px;
            height: 450px;
            background: radial-gradient(circle, rgba(6, 182, 212, 0.3), transparent);
            top: 50%;
            left: 50%;
            animation-delay: 4s;
        }

        @keyframes qualitySystemFloat {
            0%, 100% { transform: translate(0, 0) scale(1); }
            33% { transform: translate(50px, -50px) scale(1.1); }
            66% { transform: translate(-30px, 30px) scale(0.9); }
        }

        .quality-system-grid-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(6, 182, 212, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(6, 182, 212, 0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            z-index: 0;
        }

        .quality-system-container {
            max-width: 1500px;
            margin: 0 auto;
            padding: 120px 40px;
            position: relative;
            z-index: 1;
        }

        .quality-system-section-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 24px;
            background: rgba(6, 182, 212, 0.1);
            border: 1px solid rgba(6, 182, 212, 0.3);
            border-radius: 30px;
            color: #06b6d4;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 40px;
            animation: qualitySystemSlideDown 1s ease;
            backdrop-filter: blur(10px);
        }

        @keyframes qualitySystemSlideDown {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .quality-system-pulse-dot {
            width: 8px;
            height: 8px;
            background: #06b6d4;
            border-radius: 50%;
            animation: qualitySystemPulse 2s ease-in-out infinite;
        }

        @keyframes qualitySystemPulse {
            0%, 100% { transform: scale(1); opacity: 1; }
            50% { transform: scale(1.5); opacity: 0.5; }
        }

        .quality-system-main-title {
            font-size: 3rem;
            font-weight: 900;
            text-align: center;
            margin-bottom: 30px;
            line-height: 1.1;
            color: #ffffff;
            animation: qualitySystemTitleAppear 1s ease 0.3s both;
        }

        .highlight {
            color: #06b6d4;
        }

        @keyframes qualitySystemTitleAppear {
            from {
                opacity: 0;
                transform: translateY(30px);
                filter: blur(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
                filter: blur(0);
            }
        }

        .quality-system-subtitle {
            text-align: center;
            color: #94a3b8;
            font-size: 22px;
            margin-bottom: 100px;
            animation: qualitySystemTitleAppear 1s ease 0.5s both;
            font-weight: 300;
            letter-spacing: 0.5px;
        }

        .quality-system-comparison-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-bottom: 80px;
            perspective: 1500px;
            max-width: 1000px;
            margin-left: auto;
            margin-right: auto;
        }

        .quality-system-comparison-card {
            position: relative;
            background: rgba(15, 23, 42, 0.6);
            border-radius: 24px;
            padding: 0;
            overflow: hidden;
            border: 2px solid rgba(255, 255, 255, 0.1);
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            animation: qualitySystemCardFloat 1s ease both;
            backdrop-filter: blur(20px);
        }

        .quality-system-comparison-card:nth-child(1) {
            animation-delay: 0.4s;
        }

        .quality-system-comparison-card:nth-child(2) {
            animation-delay: 0.6s;
        }

        @keyframes qualitySystemCardFloat {
            from {
                opacity: 0;
                transform: translateY(100px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .quality-system-comparison-card:hover {
            transform: translateY(-10px) scale(1.02);
            border-color: rgba(6, 182, 212, 0.5);
        }

        .quality-system-card-header-bg {
            position: relative;
            height: 220px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .quality-system-card-header-bg::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(15, 23, 42, 0.5);
            z-index: 0;
        }

        .quality-system-comparison-card.quality-system-champion .quality-system-card-header-bg {
            background-image: url('img/bom.png');
            border-bottom: 2px solid rgba(34, 197, 94, 0.3);
        }

        .quality-system-comparison-card.quality-system-bad .quality-system-card-header-bg {
            background-image: url('img/ruim.png');
            border-bottom: 2px solid rgba(239, 68, 68, 0.3);
        }

        .quality-system-card-header-content {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }

        .quality-system-card-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 12px 28px;
            border-radius: 25px;
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            transition: all 0.4s ease;
            backdrop-filter: blur(10px);
        }

        .quality-system-card-badge.quality-system-champion {
            background: rgba(34, 197, 94, 0.15);
            color: #22c55e;
            border: 1px solid rgba(34, 197, 94, 0.3);
        }

        .quality-system-card-badge.quality-system-bad {
            background: rgba(239, 68, 68, 0.15);
            color: #ef4444;
            border: 1px solid rgba(239, 68, 68, 0.3);
        }

        .quality-system-comparison-card:hover .quality-system-card-badge {
            transform: scale(1.1);
        }

        .quality-system-icon-mega {
            width: 120px;
            height: 120px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .quality-system-icon-mega img {
            width: 80px;
            height: 80px;
            object-fit: contain;
        }

        .quality-system-card-content {
            padding: 20px 10px;
        }

        .quality-system-features-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .quality-system-feature-item {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 20px;
            background: transparent;
            border-radius: 16px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 0;
            animation: qualitySystemSlideInRight 0.6s ease forwards;
            position: relative;
        }

        .quality-system-feature-item::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 16px;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .quality-system-feature-item:hover::before {
            opacity: 1;
        }

        .quality-system-feature-item:nth-child(1) { animation-delay: 0.8s; }
        .quality-system-feature-item:nth-child(2) { animation-delay: 0.9s; }
        .quality-system-feature-item:nth-child(3) { animation-delay: 1s; }
        .quality-system-feature-item:nth-child(4) { animation-delay: 1.1s; }

        @keyframes qualitySystemSlideInRight {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .quality-system-feature-item:hover {
            transform: translateX(10px);
            border-color: var(--hover-color);
            background: transparent;
        }

        .quality-system-comparison-card.quality-system-champion .quality-system-feature-item:hover {
            --hover-color: rgba(34, 197, 94, 0.5);
        }

        .quality-system-comparison-card.quality-system-bad .quality-system-feature-item:hover {
            --hover-color: rgba(239, 68, 68, 0.5);
        }

        .quality-system-feature-icon-wrapper {
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            position: relative;
            transition: all 0.4s ease;
            background: rgba(255, 255, 255, 0.03);
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        .quality-system-comparison-card.quality-system-champion .quality-system-feature-icon-wrapper {
            background: rgba(34, 197, 94, 0.08);
            border-color: rgba(34, 197, 94, 0.2);
        }

        .quality-system-comparison-card.quality-system-bad .quality-system-feature-icon-wrapper {
            background: rgba(239, 68, 68, 0.08);
            border-color: rgba(239, 68, 68, 0.2);
        }

        .quality-system-feature-item:hover .quality-system-feature-icon-wrapper {
            transform: scale(1.1);
        }

        .quality-system-feature-icon-wrapper svg {
            width: 24px;
            height: 24px;
            z-index: 1;
        }

        .quality-system-feature-text {
            color: #e2e8f0;
            font-size: 17px;
            font-weight: 500;
            line-height: 1.5;
        }

        .quality-system-guarantee-box {
            position: relative;
            background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(6, 182, 212, 0.05) 100%);
            border-radius: 32px;
            padding: 60px;
            display: flex;
            align-items: center;
            gap: 40px;
            border: 2px solid rgba(6, 182, 212, 0.3);
            animation: qualitySystemGuaranteeAppear 1s ease 1.2s both;
            overflow: hidden;
            backdrop-filter: blur(20px);
            transition: all 0.6s ease;
            max-width: 1000px;
            margin: 0 auto;
        }

        @keyframes qualitySystemGuaranteeAppear {
            from {
                opacity: 0;
                transform: scale(0.9);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .quality-system-guarantee-box::before {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(6, 182, 212, 0.3), transparent);
            border-radius: 50%;
            top: -100px;
            right: -100px;
            animation: qualitySystemFloat 8s infinite ease-in-out;
        }

        .quality-system-guarantee-box:hover {
            transform: translateY(-10px);
            border-color: rgba(6, 182, 212, 0.6);
        }

        .quality-system-guarantee-icon-box {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, rgba(6, 182, 212, 0.3), rgba(8, 145, 178, 0.3));
            border-radius: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            position: relative;
            transition: all 0.6s ease;
            border: 2px solid rgba(6, 182, 212, 0.4);
        }

        .quality-system-guarantee-box:hover .quality-system-guarantee-icon-box {
            transform: rotate(360deg) scale(1.15);
        }

        .quality-system-guarantee-icon-box svg {
            width: 50px;
            height: 50px;
            color: #06b6d4;
        }

        .quality-system-guarantee-text h3 {
            font-size: 32px;
            margin-bottom: 12px;
            color: #06b6d4;
            font-weight: 800;
        }

        .quality-system-guarantee-text p {
            color: #cbd5e1;
            font-size: 17px;
            line-height: 1.7;
            font-weight: 400;
        }

        @media (max-width: 1200px) {
            .quality-system-comparison-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }
        }

        @media (max-width: 768px) {
            .quality-system-container {
                padding: 80px 20px;
            }

            .quality-system-main-title {
                font-size: 2rem;
            }

            .quality-system-subtitle {
                font-size: 18px;
                margin-bottom: 60px;
            }

            .quality-system-comparison-card {
                border-radius: 20px;
            }

            .quality-system-card-header-bg {
                height: 180px;
            }

            .quality-system-icon-mega {
                width: 100px;
                height: 100px;
            }

            .quality-system-icon-mega img {
                width: 60px;
                height: 60px;
            }

            .quality-system-card-content {
                padding: 30px 20px;
            }

            .quality-system-guarantee-box {
                flex-direction: column;
                text-align: center;
                padding: 40px 30px;
            }

            .quality-system-guarantee-text h3 {
                font-size: 24px;
            }
        }












.profile-section {
    max-width: 1200px;
    width: 100%;
}

.profile-card {
    margin-top: 70px;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.08) 0%, rgba(10, 15, 20, 0.9) 100%);
    border: 1px solid rgba(0, 217, 255, 0.1);
    border-radius: 24px;
    padding: 20px 80px 20px 500px;
    position: relative;
    overflow: visible;
    min-height: 380px;
    backdrop-filter: blur(20px);
}

.profile-image-container {
  position: absolute;
  left: 50px;
  top: -90px;
  z-index: 2;
  transition: transform 0.3s ease;
}

.profile-image {
  border-radius: 20px;
  width: 360px;
  height: auto;
  object-fit: contain;
  display: block;
  box-shadow: 8px 8px 24px rgba(0, 255, 255, 0.15),
            12px 12px 32px rgba(0, 255, 255, 0.1);
transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.profile-image:hover {
  box-shadow: 10px 10px 28px rgba(0, 255, 255, 0.22),
            14px 14px 36px rgba(0, 255, 255, 0.15);
transform: translateY(-8px) scale(1.02);
filter: brightness(1.1);
}

.profile-image-container:hover {
  transform: translateX(5px);
}

.profile-content {
    position: relative;
    z-index: 1;
    padding: 10px 80px 60px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.revenue-highlight {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    border-radius: 12px;
    margin-bottom: 24px;
    border: 1px solid rgba(0, 217, 255, 0.25);
    background: rgba(0, 217, 255, 0.05);
    width: fit-content;
}

.revenue-value {
    font-size: 32px;
    font-weight: 800;
    color: #00d9ff;
    letter-spacing: -1px;
}

.revenue-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.profile-name {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
    line-height: 1.1;
}

.profile-title {
    font-size: 20px;
    color: #00d9ff;
    font-weight: 600;
    margin-bottom: 24px;
}

.profile-description {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
    max-width: 600px;
}

.profile-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    border: none;
    text-decoration: none;
}

.btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.btn-primary {
    background: #00d9ff;
    color: #000000;
    box-shadow: 0 8px 24px rgba(0, 217, 255, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 217, 255, 0.35);
    background: #00e5ff;
}

.btn-secondary {
    background: rgba(0, 217, 255, 0.06);
    color: #00d9ff;
    border: 1px solid rgba(0, 217, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(0, 217, 255, 0.12);
    border-color: rgba(0, 217, 255, 0.3);
}

/* Responsivo Mobile */
@media (max-width: 968px) {
    .profile-card {
        padding: 20px;
        margin-top: 40px;
        margin-left: 18px;
        margin-right: 18px;
        min-height: auto;
    }

    .profile-image-container {
        position: relative;
        left: 0;
        top: 0;
        margin: -20px -20px 20px -20px;
        text-align: center;
    }

    .profile-image-container::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 120px;
        background: linear-gradient(to bottom, transparent 0%, rgba(10, 15, 20, 0.9) 100%);
        pointer-events: none;
        z-index: 1;
    }

    .profile-image {
        width: 100%;
        max-width: 400px;
        height: auto;
        margin: 0 auto;
        display: block;
        position: relative;
    }

    .profile-content {
        padding: 20px;
    }

    .revenue-highlight {
        width: 100%;
        justify-content: center;
    }

    .revenue-value {
        font-size: 28px;
    }

    .profile-name {
        font-size: 36px;
        text-align: center;
    }

    .profile-title {
        font-size: 18px;
        text-align: center;
    }

    .profile-description {
        font-size: 15px;
        text-align: center;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .profile-actions {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .profile-card {
        border-radius: 20px;
    }

    .profile-name {
        font-size: 32px;
    }

    .revenue-value {
        font-size: 24px;
    }

    .revenue-label {
        font-size: 13px;
    }

    .profile-content {
        padding: 16px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}










/* Modal Overlay - Depoimentos */
.modal-overlay-depoimentos {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay-depoimentos.active-depoimentos {
    display: flex;
    opacity: 1;
}

/* Modal Container - Depoimentos */
.modal-depoimentos {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    max-width: 1100px;
    max-height: 85vh;
    background: rgba(15, 20, 25, 0.603);
    border: 1px solid rgba(0, 217, 255, 0.1);
    border-radius: 20px;
    z-index: 9999;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-depoimentos.active-depoimentos {
    display: flex;
    flex-direction: column;
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Header */
.modal-header-depoimentos {
    padding: 24px 28px;
    border-bottom: 1px solid rgba(0, 217, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title-depoimentos {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
}

.modal-close-depoimentos {
    background: rgba(0, 217, 255, 0.06);
    border: 1px solid rgba(0, 217, 255, 0.15);
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #00d9ff;
}

.modal-close-depoimentos:hover {
    background: rgba(0, 217, 255, 0.12);
    border-color: rgba(0, 217, 255, 0.3);
}

/* Body */
.modal-body-depoimentos {
    padding: 32px 28px;
    overflow-y: auto;
    flex: 1;
}

.modal-body-depoimentos::-webkit-scrollbar {
    width: 8px;
}

.modal-body-depoimentos::-webkit-scrollbar-track {
    background: rgba(0, 217, 255, 0.05);
    border-radius: 4px;
}

.modal-body-depoimentos::-webkit-scrollbar-thumb {
    background: rgba(0, 217, 255, 0.2);
    border-radius: 4px;
}

.modal-body-depoimentos::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 217, 255, 0.3);
}

/* Grid de vídeos (mantido como estava) */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.video-item {
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    line-height: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.video-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 217, 255, 0.15);
}

.video-wrapper {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #000;
    border-radius: 12px;
}

.video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsivo */
@media (max-width: 768px) {
    .modal-depoimentos {
        width: 95%;
        max-height: 90vh;
        border-radius: 16px;
    }
    .videos-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .modal-depoimentos { width: 96%; max-height: 92vh; }
    .modal-header-depoimentos { padding: 16px; }
    .modal-body-depoimentos { padding: 16px; }
}






   /* Botão de abertura */
        .tertiary-cta {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            padding: 16px 32px;
            background: rgba(6, 182, 212, 0.1);
            border: 2px solid #06b6d4;
            border-radius: 32px;
            color: #06b6d4;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .tertiary-cta:hover {
            background: rgba(6, 182, 212, 0.2);
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(6, 182, 212, 0.3);
        }

        .cta-icon {
            width: 20px;
            height: 20px;
        }

        /* Modal Overlay */
        .modal-overlay-gestor {

            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(8px);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 21;
            padding: 20px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .modal-overlay-gestor.active-gestor {
            opacity: 1;
            visibility: visible;
        }

        /* Modal Container */
        .modal-container-gestor {
            position: relative;
            background: linear-gradient(180deg, #0f1419 0%, #0a0e13 100%);
            border: 1px solid rgba(6, 182, 212, 0.2);
            border-radius: 24px;
            max-width: 450px;
            width: 100%;
            padding: 0;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
            transform: scale(0.9);
            transition: transform 0.3s ease;
            overflow: hidden;
        }

        .modal-overlay-gestor.active-gestor .modal-container-gestor {
            transform: scale(1);
        }

        /* Header do Modal */
        .modal-header-gestor {
            padding: 32px 32px 24px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            position: relative;
        }

        .modal-title-gestor {
            font-size: 24px;
            font-weight: 700;
            color: #06b6d4;
            text-align: center;
            margin-bottom: 0;
        }

        .modal-close-gestor {
            position: absolute;
            top: 24px;
            right: 24px;
            width: 32px;
            height: 32px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            color: #888;
        }

        .modal-close-gestor:hover {
            background: rgba(239, 68, 68, 0.1);
            border-color: rgba(239, 68, 68, 0.3);
            color: #ef4444;
        }

        /* Alert Box */
        .alert-box-gestor {
            margin: 24px 32px;
            padding: 20px;
            background: rgba(6, 182, 212, 0.05);
            border: 1px solid rgba(6, 182, 212, 0.2);
            border-radius: 12px;
            position: relative;
        }

        .alert-icon-gestor {
            position: absolute;
            top: 20px;
            left: 20px;
            width: 24px;
            height: 24px;
            color: #06b6d4;
        }

        .alert-content-gestor {
            padding-left: 36px;
        }

        .alert-title-gestor {
            font-size: 14px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 8px;
        }

        .alert-text-gestor {
            font-size: 13px;
            line-height: 1.6;
            color: #888;
            margin-bottom: 8px;
        }

        .alert-highlight-gestor {
            color: #06b6d4;
            font-weight: 600;
        }

        /* Form */
        .modal-form-gestor {
            padding: 0 32px 32px;
        }

        .form-group-gestor {
            margin-bottom: 20px;
        }

        .form-label-gestor {
            display: block;
            font-size: 13px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 8px;
        }

        .form-input-gestor {
            width: 100%;
            padding: 14px 16px;
            background: rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            color: #fff;
            font-size: 14px;
            transition: all 0.3s ease;
            outline: none;
        }

        .form-input-gestor:focus {
            border-color: rgba(6, 182, 212, 0.5);
            background: rgba(0, 0, 0, 0.7);
            box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
        }

        .form-input-gestor::placeholder {
            color: #555;
        }

        /* Botão de envio */
        .submit-btn-gestor {
            width: 100%;
            padding: 16px;
            background: linear-gradient(135deg, #06b6d4, #0891b2);
            border: none;
            border-radius: 12px;
            color: #fff;
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 0.5px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            text-transform: uppercase;
        }

        .submit-btn-gestor:hover:not(:disabled) {
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(6, 182, 212, 0.4);
        }

        .submit-btn-gestor:disabled {
            opacity: 0.5;
            cursor: not-allowed;
        }

        .btn-icon-gestor {
            width: 18px;
            height: 18px;
        }

        /* Responsivo */
        @media (max-width: 640px) {
            .modal-container-gestor {
                max-width: 100%;
            }

            .modal-header-gestor {
                padding: 24px 24px 20px;
            }

            .modal-title-gestor {
                font-size: 20px;
            }

            .alert-box-gestor {
                margin: 20px 24px;
                padding: 16px;
            }

            .modal-form-gestor {
                padding: 0 24px 24px;
            }
        }






        
        .whatsapp-button {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #00d9ff 0%, #00a8cc 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 20px rgba(0, 217, 255, 0.4);
            transition: all 0.3s ease;
            z-index: 1000;
            text-decoration: none;
            animation: pulse 2s infinite;
        }

        .whatsapp-button:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 30px rgba(0, 217, 255, 0.6);
        }

        .whatsapp-button svg {
            width: 32px;
            height: 32px;
            fill: #0a0a0a;
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 4px 20px rgba(0, 217, 255, 0.4);
            }
            50% {
                box-shadow: 0 4px 30px rgba(0, 217, 255, 0.7);
            }
            100% {
                box-shadow: 0 4px 20px rgba(0, 217, 255, 0.4);
            }
        }

        /* Demo content */
        .demo-content {
            max-width: 1200px;
            margin: 0 auto;
            color: white;
            text-align: center;
            padding: 100px 20px;
        }

        .demo-content h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #00d9ff 0%, #00a8cc 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .demo-content p {
            font-size: 1.2rem;
            color: #888;
            margin-bottom: 40px;
        }

        @media (max-width: 768px) {
            .whatsapp-button {
                width: 56px;
                height: 56px;
                bottom: 20px;
                right: 20px;
            }

            .whatsapp-button svg {
                width: 28px;
                height: 28px;
            }
        }