/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
}

.modal-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px);
    margin: 15% auto;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    width: 90%;
    max-width: 500px;
    text-align: center;
    color: #fff;
}

.close {
    color: rgba(255, 255, 255, 0.6);
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover,
.close:focus {
    color: #fff;
}

.modal-content h2 {
    margin-bottom: 1rem;
    color: #fff;
}

.modal-content p {
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.modal-link {
    color: #67e8f9;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.modal-link:hover {
    color: #a855f7;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
}

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

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

.logo-container {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem;
}

.logo-image {
    width: 210%;
    height: 210%;
    object-fit: contain;
}

.brand-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
}

/* Desktop Navigation */
.nav-menu {
    display: none;
    gap: 2rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
    text-decoration: none;
    font-weight: 500;
}

.nav-link:hover {
    color: #06b6d4;
}

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

/* Desktop Only Elements */
.desktop-only {
    display: none;
}

/* Language Button */
.lang-button {
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    color: #fff;
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.lang-button:hover {
    background: rgba(255, 255, 255, 0.1);
}

.globe-icon {
    width: 1rem;
    height: 1rem;
}

/* CTA Button */
.cta-button {
    background: #fff;
    color: #000;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-button:hover {
    background: #e5e5e5;
}

/* Mobile Menu Button */
.mobile-menu-button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 4rem;
    height: 4rem;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 0.25rem;
    transition: all 0.3s ease;
}

.hamburger-line {
    width: 2rem;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s ease;
    transform-origin: center;
    border-radius: 2px;
}

/* Hamburger animation */
.mobile-menu-button.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(0.4rem, 0.4rem);
}

.mobile-menu-button.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-button.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(0.4rem, -0.4rem);
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 999;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    padding-top: 6rem;
    display: block;
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-nav-content {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    height: calc(100% - 6rem);
}

.mobile-nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.3s ease;
}

.mobile-nav-link:hover {
    color: #67e8f9;
}

.mobile-nav-actions {
    margin-top: auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-lang-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.mobile-lang-button:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-cta-button {
    background: #fff;
    color: #000;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.mobile-cta-button:hover {
    background: #e5e5e5;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 6rem 0 4rem;
}

.hero-background {
    position: absolute;
    inset: 0;
}

/* Animated Stars */
.star {
    position: absolute;
    background: #fff;
    border-radius: 50%;
    animation: twinkle 3s infinite;
}

.star-1 { top: 20%; left: 10%; width: 2px; height: 2px; animation-delay: 0s; }
.star-2 { top: 30%; left: 20%; width: 1px; height: 1px; animation-delay: 0.5s; }
.star-3 { top: 15%; right: 25%; width: 3px; height: 3px; animation-delay: 1s; }
.star-4 { top: 40%; right: 15%; width: 2px; height: 2px; animation-delay: 1.5s; }
.star-5 { bottom: 30%; left: 15%; width: 1px; height: 1px; animation-delay: 2s; }
.star-6 { bottom: 20%; right: 30%; width: 2px; height: 2px; animation-delay: 2.5s; }
.star-7 { top: 60%; left: 50%; width: 1px; height: 1px; animation-delay: 3s; }
.star-8 { bottom: 40%; right: 50%; width: 2px; height: 2px; animation-delay: 0.8s; }

@keyframes twinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

.hero-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

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

.hero-headline {
    margin-bottom: 2rem;
}

.hero-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #fff;
}

.hero-title-main {
    display: block;
    background: linear-gradient(to right, #fff, #67e8f9, #a855f7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-title-sub {
    display: block;
    background: linear-gradient(to right, #fff, #67e8f9, #a855f7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.hero-tagline {
    display: block;
    margin-top: 1rem;
    color: #67e8f9;
    font-size: 1rem;
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    margin-bottom: 3rem;
}

.hero-cta-primary,
.hero-cta-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    width: 100%;
    max-width: 280px;
    border: none;
}

.hero-cta-primary {
    background: #fff;
    color: #000;
}

.hero-cta-primary:hover {
    background: #e5e5e5;
    transform: translateY(-2px);
}

.hero-cta-secondary {
    background: rgba(0, 0, 0, 0.5);
    color: #67e8f9;
    border: 2px solid #67e8f9;
    backdrop-filter: blur(10px);
}

.hero-cta-secondary:hover {
    background: #67e8f9;
    color: #000;
}

.upload-icon, .arrow-icon, .play-icon {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
}

.process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.step {
    text-align: center;
}

.step-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.step:hover .step-icon {
    transform: scale(1.1);
}

.step-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #fff;
}

.step-icon-ai {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.3), rgba(147, 51, 234, 0.3));
    border-color: rgba(6, 182, 212, 0.3);
}

.step-icon-interactive {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.3), rgba(236, 72, 153, 0.3));
    border-color: rgba(147, 51, 234, 0.3);
}

