/* ========================================
   POWER PIG IPTV - CINEMATIC DESIGN
   ======================================== */

/* === ROOT VARIABLES === */
:root {
    --primary: #FF0050;
    --secondary: #00D9FF;
    --accent: #FFD700;
    --dark: #0A0A0F;
    --darker: #05050A;
    --card-bg: rgba(20, 20, 30, 0.8);
    --gradient-1: linear-gradient(135deg, #FF0050 0%, #FF4081 100%);
    --gradient-2: linear-gradient(135deg, #00D9FF 0%, #0099FF 100%);
    --gradient-hero: linear-gradient(180deg, rgba(10,10,15,0) 0%, rgba(10,10,15,1) 100%);
}

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--dark);
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    width: 100%;
    max-width: 100vw;
}

img, video, iframe {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
}

/* === CINEMATIC INTRO === */
.cinematic-intro {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--darker);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: introFadeOut 1s ease 2.5s forwards;
    pointer-events: none;
}

.intro-content {
    text-align: center;
}

.glitch-wrapper {
    font-size: clamp(3rem, 10vw, 8rem);
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 700;
}

.glitch {
    position: relative;
    color: #fff;
    animation: glitchAnimation 1s infinite;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 var(--primary);
    clip: rect(44px, 450px, 56px, 0);
    animation: glitchAnim 5s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: -2px 0 var(--secondary);
    clip: rect(44px, 450px, 56px, 0);
    animation: glitchAnim2 5s infinite linear alternate-reverse;
}

@keyframes glitchAnimation {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}

@keyframes glitchAnim {
    0% { clip: rect(10px, 9999px, 31px, 0); }
    25% { clip: rect(70px, 9999px, 71px, 0); }
    50% { clip: rect(30px, 9999px, 91px, 0); }
    75% { clip: rect(90px, 9999px, 20px, 0); }
    100% { clip: rect(60px, 9999px, 70px, 0); }
}

@keyframes glitchAnim2 {
    0% { clip: rect(65px, 9999px, 119px, 0); }
    25% { clip: rect(90px, 9999px, 80px, 0); }
    50% { clip: rect(10px, 9999px, 50px, 0); }
    75% { clip: rect(40px, 9999px, 100px, 0); }
    100% { clip: rect(80px, 9999px, 90px, 0); }
}

.intro-tagline {
    font-size: 1.5rem;
    letter-spacing: 0.5em;
    margin-top: 1rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 1s forwards;
}

@keyframes introFadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === NAVIGATION === */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.8rem 0;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-image {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 0 15px rgba(255, 0, 80, 0.5));
    transition: all 0.3s ease;
}

.logo-image:hover {
    filter: drop-shadow(0 0 25px rgba(255, 0, 80, 0.8));
    transform: scale(1.05);
}

.logo-svg {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 0 15px rgba(255, 0, 80, 0.5));
    transition: all 0.3s ease;
    cursor: pointer;
}

.logo-svg:hover {
    filter: drop-shadow(0 0 25px rgba(255, 0, 80, 0.8));
    transform: scale(1.05);
}

.logo-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 0 10px var(--primary));
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    background: var(--gradient-1);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-sub {
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.5);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

.nav-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #fff;
}

.nav-link:hover::after {
    width: 100%;
}

.btn-cta {
    background: var(--gradient-1);
    color: #fff;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    box-shadow: 0 0 20px rgba(255, 0, 80, 0.5);
    transition: all 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 30px rgba(255, 0, 80, 0.7);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* === HERO SECTION === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Parallax Layers */
.hero-layers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    animation: layerFade 15s ease-in-out infinite;
}

.hero-layer.layer-1 {
    animation-delay: 0s;
}

.hero-layer.layer-2 {
    animation-delay: 5s;
}

.hero-layer.layer-3 {
    animation-delay: 10s;
}

@keyframes layerFade {
    0%, 33.33%, 100% { opacity: 0; }
    16.66%, 50% { opacity: 1; }
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
}

/* Film Grain */
.film-grain {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="noiseFilter"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noiseFilter)"/></svg>');
    opacity: 0.03;
    z-index: 2;
    pointer-events: none;
    animation: grain 0.5s steps(10) infinite;
}

@keyframes grain {
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-5%, -5%); }
    20% { transform: translate(-10%, 5%); }
    30% { transform: translate(5%, -10%); }
    40% { transform: translate(-5%, 15%); }
    50% { transform: translate(-10%, 5%); }
    60% { transform: translate(15%, 0); }
    70% { transform: translate(0, 10%); }
    80% { transform: translate(-15%, 0); }
    90% { transform: translate(10%, 5%); }
}

/* Cinematic Overlay */
.cinematic-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.overlay-gradient {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(10,10,15,0.3) 0%, 
        rgba(10,10,15,0.7) 50%, 
        rgba(10,10,15,0.95) 100%);
}

.scanlines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
        0deg,
        rgba(0, 0, 0, 0.15),
        rgba(0, 0, 0, 0.15) 1px,
        transparent 1px,
        transparent 2px
    );
    animation: scanline 10s linear infinite;
}

@keyframes scanline {
    0% { transform: translateY(0); }
    100% { transform: translateY(10px); }
}

/* Spotlight Effect */
.spotlight {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), 
        transparent 0%, 
        rgba(10,10,15,0.3) 50%);
    z-index: 4;
    pointer-events: none;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 8rem 0 2rem 0;
}

.hero-text-wrapper {
    text-align: center;
    margin-bottom: 4rem;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.5s forwards;
}

.hero-eyebrow .line {
    width: 60px;
    height: 1px;
    background: var(--gradient-1);
}

.hero-eyebrow .text {
    font-size: 0.9rem;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.7);
}

.hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 12vw, 10rem);
    line-height: 0.9;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.title-word {
    display: inline-block;
    opacity: 0;
    animation: titleReveal 0.8s ease forwards;
}

.title-word:nth-child(1) { animation-delay: 0.7s; }
.title-word:nth-child(2) { animation-delay: 0.9s; }
.title-word:nth-child(3) { animation-delay: 1.1s; }

.highlight-word {
    background: var(--gradient-1);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

@keyframes titleReveal {
    from {
        opacity: 0;
        transform: translateY(50px) rotateX(-90deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0);
    }
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: rgba(255, 255, 255, 0.7);
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.8;
    opacity: 0;
    animation: fadeInUp 0.8s ease 1.3s forwards;
}

.hero-legal-note {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    opacity: 0;
    animation: fadeInUp 0.8s ease 1.5s forwards;
}

.hero-legal-note small {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    font-style: italic;
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 165, 0, 0.1);
    border-left: 3px solid rgba(255, 165, 0, 0.5);
    border-radius: 6px;
}

/* Hero CTA */
.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 0.8s ease 1.5s forwards;
}

.btn-hero {
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.1em;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

.btn-hero.btn-primary {
    background: var(--gradient-1);
    color: #fff;
    box-shadow: 0 0 30px rgba(255, 0, 80, 0.5);
}

.btn-hero.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(255, 0, 80, 0.7);
}

.btn-hero.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-hero.btn-outline:hover {
    border-color: var(--primary);
    background: rgba(255, 0, 80, 0.1);
}

.btn-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Hero Features */
.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 5rem;
}

.feature-box {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.feature-box:nth-child(1) { animation-delay: 1.7s; }
.feature-box:nth-child(2) { animation-delay: 1.9s; }
.feature-box:nth-child(3) { animation-delay: 2.1s; }

.feature-box:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.feature-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, var(--primary) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-box:hover .feature-glow {
    opacity: 0.1;
}

.feature-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 1.5rem;
}

.icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    border-radius: 20px;
    opacity: 0.1;
    transform: rotate(45deg);
}

