/* Reset e Base - Versão Dark */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores principais baseadas na logo - Versão Dark */
    --primary-pink: #ff4081;
    --primary-blue: #2196f3;
    --primary-teal: #00bcd4;
    
    /* Gradientes contidos — acento rosa da marca */
    --gradient-main: linear-gradient(135deg, #ff4081 0%, #e91e63 100%);
    --gradient-pink-blue: linear-gradient(135deg, #ff4081, #ff5a9a);
    --gradient-blue-teal: linear-gradient(135deg, #ff4081, #e91e63);
    
    /* Variações mais vibrantes para dark mode */
    --pink-light: #ff6ec7;
    --pink-dark: #e91e63;
    --blue-light: #64b5f6;
    --blue-dark: #1976d2;
    --teal-light: #4dd0e1;
    --teal-dark: #00acc1;
    
    /* Dark Theme Colors */
    --bg-primary: #0a0a0a;
    --bg-secondary: #121212;
    --bg-tertiary: #1e1e1e;
    --bg-card: #1a1a1a;
    --bg-elevated: #252525;
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #e0e0e0;
    --text-muted: #a0a0a0;
    --text-disabled: #666666;
    
    /* Border Colors */
    --border-primary: #333333;
    --border-secondary: #404040;
    --border-accent: #555555;
    
    /* Semânticas */
    --success: #4caf50;
    --warning: #ff9800;
    --error: #f44336;
    --info: var(--primary-blue);
    
    /* Shadows for dark mode */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.6);
    --radius-md: 20px;
    --radius-lg: 24px;
    --radius-pill: 999px;
    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.65;
    color: var(--text-primary);
    background: var(--bg-primary);
}

.container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

h1 {
    font-size: clamp(2.4rem, 4.4vw, 3.35rem);
    font-weight: 700;
    letter-spacing: -0.045em;
}

h2 {
    font-size: clamp(1.85rem, 3vw, 2.35rem);
}

h3 {
    font-size: 1.35rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-outline {
    padding: 12px 22px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
    cursor: pointer;
    border: none;
    font-size: 0.95rem;
    letter-spacing: 0.01em;
}

.btn-large {
    padding: 15px 28px;
    font-size: 1.02rem;
}

.btn-primary {
    background: var(--primary-pink);
    color: white;
    box-shadow: 0 8px 22px rgba(255, 64, 129, 0.28);
}

.btn-primary:hover {
    background: #ff5a9a;
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(255, 64, 129, 0.34);
}

.btn-secondary {
    background: var(--bg-elevated);
    color: var(--text-primary);
    border: 1px solid var(--border-secondary);
}

.btn-secondary:hover {
    background: var(--bg-tertiary);
    transform: translateY(-1px);
    border-color: var(--border-accent);
}

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

.btn-outline:hover {
    background: #fff;
    color: #111827;
    border-color: #fff;
    transform: translateY(-1px);
}

/* Header */
.header {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-primary);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.logo-img {
    height: 45px;
    width: auto;
    transition: all 0.3s ease;
    filter: brightness(1.1) contrast(1.1);
}

.logo:hover .logo-img {
    transform: scale(1.05);
    filter: brightness(1.2) contrast(1.2) drop-shadow(0 0 10px rgba(255, 64, 129, 0.6));
}

.logo i {
    margin-right: 0.5rem;
    font-size: 1.8rem;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-desktop ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-desktop a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-desktop a:hover {
    color: var(--primary-pink);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.theme-toggle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: transform 0.25s var(--ease-out), background 0.2s ease, color 0.2s ease;
}

.theme-toggle:hover {
    transform: translateY(-1px);
    background: #fff;
    color: #111;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-primary);
    cursor: pointer;
}

.nav-mobile {
    display: none;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-primary);
    padding: 1rem 0;
}

.nav-mobile ul {
    list-style: none;
}

.nav-mobile li {
    padding: 0.5rem 0;
}

.nav-mobile a {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Hero Section */
.hero {
    background: #090b12;
    padding: 148px 0 104px;
    overflow: hidden;
    position: relative;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.hero-mesh {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
}

.mesh-1 {
    width: 520px;
    height: 520px;
    background: #ff4081;
    top: -160px;
    right: 6%;
    opacity: 0.32;
}

.mesh-2 {
    width: 460px;
    height: 460px;
    background: #2563eb;
    bottom: -140px;
    left: -80px;
    opacity: 0.18;
}

.mesh-3 {
    width: 280px;
    height: 280px;
    background: #7c3aed;
    top: 38%;
    left: 42%;
    opacity: 0.14;
}

.hero-grain {
    position: absolute;
    inset: 0;
    opacity: 0.22;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    animation: fadeInUpDark 0.8s var(--ease-out);
}

@keyframes fadeInUpDark {
    0% {
        opacity: 0;
        transform: translateY(18px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-text h1 {
    margin-bottom: 1.35rem;
}

.highlight {
    color: #ff7eb3;
    background: none;
    -webkit-text-fill-color: #ff7eb3;
}

.hero-text p {
    font-size: 1.12rem;
    margin-bottom: 1.6rem;
    color: rgba(226, 232, 240, 0.82);
    max-width: 36rem;
}

.hero-features {
    display: flex;
    gap: 0.55rem;
    margin-bottom: 1.8rem;
    flex-wrap: wrap;
}

.feature-item {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: #f8fafc;
    font-weight: 500;
    font-size: 0.84rem;
    padding: 0.42rem 0.8rem;
    border-radius: var(--radius-pill);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
}

.feature-item i {
    color: #ff7eb3;
    font-size: 0.78rem;
}

.hero-actions {
    display: flex;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.hero-actions .btn-primary {
    box-shadow: 0 10px 28px rgba(255, 64, 129, 0.32);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: center;
    height: auto;
    animation: fadeInUpDark 0.9s var(--ease-out) 0.08s both;
}

.hero-showcase-slider {
    position: relative;
    width: 100%;
    max-width: 520px;
    height: auto;
    display: flex;
    flex-direction: column;
    flex: 0 0 auto;
    align-self: center;
}

.hero-showcase-grid {
    width: 100%;
    position: relative;
    flex: none;
}

.showcase-card {
    display: none;
    position: relative;
    background: rgba(16, 19, 28, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
    animation: showcaseInDark 0.45s var(--ease-out);
}

.showcase-card.active {
    display: flex;
    flex-direction: column;
    height: auto;
    align-self: start;
}

@keyframes showcaseInDark {
    from {
        opacity: 0;
        transform: translateX(14px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.showcase-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--primary-pink);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 0.32rem 0.65rem;
    border-radius: 999px;
    z-index: 2;
    min-height: 24px;
    display: inline-flex;
    align-items: center;
}

.showcase-media {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 auto;
    min-height: 0;
    padding: 1.45rem 1.25rem 0.85rem;
}

.showcase-media picture {
    display: block;
    line-height: 0;
    width: 100%;
    background: transparent;
}

.showcase-card img {
    width: 100%;
    height: auto;
    max-height: none;
    min-height: 0;
    object-fit: contain;
    object-position: center center;
    background: transparent;
    display: block;
}

.showcase-copy {
    flex: 0 0 auto;
    padding: 1rem 1rem 1.1rem;
}

.showcase-copy h3 {
    font-size: 1.08rem;
    margin-bottom: 0.4rem;
    color: var(--text-primary);
    min-height: 0;
    letter-spacing: -0.02em;
}

.showcase-copy p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.5;
    color: var(--text-secondary);
}

.showcase-nav {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: rgba(9, 12, 18, 0.85);
    color: #fff;
    z-index: 3;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.showcase-nav:hover {
    transform: translateY(-50%) scale(1.08);
    background: rgba(9, 12, 18, 1);
}

.showcase-nav.prev {
    left: -12px;
}

.showcase-nav.next {
    right: -12px;
}

.showcase-dots {
    display: flex;
    justify-content: center;
    gap: 0.45rem;
    margin-top: 0.85rem;
}

.showcase-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 0;
    background: rgba(255, 255, 255, 0.32);
    cursor: pointer;
    transition: all 0.2s ease;
}

.showcase-dot.active {
    width: 24px;
    border-radius: 999px;
    background: linear-gradient(90deg, #ff4081, #00b0ff);
}

@keyframes slideInRightDark {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-secondary);
    max-width: 350px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-main);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-primary);
}

.card-header i {
    font-size: 1.5rem;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-header span {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-primary);
}

.streaming-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.value {
    font-weight: 600;
    color: var(--text-primary);
}

.status-online {
    color: var(--success);
}

/* Sections */
section {
    padding: 96px 0;
}

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

.section-header h2 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Solutions Section */
.solutions {
    background: var(--bg-secondary);
}

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

.solution-card {
    background: var(--bg-card);
    padding: 1.75rem;
    border-radius: var(--radius-md);
    box-shadow: none;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: transform 0.3s var(--ease-out), border-color 0.3s ease, box-shadow 0.3s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.solution-card::before {
    display: none;
}

.solution-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
    border-color: rgba(255, 64, 129, 0.35);
}

.card-icon {
    width: 46px;
    height: 46px;
    background: rgba(255, 64, 129, 0.12);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.card-icon i {
    font-size: 1.15rem;
    color: var(--primary-pink);
}

.solution-card h3 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.solution-card.is-new h3 {
    padding-right: 7.5rem;
}

.card-new-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-pink);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.28rem 0.6rem;
    border-radius: 999px;
    z-index: 1;
}

.trust-bar {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-primary);
    padding: 1.6rem 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    text-align: center;
}

.trust-item strong {
    display: block;
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: 1.28rem;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    margin-bottom: 0.15rem;
}

.trust-item span {
    font-size: 0.86rem;
    color: var(--text-muted);
}

.solution-card p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.solution-card ul {
    list-style: none;
}

.solution-card li {
    padding: 0.25rem 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}

.solution-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

/* Plans Section */
.plans {
    background: var(--bg-primary);
}

.plans-toggle {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    background: var(--bg-elevated);
    border-radius: 50px;
    padding: 4px;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid var(--border-secondary);
}

.toggle-btn {
    flex: 1;
    padding: 12px 24px;
    border: none;
    background: transparent;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    color: var(--text-secondary);
}

.toggle-btn.active {
    background: var(--gradient-main);
    color: white;
}

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

.plan-card {
    background: var(--bg-card);
    border: 2px solid var(--border-secondary);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 64, 129, 0.35);
}

.plan-card.featured {
    border: 1px solid rgba(255, 64, 129, 0.45);
    background: var(--bg-card);
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(255, 64, 129, 0.12);
}

.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-main);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-primary);
}

.plan-header h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--text-primary);
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.currency {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-pink);
}