.ai-cube {
    width: 1.5rem;
    height: 1.5rem;
    background: linear-gradient(135deg, #67e8f9, #a855f7);
    border-radius: 0.5rem;
}

.interactive-spinner {
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid #fff;
    border-radius: 0.25rem;
    animation: spin 2s linear infinite;
}

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

.step-title {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}

.step-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

/* Features Grid Section */
.features-grid-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #000, #111827);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.section-title {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.title-gradient {
    background: linear-gradient(to right, #fff, #67e8f9, #a855f7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 32rem;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(20px);
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Feature Card Colors */
.feature-card-1 {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.1), rgba(160, 82, 45, 0.05));
    border-color: rgba(139, 69, 19, 0.2);
}

.feature-card-2 {
    background: linear-gradient(135deg, rgba(255, 20, 147, 0.1), rgba(255, 105, 180, 0.05));
    border-color: rgba(255, 20, 147, 0.2);
}

.feature-card-3 {
    background: linear-gradient(135deg, rgba(0, 191, 255, 0.1), rgba(30, 144, 255, 0.05));
    border-color: rgba(0, 191, 255, 0.2);
}

.feature-card-4 {
    background: linear-gradient(135deg, rgba(50, 205, 50, 0.1), rgba(34, 139, 34, 0.05));
    border-color: rgba(50, 205, 50, 0.2);
}

.feature-card-5 {
    background: linear-gradient(135deg, rgba(255, 165, 0, 0.1), rgba(255, 140, 0, 0.05));
    border-color: rgba(255, 165, 0, 0.2);
}

.feature-card-6 {
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.1), rgba(147, 112, 219, 0.05));
    border-color: rgba(138, 43, 226, 0.2);
}

.feature-card-icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
}

.feature-card-icon-container svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #fff;
}

.feature-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
}

.feature-card-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 0.875rem;
}

/* Detailed Features Section */
.detailed-features-container {
    background: #000;
}

.feature-detail-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #000 0%, rgba(17, 24, 39, 0.5) 50%, #000 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.feature-detail-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.feature-detail-blob {
    position: absolute;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(147, 51, 234, 0.1));
    border-radius: 50%;
    filter: blur(100px);
    top: 50%;
    transform: translateY(-50%);
}

.blob-right {
    right: -150px;
}

.blob-left {
    left: -150px;
}

.feature-detail-accent {
    position: absolute;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(103, 232, 249, 0.05), rgba(168, 85, 247, 0.05));
    border-radius: 50%;
    filter: blur(50px);
    top: 20%;
}

.accent-right {
    right: 10%;
}

.accent-left {
    left: 10%;
}

.feature-detail-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.feature-detail-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.feature-detail-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(147, 51, 234, 0.2));
    border: 1px solid rgba(6, 182, 212, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-detail-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #fff;
}

.feature-detail-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.feature-detail-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.feature-detail-details {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-detail-benefits {
    list-style: none;
    padding: 0;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.benefit-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: #67e8f9;
    border-radius: 50%;
    margin-top: 0.5rem;
    flex-shrink: 0;
}

.benefit-item span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.feature-detail-mockup {
    aspect-ratio: 1;
    background: linear-gradient(135deg, #1f2937, #111827);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.feature-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

/* Analytics Section */
.analytics-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #000, #111827);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.analytics-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.analytics-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(20px);
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.analytics-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.analytics-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(147, 51, 234, 0.2));
    border: 1px solid rgba(6, 182, 212, 0.3);
    margin: 0 auto 1rem;
}

.analytics-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: #fff;
}

.analytics-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
}

.analytics-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    font-size: 0.875rem;
}

/* Platforms Section */
.platforms-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #000, #111827);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.platforms-grid {
    display: grid;
  
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.platform-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(20px);
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.platform-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.platform-logo {
    max-width: 100px;
    max-height: 50px;
    object-fit: contain;
    filter: brightness(0.8) contrast(1.2);
    transition: filter 0.3s ease;
}

.platform-item:hover .platform-logo {
    filter: brightness(1) contrast(1);
}

/* Pricing Section */
.pricing-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1e293b, #0f172a);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(20px);
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    margin-top: 2rem; /* Aumentado para dar más espacio */
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.pricing-card-popular {
    border: 2px solid rgba(6, 182, 212, 0.5);
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(147, 51, 234, 0.1));
    margin-top: 2.5rem; /* Más espacio para la card popular */
}

.pricing-badge {
    position: absolute;
    top: -1.5rem; /* Movido más arriba */
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #67e8f9, #a855f7);
    color: #fff;
    padding: 0.75rem 1.5rem; /* Aumentado el padding */
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 10;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(103, 232, 249, 0.3);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    margin-top: 1rem; /* Espacio superior para evitar solapamiento */
}

.pricing-plan-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.5rem;
}