.feature-icon {
    font-size: 3rem;
    position: relative;
    z-index: 1;
}

.feature-icon-svg {
    width: 64px;
    height: 64px;
    color: #fff;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 10px rgba(255, 0, 80, 0.5));
    transition: all 0.3s ease;
}

.feature-box:hover .feature-icon-svg {
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px rgba(255, 0, 80, 0.8));
}

.feature-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.feature-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

/* Scroll Indicator */
.scroll-indicator-wrapper {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    opacity: 0;
    animation: fadeInUp 0.8s ease 2.3s forwards;
}

.scroll-text {
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    margin-bottom: 1rem;
    text-align: center;
}

.scroll-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(180deg, var(--primary) 0%, transparent 100%);
    margin: 0 auto;
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.5); }
}

/* === SHOWCASE SECTION === */
.showcase {
    padding: 8rem 0;
    position: relative;
}

.section-header.cinematic {
    text-align: center;
    margin-bottom: 5rem;
}

.section-label {
    display: inline-block;
    font-size: 0.9rem;
    letter-spacing: 0.3em;
    color: var(--primary);
    margin-bottom: 1rem;
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--primary);
    border-radius: 50px;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1;
    margin-bottom: 1rem;
}

.section-title span {
    display: block;
}

.section-title .highlight {
    background: var(--gradient-1);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.showcase-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 16/9;
    cursor: pointer;
}

.showcase-card.large {
    grid-row: span 2;
    aspect-ratio: 16/18;
}

.card-image {
    position: relative;
    width: 100%;
    height: 100%;
}

.card-image.slideshow {
    position: relative;
}

.card-image.slideshow .slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.card-image.slideshow .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-image.slideshow .slide.active {
    opacity: 1;
    position: absolute;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(10,10,15,0.9) 100%);
    transition: background 0.4s ease;
}

.showcase-card:hover .card-image img {
    transform: scale(1.1);
}

.showcase-card:hover .card-overlay {
    background: linear-gradient(180deg, transparent 0%, rgba(10,10,15,0.7) 100%);
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 2rem;
    z-index: 1;
}

.card-label {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: var(--primary);
    margin-bottom: 0.5rem;
    display: block;
}

.card-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.card-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

/* === PLANOS SECTION === */
.planos {
    padding: 8rem 0;
    position: relative;
    background: linear-gradient(180deg, var(--darker) 0%, var(--dark) 100%);
}

.planos-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255, 0, 80, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.planos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.plano-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 3rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.plano-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.plano-card.featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(255, 0, 80, 0.1) 0%, var(--card-bg) 100%);
    transform: scale(1.05);
}

.plano-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: var(--gradient-1);
    padding: 0.5rem 3rem;
    transform: rotate(45deg);
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    font-weight: 700;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--primary) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.plano-card:hover .card-glow {
    opacity: 0.05;
}

.plano-header {
    text-align: center;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.plano-icon {
    margin-bottom: 1rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

/* Ícones SVG dos Planos - Mesma família visual da hero section */
.plan-icon-svg {
    position: relative;
    display: inline-block;
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    animation: planIconFloat 3s ease-in-out infinite;
}

.plan-icon-svg .icon-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 0, 80, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: planIconPulse 2s ease-in-out infinite;
}

.plan-svg-icon {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    color: var(--primary);
    filter: drop-shadow(0 0 10px rgba(255, 0, 80, 0.4));
    animation: planIconGlow 2.5s ease-in-out infinite;
    z-index: 1;
}

.plan-icon-svg.premium .plan-svg-icon {
    color: #FFD700;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.6));
}

/* Animações dos Ícones SVG dos Planos */
@keyframes planIconFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes planIconPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

@keyframes planIconGlow {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(255, 0, 80, 0.4));
    }
    50% {
        filter: drop-shadow(0 0 20px rgba(255, 0, 80, 0.8));
    }
}

/* Hover Animations nos Ícones dos Planos */
.plano-card:hover .plan-icon-svg {
    animation: planIconFloat 3s ease-in-out infinite, planIconExcited 0.8s ease;
}

.plano-card:hover .plan-svg-icon {
    animation: planIconGlow 2.5s ease-in-out infinite, planIconSpin 0.6s ease;
}

@keyframes planIconExcited {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-8px) rotate(-5deg); }
    75% { transform: translateY(-8px) rotate(5deg); }
}

@keyframes planIconSpin {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(5deg) scale(1.1); }
    100% { transform: rotate(0deg) scale(1); }
}

.plano-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.plano-price {
    margin-bottom: 2rem;
}

.price-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    line-height: 1;
    background: var(--gradient-1);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price-value sup {
    font-size: 2rem;
}

.price-currency {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.5);
    margin-left: 0.5rem;
}

.savings-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.2) 0%, rgba(0, 153, 255, 0.2) 100%);
    color: var(--secondary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-top: 0.5rem;
    border: 1px solid rgba(0, 217, 255, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 217, 255, 0.4);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 0 20px 0 rgba(0, 217, 255, 0.2);
    }
}

/* Plano Toggle Mobile */
.plano-toggle-mobile {
    display: none;
    width: 100%;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    text-align: left;
    position: relative;
}

@media (min-width: 769px) {
    .plano-toggle-mobile {
        display: none !important;
    }

    .plano-content-mobile {
        display: block !important;
        max-height: none !important;
        padding: 0 !important;
        overflow: visible !important;
    }

    .plano-card {
        padding: 3rem 2rem !important;
    }

    .plano-header {
        margin-bottom: 2rem !important;
        padding-right: 0 !important;
    }

    .plano-features {
        display: block !important;
    }

    .btn-plan {
        display: block !important;
    }

    .testimonial-card.testimonial-hidden {
        display: block !important;
    }

    .testimonials-more-wrapper {
        display: none !important;
    }
}

.plano-toggle-icon {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.6);
    transition: transform 0.3s ease, color 0.3s ease;
}

.plano-toggle-mobile.active .plano-toggle-icon {
    transform: translateY(-50%) rotate(180deg);
    color: var(--primary);
}

.plano-content-mobile {
    display: block;
}

.plano-features {
    list-style: none;
    margin-bottom: 2rem;
}

.plano-features li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.plano-features .check {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.2rem;
}

.btn-plan {
    display: block;
    width: 100%;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 0.1em;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 1;
}

.btn-plan:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
}

.btn-plan.premium {
    background: var(--gradient-1);
    border-color: transparent;
    box-shadow: 0 0 30px rgba(255, 0, 80, 0.5);
}

.btn-plan.premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 40px rgba(255, 0, 80, 0.7);
}

.trial-section {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 3rem;
    border: 2px solid var(--primary);
    max-width: 900px;
    margin: 4rem auto 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(255, 0, 80, 0.3);
    transition: all 0.4s ease;
}

.trial-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 60px rgba(255, 0, 80, 0.5);
    border-color: var(--accent);
}

.trial-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 0, 80, 0.08) 0%, transparent 70%);
    animation: rotate 15s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.trial-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
    z-index: 1;
}

.trial-icon-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: var(--gradient-1);
    border-radius: 50%;
    opacity: 0.2;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.2;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.3;
    }
}

.trial-icon {
    font-size: 5rem;
    position: relative;
    z-index: 1;
    display: inline-block;
    filter: drop-shadow(0 0 20px rgba(255, 0, 80, 0.6));
}

/* Ícone de Presente - Animação de Gratuidade */
.trial-icon-gift {
    animation: giftBounce 2s ease-in-out infinite, giftGlow 3s ease-in-out infinite;
}

@keyframes giftBounce {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(-5deg);
    }
    50% {
        transform: translateY(0) rotate(0deg);
    }
    75% {
        transform: translateY(-15px) rotate(5deg);
    }
}