.period {
    color: var(--text-muted);
}

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

.plan-features li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid var(--border-primary);
    color: var(--text-secondary);
}

.plan-features i {
    color: var(--success);
    font-size: 0.9rem;
}

.plan-simulator {
    background: var(--gradient-main);
    color: white;
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.plan-simulator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, transparent 100%);
    pointer-events: none;
}

.plan-simulator h3 {
    color: white;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.plan-simulator p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

/* Sites Section */
.sites {
    background: var(--bg-secondary);
}

.sites-categories {
    display: grid;
    gap: 4rem;
}

.category h3 {
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.category .price {
    text-align: center;
    font-size: 1.2rem;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    margin-bottom: 2rem;
}

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

.site-preview {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    border: 2px solid var(--border-secondary);
    transition: all 0.3s ease;
    cursor: pointer;
}

.site-preview:hover {
    border: 2px solid transparent;
    background: linear-gradient(var(--bg-card), var(--bg-card)) padding-box, var(--gradient-main) border-box;
    transform: translateY(-3px);
    box-shadow: var(--shadow-colored);
}

.preview-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
}

.preview-image img {
    width: 100%;
    height: 158px;
    object-fit: cover;
    border-radius: 12px;
    background: #0b0e14;
    display: block;
}

.preview-image i {
    font-size: 3rem;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.preview-image span {
    font-weight: 600;
    color: var(--text-primary);
}

.news-portal {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 16px;
    margin-top: 4rem;
    text-align: center;
    border: 1px solid var(--border-secondary);
}

.portal-image {
    margin: 2rem auto;
    max-width: 400px;
}

.portal-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.portal-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.portal-option {
    background: var(--bg-elevated);
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid var(--border-secondary);
}

.portal-option.featured {
    border: 2px solid transparent;
    background: linear-gradient(var(--bg-elevated), var(--bg-elevated)) padding-box, var(--gradient-main) border-box;
}

.portal-option h4 {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.portal-option .price {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    margin-bottom: 1rem;
}

.portal-option ul {
    list-style: none;
    text-align: left;
}

.portal-option li {
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-secondary);
}

.portal-option li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

.super-app-panel {
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 16px;
    margin-top: 2rem;
    text-align: center;
    border: 1px solid var(--border-secondary);
}

.super-app-panel h2 {
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.super-app-desc {
    max-width: 42rem;
    margin: 0 auto 1.75rem;
    color: var(--text-secondary);
    font-size: 1.05rem;
}

.super-app-image {
    margin: 0 auto 1.75rem;
    max-width: 860px;
}

.super-app-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.super-app-points {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem 1.25rem;
    max-width: 720px;
    margin: 0 auto 2rem;
    text-align: left;
}

.super-app-points li {
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-secondary);
}

.super-app-points li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

/* FAQ Section */
.faq {
    background: var(--bg-primary);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border-secondary);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    background: var(--bg-card);
}

.faq-question {
    padding: 1.5rem;
    background: var(--bg-elevated);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: var(--bg-tertiary);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-primary);
}