.pricing-plan-description {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

.pricing-price {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-amount {
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
}

.pricing-period {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.check-icon {
    width: 1rem;
    height: 1rem;
    color: #67e8f9;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.pricing-button {
    width: 100%;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.pricing-button-primary {
    background: linear-gradient(135deg, #67e8f9, #a855f7);
    color: #fff;
}

.pricing-button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(103, 232, 249, 0.3);
}

.pricing-button-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.pricing-button-secondary:hover {
    border-color: #67e8f9;
    color: #67e8f9;
}

/* Addons Section */
.addons-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #111827, #000);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.addons-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.addon-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(20px);
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
    text-align: center;
    margin-top: 2rem; /* Aumentado de 1rem a 2rem para dar más espacio */
}

.addon-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.addon-card-popular {
    border: 2px solid rgba(6, 182, 212, 0.5);
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(147, 51, 234, 0.1));
    margin-top: 2.5rem; /* Más espacio para la card popular */
}

.addon-badge {
    position: absolute;
    top: -1.5rem; /* Cambiado de -1rem a -1.5rem para moverlo más arriba */
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #67e8f9, #a855f7);
    color: #fff;
    padding: 0.75rem 1.5rem; /* Aumentado el padding vertical */
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 10;
    white-space: nowrap; /* Evita que el texto se rompa */
    box-shadow: 0 4px 12px rgba(103, 232, 249, 0.3); /* Añade sombra para mejor visibilidad */
}

.addon-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    margin-top: 1rem; /* Añade espacio superior para evitar solapamiento */
}

.addon-price {
    margin-bottom: 1rem;
}

.addon-amount {
    font-size: 1.75rem;
    font-weight: 900;
    color: #fff;
}

.addon-period {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    display: block;
    margin-top: 0.25rem;
}

.addon-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

.addon-button {
    width: 100%;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: #fff;
    font-size: 0.875rem;
}

.addon-button:hover {
    border-color: #67e8f9;
    color: #67e8f9;
}

/* Transform Section */
.transform-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #000, #111827);
    text-align: center;
}

.transform-content {
    max-width: 600px;
    margin: 0 auto;
}

.transform-icon {
    margin-bottom: 1.5rem;
}

.lightning-icon {
    width: 3rem;
    height: 3rem;
    color: #fff;
}

.transform-title {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
}

.transform-title-main {
    color: #fff;
}

.transform-title-gradient {
    background: linear-gradient(to right, #67e8f9, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.transform-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.transform-highlight {
    color: #67e8f9;
}

.transform-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.transform-button-primary,
.transform-button-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 280px;
    border: none;
}

.transform-button-primary {
    background: linear-gradient(135deg, #67e8f9, #ec4899);
    color: #fff;
}

.transform-button-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(103, 232, 249, 0.3);
}

.transform-button-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.transform-button-secondary:hover {
    border-color: #67e8f9;
    color: #67e8f9;
}

/* Footer */
.footer {
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 0 2rem;
}

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

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

.footer-logo .logo-container {
    width: 2rem;
    height: 2rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    font-size: 0.875rem;
}

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.875rem;
}

.footer-links a:hover {
    color: #06b6d4;
}

/* Responsive Styles */
@media (min-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .platforms-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .analytics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .nav-menu {
        display: flex;
    }
    
    .desktop-only {
        display: flex;
    }
    
    .mobile-menu-button {
        display: none;
    }
    
    .mobile-nav {
        display: none;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-buttons {
        flex-direction: row;
    }
    
    .hero-cta-primary,
    .hero-cta-secondary {
        width: auto;
        max-width: none;
    }

    .process-steps {
        grid-template-columns: repeat(3, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .feature-reversed .feature-detail-content {
        order: 2;
    }

    .feature-reversed .feature-detail-visual {
        order: 1;
    }

    .analytics-grid {
        grid-template-columns: repeat(3, 1fr);
    }

   .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-card {
        margin-top: 2rem;
    }
    
    .pricing-card-popular {
        margin-top: 2.5rem;
    }
}

     .addons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .addon-card {
        margin-top: 2rem;
    }
    
    .addon-card-popular {
        margin-top: 2.5rem;
    }

    .transform-buttons {
        flex-direction: row;
    }
    
    .transform-button-primary,
    .transform-button-secondary {
        width: auto;
        max-width: none;
    }

    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
    }


@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }

    .section-title {
        font-size: 3rem;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

   .pricing-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .pricing-card {
        margin-top: 1.5rem;
    }
    
    .pricing-card-popular {
        margin-top: 2rem;
    }

   .addons-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .addon-card {
        margin-top: 1.5rem;
    }
    
    .addon-card-popular {
        margin-top: 2rem;
    }

    .platforms-grid {
       
    }
}

@media (min-width: 1280px) {
    .hero-title {
        font-size: 5rem;
    }
}
.feature-image,
.feature-image video {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

.feature-image video {
    max-height: 400px;
}