@keyframes giftGlow {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(255, 0, 80, 0.6));
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(255, 0, 80, 1)) drop-shadow(0 0 60px rgba(255, 215, 0, 0.8));
    }
}

.trial-section:hover .trial-icon-gift {
    animation: giftBounce 2s ease-in-out infinite, giftGlow 3s ease-in-out infinite, giftExcited 0.6s ease;
}

@keyframes giftExcited {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    25% {
        transform: scale(1.2) rotate(-15deg);
    }
    50% {
        transform: scale(1.3) rotate(0deg);
    }
    75% {
        transform: scale(1.2) rotate(15deg);
    }
}

/* Porco com TV - Animação Principal (mantido para outras seções) */
.pig-tv {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: pigTvFloat 3s ease-in-out infinite;
}

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

.pig-tv .pig-emoji {
    display: inline-block;
    font-size: 4rem;
    animation: pigBounce 2s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(255, 0, 80, 0.7));
}

@keyframes pigBounce {
    0%, 100% { 
        transform: scale(1) rotate(-5deg);
    }
    25% { 
        transform: scale(1.1) rotate(0deg);
    }
    50% { 
        transform: scale(1.05) rotate(5deg);
    }
    75% { 
        transform: scale(1.1) rotate(0deg);
    }
}

.pig-tv .tv-emoji {
    display: inline-block;
    font-size: 3.5rem;
    animation: tvGlow 2s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(0, 217, 255, 0.7));
}

@keyframes tvGlow {
    0%, 100% { 
        transform: scale(1);
        filter: drop-shadow(0 0 15px rgba(0, 217, 255, 0.7));
    }
    50% { 
        transform: scale(1.08);
        filter: drop-shadow(0 0 25px rgba(0, 217, 255, 1));
    }
}

/* Ondas de Sinal */
.signal-waves {
    position: absolute;
    top: -10px;
    right: -20px;
    display: flex;
    gap: 5px;
}

.signal-waves .wave {
    width: 8px;
    height: 20px;
    background: var(--gradient-2);
    border-radius: 10px;
    opacity: 0;
    animation: waveSignal 1.5s ease-in-out infinite;
}

.signal-waves .wave:nth-child(1) {
    animation-delay: 0s;
}

.signal-waves .wave:nth-child(2) {
    height: 30px;
    animation-delay: 0.2s;
}

.signal-waves .wave:nth-child(3) {
    height: 25px;
    animation-delay: 0.4s;
}

@keyframes waveSignal {
    0%, 100% { 
        opacity: 0;
        transform: translateY(0) scaleY(0.5);
    }
    50% { 
        opacity: 1;
        transform: translateY(-5px) scaleY(1.2);
    }
}

/* Versão Pequena para Cards de Planos */
.pig-tv-small {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 3rem;
    animation: pigTvSmallFloat 3s ease-in-out infinite;
}

@keyframes pigTvSmallFloat {
    0%, 100% { 
        transform: translateY(0) rotate(-2deg);
    }
    50% { 
        transform: translateY(-8px) rotate(2deg);
    }
}

.pig-tv-small .pig-emoji {
    display: inline-block;
    font-size: 2.5rem;
    animation: pigSmallBounce 2.5s ease-in-out infinite;
}

@keyframes pigSmallBounce {
    0%, 100% { 
        transform: scale(1) rotate(-3deg);
    }
    50% { 
        transform: scale(1.1) rotate(3deg);
    }
}

.pig-tv-small .tv-emoji {
    display: inline-block;
    font-size: 2rem;
    animation: tvSmallGlow 2s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.6));
}

@keyframes tvSmallGlow {
    0%, 100% { 
        transform: scale(1);
        filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.6));
    }
    50% { 
        transform: scale(1.05);
        filter: drop-shadow(0 0 20px rgba(0, 217, 255, 0.9));
    }
}

.trial-content {
    position: relative;
    z-index: 1;
}

.trial-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    background: var(--gradient-1);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { 
        filter: drop-shadow(0 0 5px rgba(255, 0, 80, 0.5));
    }
    50% { 
        filter: drop-shadow(0 0 15px rgba(255, 0, 80, 0.8));
    }
}

.trial-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.trial-note {
    background: rgba(255, 165, 0, 0.1);
    border: 1px solid rgba(255, 165, 0, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    margin: 2rem 0;
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    text-align: left;
}

.trial-note strong {
    color: #FFA500;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.btn-trial {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--gradient-1);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 0.1em;
    font-size: 1rem;
    margin-top: 1rem;
    box-shadow: 0 0 30px rgba(255, 0, 80, 0.5);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.btn-trial:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 40px rgba(255, 0, 80, 0.8);
    border-color: var(--accent);
}

.btn-shimmer-trial {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shimmer 2.5s infinite;
}

/* === PROMOÇÕES SECTION === */
.promocoes {
    padding: 8rem 0;
    position: relative;
    background: linear-gradient(180deg, var(--dark) 0%, rgba(255, 0, 80, 0.03) 50%, var(--dark) 100%);
    overflow: hidden;
}

.promocoes-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 20%, rgba(255, 0, 80, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(0, 217, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 60%);
    pointer-events: none;
    animation: promoBgPulse 8s ease-in-out infinite;
}

@keyframes promoBgPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* === PROMOÇÕES ANIMATED ARTIFACTS === */
.promocoes-artifacts {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

/* Confetti Falling */
.confetti-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.confetti {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--primary);
    top: -20px;
    animation: confettiFall linear infinite;
    border-radius: 2px;
}

.confetti-1 {
    left: 10%;
    background: #FF0050;
    animation-duration: 4s;
    animation-delay: 0s;
    transform: rotate(45deg);
}

.confetti-2 {
    left: 20%;
    background: #00D9FF;
    animation-duration: 5s;
    animation-delay: 0.5s;
    transform: rotate(90deg);
}

.confetti-3 {
    left: 30%;
    background: #FFD700;
    animation-duration: 4.5s;
    animation-delay: 1s;
    transform: rotate(135deg);
}

.confetti-4 {
    left: 40%;
    background: #FF0050;
    animation-duration: 5.5s;
    animation-delay: 1.5s;
    transform: rotate(45deg);
}

.confetti-5 {
    left: 50%;
    background: #00D9FF;
    animation-duration: 4s;
    animation-delay: 0.3s;
    transform: rotate(90deg);
}

.confetti-6 {
    left: 60%;
    background: #FFD700;
    animation-duration: 5s;
    animation-delay: 0.8s;
    transform: rotate(135deg);
}

.confetti-7 {
    left: 70%;
    background: #FF0050;
    animation-duration: 4.5s;
    animation-delay: 1.2s;
    transform: rotate(45deg);
}

.confetti-8 {
    left: 80%;
    background: #00D9FF;
    animation-duration: 5s;
    animation-delay: 0.6s;
    transform: rotate(90deg);
}

.confetti-9 {
    left: 90%;
    background: #FFD700;
    animation-duration: 4.5s;
    animation-delay: 1.4s;
    transform: rotate(135deg);
}

.confetti-10 {
    left: 15%;
    background: #FF0050;
    animation-duration: 5.5s;
    animation-delay: 0.2s;
    transform: rotate(45deg);
}

@keyframes confettiFall {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(calc(100vh + 100px)) rotate(720deg);
        opacity: 0;
    }
}

/* Floating Particles */
.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--secondary);
    opacity: 0.6;
    animation: particleFloat 8s ease-in-out infinite;
}

.particle-1 {
    left: 15%;
    top: 20%;
    background: rgba(0, 217, 255, 0.8);
    animation-duration: 6s;
    animation-delay: 0s;
}

.particle-2 {
    left: 35%;
    top: 60%;
    background: rgba(255, 0, 80, 0.8);
    animation-duration: 7s;
    animation-delay: 1s;
}