.faq-question i {
    transition: transform 0.3s ease;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: var(--bg-card);
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: var(--text-secondary);
}

/* Contact Section */
.contact {
    background: var(--bg-secondary);
}

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

.contact-info h2 {
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.contact-info p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

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

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border-secondary);
    transition: all 0.3s ease;
}

.contact-method:hover {
    border-color: var(--border-accent);
    transform: translateY(-2px);
}

.contact-method i {
    width: 50px;
    height: 50px;
    background: var(--gradient-main);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-method h4 {
    margin: 0 0 0.25rem 0;
    color: var(--text-primary);
}

.contact-method p {
    margin: 0;
    color: var(--text-secondary);
}

.contact-form {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-secondary);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-secondary);
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: inherit;
    background: var(--bg-elevated);
    color: var(--text-primary);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.2);
}

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

/* Footer */
.footer {
    background: var(--bg-primary);
    color: var(--text-primary);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-primary);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

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

.footer-logo .logo-img {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
    filter: brightness(1.1) contrast(1.1);
}

.footer-logo:hover .logo-img {
    transform: scale(1.05);
    filter: brightness(1.2) contrast(1.2) drop-shadow(0 0 10px rgba(255, 64, 129, 0.6));
}

.footer-logo i {
    margin-right: 0.5rem;
    font-size: 1.8rem;
}