.particle-3 {
    left: 65%;
    top: 30%;
    background: rgba(255, 215, 0, 0.8);
    animation-duration: 8s;
    animation-delay: 2s;
}

.particle-4 {
    left: 85%;
    top: 70%;
    background: rgba(0, 217, 255, 0.8);
    animation-duration: 6.5s;
    animation-delay: 0.5s;
}

.particle-5 {
    left: 25%;
    top: 80%;
    background: rgba(255, 0, 80, 0.8);
    animation-duration: 7.5s;
    animation-delay: 1.5s;
}

.particle-6 {
    left: 75%;
    top: 15%;
    background: rgba(255, 215, 0, 0.8);
    animation-duration: 8.5s;
    animation-delay: 2.5s;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translate(20px, -30px) scale(1.2);
        opacity: 0.8;
    }
    50% {
        transform: translate(-15px, -50px) scale(0.8);
        opacity: 1;
    }
    75% {
        transform: translate(25px, -20px) scale(1.1);
        opacity: 0.7;
    }
}

/* Sparkles/Stars */
.sparkles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.sparkle {
    position: absolute;
    font-size: 1.5rem;
    animation: sparkleTwinkle 3s ease-in-out infinite;
    filter: drop-shadow(0 0 8px currentColor);
}

.sparkle-1 {
    left: 12%;
    top: 25%;
    color: #FFD700;
    animation-duration: 2.5s;
    animation-delay: 0s;
}

.sparkle-2 {
    left: 45%;
    top: 15%;
    color: #00D9FF;
    animation-duration: 3s;
    animation-delay: 0.5s;
}

.sparkle-3 {
    left: 78%;
    top: 35%;
    color: #FFD700;
    animation-duration: 2.8s;
    animation-delay: 1s;
}

.sparkle-4 {
    left: 22%;
    top: 65%;
    color: #FF0050;
    animation-duration: 3.2s;
    animation-delay: 1.5s;
}

.sparkle-5 {
    left: 58%;
    top: 75%;
    color: #00D9FF;
    animation-duration: 2.7s;
    animation-delay: 0.3s;
}

.sparkle-6 {
    left: 88%;
    top: 55%;
    color: #FFD700;
    animation-duration: 3.1s;
    animation-delay: 0.8s;
}

@keyframes sparkleTwinkle {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.4;
        filter: drop-shadow(0 0 8px currentColor);
    }
    50% {
        transform: scale(1.3) rotate(180deg);
        opacity: 1;
        filter: drop-shadow(0 0 20px currentColor);
    }
}

.promocoes-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
}

.promocoes-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1.5rem;
    background: var(--gradient-1);
    border-radius: 50px;
    margin: 0 auto 2rem;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    box-shadow: 0 0 30px rgba(255, 0, 80, 0.6);
    animation: badgePulse 2s ease-in-out infinite;
    display: flex;
    justify-content: center;
}

@keyframes badgePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 30px rgba(255, 0, 80, 0.6);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 50px rgba(255, 0, 80, 0.9);
    }
}

.badge-icon {
    font-size: 1.2rem;
    animation: giftSpin 3s ease-in-out infinite;
}

@keyframes giftSpin {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-10deg);
    }
    75% {
        transform: rotate(10deg);
    }
}

.badge-text {
    color: #fff;
}

.promocoes-content {
    background: radial-gradient(circle at 0 0, rgba(0, 217, 255, 0.1), transparent 60%),
                radial-gradient(circle at 100% 100%, rgba(255, 0, 80, 0.1), transparent 60%),
                rgba(15, 15, 25, 0.95);
    border: 2px solid rgba(255, 0, 80, 0.3);
    border-radius: 24px;
    padding: 3rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
                0 0 40px rgba(255, 0, 80, 0.2);
    position: relative;
    overflow: hidden;
}

.promocoes-content::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    animation: promoShine 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes promoShine {
    0%, 100% {
        transform: rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: rotate(180deg);
        opacity: 0.6;
    }
}

.promocoes-header {
    text-align: center;
    margin-bottom: 3rem;
}

.promocoes-title {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.title-main {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    background: linear-gradient(135deg, #FF0050 0%, #FF4081 50%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    line-height: 1.1;
}

.title-sub {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--secondary);
    text-transform: uppercase;
    line-height: 1.1;
}

.promocoes-dates {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}

.date-label {
    color: rgba(255, 255, 255, 0.5);
}

.date-start,
.date-end {
    color: var(--secondary);
    font-weight: 600;
    padding: 0.4rem 0.8rem;
    background: rgba(0, 217, 255, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(0, 217, 255, 0.3);
}

.date-separator {
    color: rgba(255, 255, 255, 0.5);
}

.promocoes-body {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2.5rem;
    align-items: start;
    margin-bottom: 2.5rem;
}

.promocoes-icon-large {
    position: relative;
}

.icon-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 0, 80, 0.2), rgba(0, 217, 255, 0.1));
    border: 2px solid rgba(255, 0, 80, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    animation: iconFloat 3s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(255, 0, 80, 0.4);
}

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

.icon-circle svg {
    width: 60px;
    height: 60px;
}

.promocoes-description {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.promocoes-main-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
}

.promocoes-main-text strong {
    color: #fff;
    font-weight: 700;
}

.highlight-text {
    color: var(--secondary);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

.promocoes-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.5rem;
    background: rgba(255, 0, 80, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 0, 80, 0.2);
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.benefit-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
    box-shadow: 0 0 15px rgba(255, 0, 80, 0.5);
}

.benefit-text {
    font-weight: 500;
}

.promocoes-example {
    padding: 1.25rem 1.5rem;
    background: rgba(0, 217, 255, 0.08);
    border-left: 4px solid var(--secondary);
    border-radius: 12px;
    margin-top: 0.5rem;
}

.example-label {
    color: var(--secondary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    margin-right: 0.5rem;
}

.example-text {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

.example-text strong {
    color: var(--secondary);
    font-weight: 700;
}

.promocoes-terms-wrapper {
    margin-top: 1.5rem;
}

.promocoes-terms-toggle {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 12px;
    color: #FFD700;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    transition: all 0.3s ease;
    text-align: left;
}

.promocoes-terms-toggle:hover {
    background: rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
}

.promocoes-terms-toggle.active {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom: none;
}

.toggle-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.toggle-text {
    flex: 1;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.9rem;
}

.toggle-arrow {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.promocoes-terms-toggle.active .toggle-arrow {
    transform: rotate(180deg);
}

.promocoes-terms {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.5rem;
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-top: none;
    border-radius: 0 0 12px 12px;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.promocoes-terms.active {
    max-height: 1000px;
    padding: 1.5rem;
}

.terms-list {
    list-style: none;
    padding-left: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.terms-list li {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    line-height: 1.6;
    padding-left: 1.5rem;
    position: relative;
}

.terms-list li::before {
    content: '•';
    color: #FFD700;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.terms-list li strong {
    color: #FFD700;
    font-weight: 600;
}

.promocoes-cta {
    text-align: center;
    margin-top: 2rem;
}

.promocoes-exclusive {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.exclusive-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15), rgba(255, 0, 80, 0.15));
    border: 2px solid rgba(255, 215, 0, 0.4);
    border-radius: 50px;
    margin: 0 auto;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
    animation: exclusiveGlow 3s ease-in-out infinite;
}

@keyframes exclusiveGlow {
    0%, 100% {
        box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
        border-color: rgba(255, 215, 0, 0.4);
    }
    50% {
        box-shadow: 0 0 50px rgba(255, 215, 0, 0.6);
        border-color: rgba(255, 215, 0, 0.7);
    }
}

.exclusive-icon {
    font-size: 1.3rem;
    animation: crownFloat 2s ease-in-out infinite;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.8));
}

@keyframes crownFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-5px) rotate(-5deg);
    }
}

.exclusive-text {
    color: #FFD700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.promocoes-whatsapp {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.08), rgba(37, 211, 102, 0.12));
    border: 2px solid rgba(37, 211, 102, 0.3);
    border-radius: 20px;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    box-shadow: 0 0 30px rgba(37, 211, 102, 0.15);
    backdrop-filter: blur(10px);
}

.whatsapp-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    animation: whatsappPulse 2s ease-in-out infinite;
    filter: drop-shadow(0 0 10px rgba(37, 211, 102, 0.6));
    margin-top: 0.2rem;
}

@keyframes whatsappPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.whatsapp-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.promocoes-note-main {
    margin: 0;
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    font-weight: 500;
}

.promocoes-note-main strong {
    color: #25D366;
    font-weight: 700;
}

.promocoes-note-sub {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    font-style: italic;
}

@media (max-width: 768px) {
    .promocoes {
        padding: 5rem 0;
    }

    .promocoes-content {
        padding: 2rem 1.5rem;
    }

    .title-main {
        font-size: 2.5rem;
    }

    .title-sub {
        font-size: 1.8rem;
    }

    .promocoes-body {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .promocoes-icon-large {
        display: flex;
        justify-content: center;
    }

    .icon-circle {
        width: 80px;
        height: 80px;
    }

    .icon-circle svg {
        width: 50px;
        height: 50px;
    }

    .promocoes-dates {
        flex-direction: column;
        gap: 0.5rem;
    }

    .promocoes-benefits {
        padding: 1.25rem;
    }

    .exclusive-badge {
        padding: 0.7rem 1.5rem;
        font-size: 0.75rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .exclusive-icon {
        font-size: 1.1rem;
    }

    .promocoes-whatsapp {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        gap: 1rem;
    }

    .whatsapp-icon {
        font-size: 2rem;
        margin-top: 0;
    }

    .whatsapp-content {
        align-items: center;
    }

    .promocoes-note-main {
        font-size: 0.95rem;
        text-align: center;
    }

    .promocoes-note-sub {
        font-size: 0.85rem;
        text-align: center;
    }

    .promocoes-terms-toggle {
        padding: 0.875rem 1.25rem;
        font-size: 0.85rem;
    }

    .toggle-text {
        font-size: 0.8rem;
    }

    .promocoes-terms.active {
        padding: 1.25rem;
    }

    .terms-list {
        gap: 0.6rem;
    }

    .terms-list li {
        font-size: 0.85rem;
        padding-left: 1.25rem;
    }

    /* Reduce artifacts on mobile */
    .confetti {
        width: 8px;
        height: 8px;
    }

    .particle {
        width: 4px;
        height: 4px;
    }

    .sparkle {
    font-size: 1.2rem;
    }

    /* Hide some artifacts on very small screens */
    .confetti-5,
    .confetti-6,
    .confetti-7,
    .confetti-8,
    .confetti-9,
    .confetti-10,
    .particle-4,
    .particle-5,
    .particle-6,
    .sparkle-4,
    .sparkle-5,
    .sparkle-6 {
        display: none;
    }
}

/* === TESTIMONIALS SECTION === */
.testimonials {
    padding: 8rem 0;
    position: relative;
    background: linear-gradient(180deg, var(--dark) 0%, rgba(26, 5, 21, 0.95) 50%, var(--dark) 100%);
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 0, 80, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 217, 255, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.testimonials .container {
    position: relative;
    z-index: 1;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.testimonial-card {
    background: rgba(20, 20, 30, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 150px;
    font-family: 'Bebas Neue', sans-serif;
    color: rgba(255, 0, 80, 0.1);
    line-height: 1;
    pointer-events: none;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 0, 80, 0.05) 0%, rgba(0, 217, 255, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 0, 80, 0.3);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(255, 0, 80, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.testimonial-card:hover::after {
    opacity: 1;
}

.testimonial-card .rating {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 4px rgba(255, 215, 0, 0.3));
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.testimonial-author strong {
    color: var(--secondary);
    font-size: 1.1rem;
    font-weight: 600;
}

.testimonial-author span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Responsive Testimonials */
@media (max-width: 768px) {
    .testimonials {
        padding: 4rem 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .testimonial-card::before {
        font-size: 100px;
        top: -10px;
        left: 10px;
    }
}

/* === TECNOLOGIA SECTION === */
.tecnologia {
    padding: 8rem 0;
    position: relative;
}

.tech-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(0, 217, 255, 0.05) 0%, transparent 50%);
}

.tech-grid-overlay {
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.01) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
    background-size: 50px 50px;
}

.stats-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 6rem;
}

.stat-box {
    text-align: center;
}

.stat-number-wrapper {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 1rem;
    background: var(--gradient-1);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-symbol {
    font-size: 3rem;
    margin-left: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1rem;
}

.stat-bar {
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.stat-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gradient-1);
    animation: barFill 2s ease forwards;
}

@keyframes barFill {
    to { width: 100%; }
}

/* === SERVICE STATUS (UPTIMEROBOT) === */
/* === SERVICE STATUS WRAPPER === */
/* === SERVICE STATUS SECTION === */
/* === SERVICE STATUS SECTION === */
.service-status-section {
    padding: 8rem 0;
    position: relative;
    background: linear-gradient(180deg, var(--darker) 0%, var(--dark) 100%);
    overflow: hidden;
}

@media (max-width: 768px) {
    .service-status-section {
        padding: 4rem 0;
    }
    
    .service-status-section .section-header {
        margin-bottom: 2.5rem;
    }
}

@media (max-width: 480px) {
    .service-status-section {
        padding: 3rem 0;
    }
}

.service-status-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 217, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 0, 80, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.service-status-section .container {
    position: relative;
    z-index: 1;
}

.service-status-section .section-header {
    margin-bottom: 4rem;
}

.service-status-wrapper {
    max-width: 1200px;
    margin: 0 auto 4rem;
}

.service-status-header {
    text-align: center;
    margin-bottom: 2rem;
}

.service-status-label {
    font-size: 0.8rem;
    letter-spacing: 0.22em;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
}

.service-status-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.service-status-card {
    padding: 1.5rem;
    border-radius: 18px;
    background: radial-gradient(circle at 0 0, rgba(0, 217, 255, 0.08), transparent 60%),
                radial-gradient(circle at 100% 100%, rgba(255, 0, 80, 0.08), transparent 60%),
                rgba(15, 15, 25, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(18px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-status-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.service-status-card-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.05em;
}

.service-status-card-badge {
    font-size: 0.65rem;
    padding: 0.25rem 0.6rem;
    border-radius: 12px;
    background: rgba(0, 217, 255, 0.15);
    color: var(--secondary);
    border: 1px solid rgba(0, 217, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}

.service-status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1.2rem;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 600;
}

.service-status-ok {
    background: rgba(0, 200, 120, 0.15);
    border: 1px solid rgba(0, 255, 160, 0.4);
    color: #7CFFB5;
}

.service-status-down {
    background: rgba(255, 0, 80, 0.15);
    border: 1px solid rgba(255, 0, 80, 0.5);
    color: #FF8FA8;
}

.service-status-warn {
    background: rgba(255, 200, 0, 0.12);
    border: 1px solid rgba(255, 200, 0, 0.5);
    color: #FFE58A;
}

.service-status-loading {
    background: rgba(255, 255, 255, 0.04);
    border: 1px dashed rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.75);
}

.service-status-indicator .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    animation: statusDotPulse 1.4s ease-in-out infinite;
}

.service-status-ok .dot {
    background: #00FF96;
    box-shadow: 0 0 12px rgba(0, 255, 150, 0.8);
}

.service-status-down .dot {
    background: #FF3355;
    box-shadow: 0 0 12px rgba(255, 0, 80, 0.8);
}

.service-status-warn .dot {
    background: #FFC300;
    box-shadow: 0 0 12px rgba(255, 195, 0, 0.8);
}

.dot-2 {
    animation-delay: 0.15s;
}

.dot-3 {
    animation-delay: 0.3s;
}

@keyframes statusDotPulse {
    0%, 100% {
        transform: scale(0.9);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

.service-status-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.5rem;
}

.status-link {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.7rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.status-link::after {
    content: '↗';
    font-size: 0.75rem;
}

.status-link:hover {
    color: #7CE9FF;
}

@media (max-width: 768px) {
    .service-status-grid {
        grid-template-columns: 1fr;
    }
    
    .service-status-card {
        padding: 1.25rem 1.4rem;
    }
    
    .service-status-meta {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* === USE CASES (PERFEITO PARA) === */
.use-cases {
    margin: 6rem 0 8rem;
    padding: 4rem 0;
    position: relative;
}

.use-cases::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.use-cases-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
    position: relative;
}

.use-cases-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent);
    box-shadow: 0 0 20px var(--accent);
}

.use-case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.use-case {
    background: linear-gradient(135deg, rgba(20, 20, 30, 0.9) 0%, rgba(30, 15, 35, 0.8) 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.use-case::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top, rgba(255, 0, 80, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.use-case::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.03) 50%,
        transparent 70%
    );
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.use-case:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(255, 0, 80, 0.4);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 0 50px rgba(255, 0, 80, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.use-case:hover::before {
    opacity: 1;
}

.use-case:hover::after {
    left: 100%;
    top: 100%;
}

.use-case-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5));
    animation: floatIcon 3s ease-in-out infinite;
}

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

.use-case:nth-child(1) .use-case-icon {
    animation-delay: 0s;
}

.use-case:nth-child(2) .use-case-icon {
    animation-delay: 0.3s;
}

.use-case:nth-child(3) .use-case-icon {
    animation-delay: 0.6s;
}

.use-case:nth-child(4) .use-case-icon {
    animation-delay: 0.9s;
}

.use-case h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 1rem;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
}

.use-case p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    z-index: 1;
}

/* Responsive Use Cases */
@media (max-width: 1200px) {
    .use-case-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .use-cases {
        margin: 3rem 0 4rem;
        padding: 2rem 0;
    }
    
    .use-cases-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .use-case-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .use-case {
        padding: 2.5rem 1.5rem;
    }
    
    .use-case-icon {
        font-size: 3rem;
    }
    
    .use-case h4 {
        font-size: 1.3rem;
    }
}

.tech-features {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.tech-feature {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 3rem;
    align-items: center;
}

.tech-feature.reverse {
    grid-template-columns: 1fr 100px;
}

.tech-feature.reverse .feature-number {
    order: 2;
}

.tech-feature.reverse .feature-content {
    order: 1;
}

.feature-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 15vw, 8rem);
    line-height: 1;
    background: var(--gradient-1);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.2;
    flex-shrink: 0;
}