.footer-section p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--bg-elevated);
    color: var(--text-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-secondary);
}

.social-links a:hover {
    background: var(--gradient-main);
    color: white;
    transform: translateY(-2px);
    border-color: transparent;
}

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

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-bottom {
    border-top: 1px solid var(--border-primary);
    padding-top: 2rem;
    text-align: center;
    color: var(--text-muted);
}

.footer-bottom p {
    margin-bottom: 0.5rem;
    color: var(--text-muted);
}

.footer-bottom i {
    color: #e74c3c;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .portal-options {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .footer-logo .logo-img {
        height: 35px;
    }
    
    .nav-desktop {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-mobile.active {
        display: block;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        align-items: center;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-actions {
        justify-content: center;
    }

    .header-actions .btn-primary {
        display: none;
    }

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

    .solution-card.is-new h3 {
        padding-right: 0;
    }

    .hero-showcase-slider {
        max-width: 400px;
        margin: 0 auto;
        height: auto;
    }

    .hero-showcase-grid {
        flex: none;
    }

    .showcase-card.active {
        height: auto;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
    }
    
    .plan-card.featured {
        transform: none;
    }
    
    .sites-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .portal-options {
        grid-template-columns: 1fr;
    }

    .super-app-panel {
        padding: 2rem 1.25rem;
    }

    .super-app-points {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .btn-large {
        padding: 14px 24px;
        font-size: 16px;
    }
    
    .hero-features {
        flex-direction: row;
        justify-content: center;
        gap: 0.5rem;
    }

    .showcase-card img {
        max-height: none;
    }

    .showcase-nav {
        width: 34px;
        height: 34px;
    }

    .showcase-nav.prev {
        left: -6px;
    }

    .showcase-nav.next {
        right: -6px;
    }
    
    .sites-grid {
        grid-template-columns: 1fr;
    }
    
    .plan-simulator {
        padding: 2rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--primary-blue);
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 1s linear infinite;
}

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

/* Dark Mode Specific Enhancements */
.glow-effect {
    position: relative;
}

.glow-effect::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-main);
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.glow-effect:hover::before {
    opacity: 0.3;
    filter: blur(8px);
}

/* Custom Scrollbar for Dark Mode */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--border-accent);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-blue);
}

/* WhatsApp Floating Button - Dark Mode */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5), 0 0 40px rgba(37, 211, 102, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse-whatsapp-dark 2s infinite;
    border: 2px solid rgba(37, 211, 102, 0.3);
    text-decoration: none;
}

.whatsapp-float:hover {
    background: #128C7E;
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.7), 0 0 60px rgba(37, 211, 102, 0.3);
    transform: scale(1.1);
    border-color: rgba(37, 211, 102, 0.5);
}

.whatsapp-float i {
    line-height: 60px;
}

@keyframes pulse-whatsapp-dark {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5), 0 0 40px rgba(37, 211, 102, 0.2);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.8), 0 0 60px rgba(37, 211, 102, 0.4);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5), 0 0 40px rgba(37, 211, 102, 0.2);
    }
}

/* Mobile Responsive WhatsApp Button - Dark Mode */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 25px;
    }
    
    .whatsapp-float i {
        line-height: 50px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .hero-text,
    .hero-visual,
    .scroll-animate,
    .showcase-card {
        opacity: 1 !important;
        transform: none !important;
    }
}