.feature-icon-lg-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.feature-icon-lg {
    font-size: 4rem;
    position: relative;
    z-index: 1;
    display: inline-block;
    filter: drop-shadow(0 0 15px rgba(255, 0, 80, 0.5));
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0) rotate(0deg);
    }
    25% { 
        transform: translateY(-10px) rotate(5deg);
    }
    75% { 
        transform: translateY(-5px) rotate(-5deg);
    }
}

.icon-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--gradient-1);
    border-radius: 50%;
    opacity: 0.2;
    animation: pulse-ring 2s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.feature-content h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    letter-spacing: 0.05em;
    margin-bottom: 1.5rem;
    background: var(--gradient-1);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-content p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.feature-content p strong {
    color: var(--primary);
    font-weight: 700;
}

.tech-badges {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.tech-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 0, 80, 0.1);
    border: 1px solid rgba(255, 0, 80, 0.3);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--primary);
    transition: all 0.3s ease;
    animation: badgeFadeIn 0.6s ease forwards;
    opacity: 0;
}

.tech-badge:nth-child(1) { animation-delay: 0.1s; }
.tech-badge:nth-child(2) { animation-delay: 0.2s; }
.tech-badge:nth-child(3) { animation-delay: 0.3s; }

@keyframes badgeFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tech-badge:hover {
    background: rgba(255, 0, 80, 0.2);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 0, 80, 0.3);
}

/* === CONTACTO SECTION === */
.contacto {
    padding: 8rem 0;
    position: relative;
    background: linear-gradient(180deg, var(--dark) 0%, var(--darker) 100%);
}

.contact-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 80% 50%, rgba(255, 0, 80, 0.05) 0%, transparent 50%);
}

/* Contact Info Banner */
.contact-info-banner {
    max-width: 900px;
    margin: 0 auto 3rem;
    padding: 2rem 2.5rem;
    background: linear-gradient(135deg, rgba(0, 217, 255, 0.1), rgba(255, 0, 80, 0.1));
    border: 2px solid rgba(0, 217, 255, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3),
                0 0 30px rgba(0, 217, 255, 0.2);
    position: relative;
    overflow: hidden;
    animation: contactBannerGlow 4s ease-in-out infinite;
}

@keyframes contactBannerGlow {
    0%, 100% {
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3),
                    0 0 30px rgba(0, 217, 255, 0.2);
    }
    50% {
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3),
                    0 0 50px rgba(0, 217, 255, 0.4);
    }
}

.contact-info-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 0, 80, 0.1) 0%, transparent 70%);
    animation: contactShine 8s ease-in-out infinite;
    pointer-events: none;
}

@keyframes contactShine {
    0%, 100% {
        transform: rotate(0deg);
        opacity: 0.3;
    }
    50% {
        transform: rotate(180deg);
        opacity: 0.6;
    }
}

.contact-info-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.contact-info-icon {
    font-size: 3rem;
    flex-shrink: 0;
    animation: emailFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(0, 217, 255, 0.6));
}

@keyframes emailFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-8px) scale(1.05);
    }
}

.contact-info-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-info-main {
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

.contact-info-main strong {
    color: var(--secondary);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

.contact-info-sub {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-info-sub::before {
    content: '✓';
    color: var(--secondary);
    font-weight: 700;
    font-size: 1rem;
    font-style: normal;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-form-wrapper,
.contact-info-wrapper {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Contact Image */
.contact-image-wrapper {
    position: relative;
}

.contact-image-card {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    border: 2px solid rgba(255, 0, 80, 0.3);
    box-shadow: 0 20px 60px rgba(255, 0, 80, 0.2);
    transition: all 0.4s ease;
}

.contact-image-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 0, 80, 0.6);
    box-shadow: 0 30px 80px rgba(255, 0, 80, 0.4);
}

.contact-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.contact-image-card:hover .contact-image {
    transform: scale(1.05);
}

.contact-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10, 10, 15, 0.95), transparent);
    padding: 2rem;
    transform: translateY(0);
    transition: all 0.4s ease;
}

.contact-image-text h3 {
    color: #fff;
    font-size: 1.5rem;
    margin: 0 0 0.5rem 0;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-image-text p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-field {
    position: relative;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 1rem 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--primary);
}

.form-field textarea {
    resize: vertical;
    min-height: 120px;
}

.field-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s ease;
}

.form-field input:focus ~ .field-line,
.form-field select:focus ~ .field-line,
.form-field textarea:focus ~ .field-line {
    width: 100%;
}

.btn-submit {
    position: relative;
    padding: 1.5rem;
    background: transparent;
    color: #fff;
    border: 2px solid var(--primary);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
}

.btn-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gradient-1);
    transition: width 0.3s ease;
    z-index: -1;
}

.btn-submit:hover .btn-bg {
    width: 100%;
}

.contact-info-card {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.info-icon {
    font-size: 2rem;
}

.info-text {
    display: flex;
    flex-direction: column;
}

.info-label {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.25rem;
}

.info-value {
    font-size: 1.1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.copy-email {
    background: rgba(255, 0, 80, 0.2);
    border: 1px solid rgba(255, 0, 80, 0.3);
    color: white;
    padding: 0.3rem 0.6rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.copy-email:hover {
    background: rgba(255, 0, 80, 0.4);
    transform: scale(1.1);
}

.support-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.support-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.support-icon {
    font-size: 2rem;
}

.support-text {
    display: flex;
    flex-direction: column;
}

.support-text strong {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.support-text span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* === FOOTER === */
.footer {
    padding: 4rem 0 2rem;
    position: relative;
    background: var(--darker);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gradient-1);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.logo-footer {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.logo-image-footer {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(255, 0, 80, 0.3));
}

.logo-svg-footer {
    height: 80px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(255, 0, 80, 0.3));
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    text-decoration: none;
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gradient-1);
    transform: translateY(-3px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-col h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
}

.footer-note {
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-image-card {
        max-height: 400px;
    }
    
    .contact-image {
        height: 400px;
        object-position: center;
    }
    
    .tech-feature {
        grid-template-columns: 80px 1fr;
        gap: 2rem;
    }

    .tech-feature.reverse {
        grid-template-columns: 1fr 80px;
    }

    .feature-number {
        font-size: clamp(2.5rem, 8vw, 5rem);
    }
    
    .footer-main {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding: 6rem 0 2rem 0;
    }

    .hero-title {
        font-size: clamp(2.5rem, 10vw, 4rem);
        margin-bottom: 1.5rem;
    }

    .hero-description {
        font-size: clamp(0.95rem, 3vw, 1.1rem);
        margin-bottom: 1.5rem;
    }

    .hero-legal-note {
        margin-bottom: 2rem;
    }

    .hero-legal-note small {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .btn-hero {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }

    .hero-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 3rem;
    }

    .feature-box {
        padding: 2rem 1.5rem;
    }

    .feature-title {
        font-size: 1.3rem;
    }

    .feature-desc {
        font-size: 0.9rem;
    }
    
    .logo-image,
    .logo-svg {
        height: 50px;
    }
    
    .logo-image-footer,
    .logo-svg-footer {
        height: 60px;
    }
    
    .navbar {
        padding: 0.8rem 0;
    }

    .navbar.scrolled {
        padding: 0.5rem 0;
    }

    .logo {
        gap: 0.6rem;
    }

    .logo-image,
    .logo-svg {
        height: 40px;
    }

    .logo-main {
        font-size: 1.3rem;
    }

    .logo-sub {
        font-size: 0.65rem;
    }

    .nav-menu {
        top: 60px;
        max-height: calc(100vh - 60px);
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
        gap: 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        font-size: 1rem;
        padding: 0.5rem 0;
    }

    .btn-cta {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
        margin: 0.5rem auto;
        display: block;
        width: fit-content;
    }
    
    .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);
    }

    .section-header {
        margin-bottom: 2.5rem;
        padding: 0 0.5rem;
    }

    .section-header.cinematic {
        margin-bottom: 3rem;
    }

    .section-title {
        font-size: clamp(2rem, 8vw, 3rem);
        line-height: 1.1;
    }

    .section-label {
        font-size: 0.7rem;
        padding: 0.4rem 1rem;
        letter-spacing: 0.2em;
    }

    .section-subtitle {
        font-size: 0.95rem;
        padding: 0 0.5rem;
    }
    
    .showcase {
        padding: 4rem 0;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .showcase-card.large {
        grid-row: span 1;
        aspect-ratio: 16/9;
    }

    .showcase-card {
        margin-bottom: 1rem;
    }

    .card-content {
        padding: 1.5rem;
    }

    .card-title {
        font-size: 1.5rem;
    }

    .card-desc {
        font-size: 0.9rem;
    }
    
    .planos {
        padding: 4rem 0;
    }

    .planos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .plano-card {
        padding: 0;
        overflow: visible;
    }

    .plano-toggle-mobile {
        display: block;
        padding: 1rem 1.5rem;
        width: 100%;
        position: absolute;
        top: 0;
        right: 0;
        background: none;
        border: none;
        cursor: pointer;
        z-index: 10;
    }

    .plano-toggle-icon {
        font-size: 1rem;
        color: rgba(255, 255, 255, 0.6);
        transition: transform 0.3s ease, color 0.3s ease;
    }

    .plano-toggle-mobile.active .plano-toggle-icon {
        transform: rotate(180deg);
        color: var(--primary);
    }

    .plano-header {
        margin-bottom: 0;
        position: relative;
        padding-right: 3rem;
    }

    .plano-content-mobile {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.4s ease;
        padding: 0 1.5rem;
    }

    .plano-card.active .plano-content-mobile {
        max-height: 2000px;
        padding: 0 1.5rem 1.5rem 1.5rem;
    }

    .plano-card.featured {
        transform: scale(1);
    }

    .plano-name {
        font-size: 1.3rem;
    }

    .plano-price {
        margin: 1rem 0;
    }

    .price-value {
        font-size: 2.5rem;
    }

    .plano-features {
        font-size: 0.9rem;
    }
    
    .trial-section {
        padding: 2rem 1.5rem;
        flex-direction: column;
        text-align: center;
    }
    
    .trial-title {
        font-size: 1.8rem;
    }
    
    .trial-desc {
        font-size: 0.95rem;
    }
    
    .trial-note {
        padding: 1rem;
        font-size: 0.85rem;
    }
    
    .trial-icon {
        font-size: 3.5rem;
    }
    
    .trial-icon-gift {
        font-size: 3.5rem;
    }

    .btn-trial {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }

    .testimonials {
        padding: 4rem 0;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    .testimonial-card.testimonial-hidden {
        display: none;
    }

    .testimonial-card.testimonial-visible {
        display: block;
    }

    .testimonials-more-wrapper {
        text-align: center;
        margin-top: 2rem;
        display: block;
    }

    .btn-testimonials-more {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: #fff;
        padding: 1rem 2rem;
        border-radius: 50px;
        font-weight: 600;
        font-size: 0.95rem;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        gap: 0.75rem;
        transition: all 0.3s ease;
    }

    .btn-testimonials-more:hover {
        background: rgba(255, 0, 80, 0.1);
        border-color: var(--primary);
        transform: translateY(-2px);
    }

    .more-icon {
        font-size: 0.8rem;
        transition: transform 0.3s ease;
    }

    .btn-testimonials-more.active .more-icon {
        transform: rotate(180deg);
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .stats-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .stat-number-wrapper {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .use-cases {
        margin: 3rem 0 4rem;
        padding: 2rem 0;
    }

    .use-cases-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .use-case-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .use-case {
        padding: 2rem 1.5rem;
    }

    .use-case-icon {
        font-size: 3rem;
    }

    .use-case h4 {
        font-size: 1.2rem;
    }

    .use-case p {
        font-size: 0.9rem;
    }

    .tech-features {
        gap: 3rem;
    }

    .tech-feature {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
        padding: 2rem 0;
    }

    .tech-feature.reverse {
        grid-template-columns: 1fr;
    }

    .tech-feature.reverse .feature-number {
        order: 0;
    }

    .tech-feature.reverse .feature-content {
        order: 1;
    }

    .feature-number {
        font-size: clamp(2rem, 10vw, 3rem);
        opacity: 0.15;
        margin-bottom: 0.5rem;
    }

    .feature-content {
        width: 100%;
    }

    .tech-feature h3 {
        font-size: 1.2rem;
    }

    .tech-feature p {
        font-size: 0.9rem;
    }

    .tech-badges {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .tech-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    .contact-info-banner {
        padding: 1.25rem 1rem;
        margin-bottom: 2rem;
    }

    .contact-info-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .contact-info-icon {
        font-size: 2.5rem;
    }

    .contact-info-main {
        font-size: 1rem;
    }

    .contact-info-sub {
        font-size: 0.85rem;
        justify-content: center;
    }

    .contacto {
        padding: 4rem 0;
    }

    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .btn-submit {
        width: 100%;
        padding: 1rem 2rem;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-disclaimer {
        font-size: 0.75rem;
        padding: 1rem;
    }
    
    .pig-tv .pig-emoji {
        font-size: 3rem;
    }
    
    .pig-tv .tv-emoji {
        font-size: 2.5rem;
    }
    
    .signal-waves {
        right: -15px;
    }
    
    .signal-waves .wave {
        width: 6px;
        height: 15px;
    }
    
    .signal-waves .wave:nth-child(2) {
        height: 22px;
    }
    
    .signal-waves .wave:nth-child(3) {
        height: 18px;
    }
    
    .pig-tv-small {
        font-size: 2.5rem;
        gap: 0.3rem;
    }
    
    .pig-tv-small .pig-emoji {
        font-size: 2rem;
    }
    
    .pig-tv-small .tv-emoji {
        font-size: 1.6rem;
    }
    
    .tech-badges {
        justify-content: center;
    }
    
    .tech-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
    
    .feature-icon-lg {
        font-size: 3rem;
    }
    
    .feature-content h3 {
        font-size: 1.8rem;
    }
    
    .feature-content p {
        font-size: 0.95rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}

/* === CHAT WIDGET === */
.chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.chat-button {
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(255, 0, 80, 0.5);
    transition: all 0.3s ease;
    position: relative;
    animation: chatPulse 2s ease-in-out infinite;
}

@keyframes chatPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(255, 0, 80, 0.5);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 6px 30px rgba(255, 0, 80, 0.7);
    }
}

.chat-button:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 6px 30px rgba(255, 0, 80, 0.8) !important;
}

.chat-button svg {
    width: 30px;
    height: 30px;
    color: white;
}

.chat-notification {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--accent);
    color: var(--darker);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    animation: notificationPop 0.5s ease;
}

@keyframes notificationPop {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.chat-box {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 380px;
    height: 550px;
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 2px solid rgba(255, 0, 80, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    display: none;
    flex-direction: column;
    animation: chatSlideIn 0.3s ease;
}

.chat-box.active {
    display: flex;
}

@keyframes chatSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.chat-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, rgba(255, 0, 80, 0.1) 0%, transparent 100%);
}

.chat-header-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.chat-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.pig-tv-chat {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    font-size: 1.2rem;
}

.pig-tv-chat .pig-emoji {
    font-size: 1.3rem;
}

.pig-tv-chat .tv-emoji {
    font-size: 1rem;
}

.chat-info h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    margin: 0;
}

.chat-status {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.chat-status::before {
    content: '●';
    color: #00FF00;
    margin-right: 0.5rem;
}

.chat-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.chat-close:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.chat-messages {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chat-messages::-webkit-scrollbar {
    width: 6px;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 3px;
}

.chat-message {
    display: flex;
    gap: 0.75rem;
    animation: messageSlideIn 0.3s ease;
}

@keyframes messageSlideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.message-avatar {
    width: 35px;
    height: 35px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.2rem;
}

.message-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.75rem 1rem;
    border-radius: 15px;
    border-radius: 15px 15px 15px 5px;
}

.message-content p {
    margin: 0 0 0.5rem 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.message-content p:last-of-type {
    margin-bottom: 0.5rem;
}

.message-time {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

.user-message {
    flex-direction: row-reverse;
}

.user-message .message-content {
    background: var(--gradient-1);
    border-radius: 15px 15px 5px 15px;
}

.user-message .message-avatar {
    background: var(--gradient-2);
}

.quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.quick-reply {
    background: rgba(255, 0, 80, 0.1);
    border: 1px solid rgba(255, 0, 80, 0.3);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.quick-reply:hover {
    background: rgba(255, 0, 80, 0.2);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.chat-input-wrapper {
    padding: 1rem 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    gap: 0.75rem;
}

.chat-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 0.75rem 1.25rem;
    color: white;
    font-size: 0.95rem;
    outline: none;
    transition: all 0.3s ease;
}

.chat-input:focus {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.08);
}

.chat-send {
    width: 45px;
    height: 45px;
    background: var(--gradient-1);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chat-send:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 0, 80, 0.5);
}

.chat-send svg {
    width: 20px;
    height: 20px;
    color: white;
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero-content {
        padding: 5rem 0 1.5rem 0;
    }
    
    .hero-title {
        font-size: clamp(2rem, 12vw, 2.5rem);
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .hero-legal-note {
        margin-bottom: 1.5rem;
    }

    .hero-legal-note small {
        font-size: 0.7rem;
        padding: 0.35rem 0.7rem;
        display: block;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-top: 2rem;
    }

    .feature-box {
        padding: 1.5rem 1.25rem;
    }

    .feature-title {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: clamp(1.8rem, 10vw, 2.5rem);
    }

    .section-label {
        font-size: 0.7rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .stats-showcase {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-number-wrapper {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    .service-status-card {
        padding: 1rem 1.25rem;
    }

    .service-status-card-title {
        font-size: 0.8rem;
    }

    .service-status-indicator {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }

    .status-text {
        font-size: 0.8rem;
    }

    .service-status-meta {
        font-size: 0.7rem;
    }

    .planos-grid {
        gap: 1.25rem;
    }

    .plano-card {
        padding: 1.75rem 1.25rem;
    }

    .price-value {
        font-size: 2rem;
    }

    .plano-features {
        font-size: 0.85rem;
    }

    .testimonial-card {
        padding: 1.5rem 1.25rem;
    }

    .testimonial-card.testimonial-hidden {
        display: none;
    }

    .testimonial-card.testimonial-visible {
        display: block;
    }

    .btn-testimonials-more {
        padding: 0.875rem 1.75rem;
        font-size: 0.85rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

    .contact-info-banner {
        padding: 1.25rem 1rem;
    }

    .contact-info-main {
        font-size: 0.95rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem 1.25rem;
    }

    .promocoes-content {
        padding: 1.5rem 1.25rem;
    }

    .title-main {
        font-size: 2rem;
    }

    .title-sub {
        font-size: 1.5rem;
    }

    .promocoes-main-text {
        font-size: 1rem;
    }

    .promocoes-benefits {
        padding: 1rem;
    }

    .benefit-item {
        font-size: 0.9rem;
    }
    
    .chat-widget {
        bottom: 10px;
        right: 10px;
    }
    
    .chat-box {
        width: calc(100vw - 20px);
        height: calc(100vh - 100px);
        bottom: 70px;
        right: -10px;
    }
    
    .chat-button {
        width: 55px;
        height: 55px;
    }
    
    .chat-button svg {
        width: 25px;
        height: 25px;
    }
}

/* === LEGAL ADAPTATIONS === */
.plan-duration {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.5rem;
    font-weight: 500;
}

.footer-disclaimer {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 900px;
    margin: 1.5rem auto 0;
    line-height: 1.7;
    padding: 1rem 1.5rem;
    background: rgba(255, 165, 0, 0.08);
    border-left: 3px solid rgba(255, 165, 0, 0.4);
    border-radius: 8px;
    padding: 1rem;
    background: rgba(255, 0, 80, 0.05);
    border: 1px solid rgba(255, 0, 80, 0.1);
    border-radius: 10px;
}

@media (max-width: 768px) {
    .footer-disclaimer {
        font-size: 0.7rem;
        padding: 0.75rem;
    }
}
