* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colores Stella TV - Vibrantes y Marketeros */
    --stella-pink: #FF1B8D;
    --stella-magenta: #E91E8C;
    --stella-purple: #9B59E8;
    --stella-yellow: #FFB800;
    --stella-orange: #FF6B35;
    --stella-cyan: #00D9FF;
    --stella-green: #00E5A0;
    
    /* Fondos */
    --bg-white: #FFFFFF;
    --bg-light: #F8F9FA;
    --bg-gradient-pink: linear-gradient(135deg, #FF1B8D 0%, #9B59E8 100%);
    --bg-gradient-yellow: linear-gradient(135deg, #FFB800 0%, #FF6B35 100%);
    --bg-gradient-cyan: linear-gradient(135deg, #00D9FF 0%, #9B59E8 100%);
    
    /* Textos */
    --text-dark: #2D3436;
    --text-gray: #636E72;
    --text-white: #FFFFFF;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
    overflow-x: hidden;
}

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

/* Navigation - Colorido y Vibrante */
.navbar {
    background: var(--bg-gradient-pink);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(255, 27, 141, 0.4);
}

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

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

.logo img {
    height: 50px;
}

.logo span {
    font-size: 2rem;
    font-weight: 900;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

.nav-menu li a {
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s;
    position: relative;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--stella-yellow);
    transform: translateY(-2px);
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--stella-yellow);
    transition: width 0.3s;
    border-radius: 3px;
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 100%;
}

/* Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: white;
    transition: all 0.3s;
    border-radius: 3px;
}

/* Hero Section - Alegre y Energético */
.hero {
    background: var(--bg-gradient-pink);
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 184, 0, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 217, 255, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(155, 89, 232, 0.3) 0%, transparent 70%);
    animation: float 15s ease-in-out infinite;
}

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

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

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

.hero-icon {
    margin-bottom: 2rem;
    animation: bounce 2s infinite;
}

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

.hero-icon img {
    width: 600px;
    height: 400px;
    filter: drop-shadow(0 10px 40px rgba(255, 255, 255, 0.6));
}

@media (max-width: 48.0rem) {
    .hero-icon img {
    width: 200px;
    height: 150px;
    filter: drop-shadow(0 10px 40px rgba(255, 255, 255, 0.6));
}
}

.hero-title {
    font-size: 6rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: 3px;
}

.hero-subtitle {
    font-size: 2rem;
    color: white;
    margin-bottom: 3rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.3rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.2rem;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--bg-gradient-yellow);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 15px 40px rgba(255, 184, 0, 0.6);
}

.btn-secondary {
    background: white;
    color: var(--stella-pink);
    border: 3px solid white;
}

.btn-secondary:hover {
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.6);
    background: var(--stella-cyan);
    color: white;
    border-color: var(--stella-cyan);
}

/* Section Titles - Vibrantes */
.section-title-stellar,
.section-title-planes {
    text-align: center;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-subtitle-stellar {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.4rem;
    margin-bottom: 3rem;
    line-height: 1.8;
    font-weight: 500;
}

.highlight-cyan {
    background: var(--bg-gradient-cyan);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-orange {
    background: var(--bg-gradient-yellow);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-pink {
    background: var(--bg-gradient-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Features Section */
.features {
    background: var(--bg-light);
    padding: 6rem 0;
}

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

@media (max-width: 48.0rem) {
   .features-grid {
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); */
    grid-template-columns: repeat(1, 1fr);
    gap: 2.5rem;
}
}

.feature-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 25px;
    text-align: center;
    transition: all 0.3s;
    border: 3px solid transparent;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.feature-card:hover {
    transform: translateY(-15px) rotate(2deg);
    border-color: var(--stella-pink);
    box-shadow: 0 20px 50px rgba(255, 27, 141, 0.4);
}

.feature-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    background: var(--bg-gradient-pink);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 30px rgba(255, 27, 141, 0.3);
}

.feature-card h3 {
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 800;
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.9;
    font-size: 1.05rem;
}

/* FAQs Section */
.faqs {
    background: white;
    padding: 6rem 0;
}

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

.faq-item {
    background: var(--bg-light);
    border-radius: 20px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    border: 3px solid transparent;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--stella-pink);
    transform: translateX(10px);
}

.faq-question {
    width: 100%;
    padding: 1.8rem 2.5rem;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    text-align: left;
    transition: all 0.3s;
}

.faq-question:hover {
    color: var(--stella-pink);
}

.faq-icon {
    transition: transform 0.3s;
    color: var(--stella-pink);
    font-weight: bold;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 600px;
}

.faq-answer p,
.faq-answer ul {
    padding: 0 2.5rem 2rem;
    color: var(--text-gray);
    line-height: 1.9;
    font-size: 1.05rem;
}

.faq-answer ul {
    list-style-position: inside;
}

.faq-answer li {
    margin-bottom: 0.5rem;
}

/* Footer - Colorido */
.footer {
    background: var(--bg-gradient-pink);
    color: white;
    padding: 5rem 0 2rem;
}

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

.footer-brand img {
    height: 60px;
    margin-bottom: 1.5rem;;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.9;
    font-size: 1.05rem;
}

.footer h4 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    color: var(--stella-yellow);
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--stella-yellow);
    padding-left: 10px;
    font-weight: 700;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

/* Planes Section - Colorido */
.planes {
    background: var(--bg-light);
    padding: 6rem 0;
}

.device-toggle {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 4rem;
}

.toggle-label {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-gray);
    transition: all 0.3s;
    cursor: pointer;
}

.toggle-label.active {
    color: var(--stella-pink);
    font-size: 1.3rem;
}

.switch {
    position: relative;
    display: inline-block;
    width: 80px;
    height: 40px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-light);
    border: 3px solid var(--stella-pink);
    transition: 0.4s;
    border-radius: 40px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 28px;
    width: 28px;
    left: 4px;
    bottom: 3px;
    background: var(--bg-gradient-pink);
    transition: 0.4s;
    border-radius: 50%;
}

input:checked + .slider:before {
    transform: translateX(40px);
}

.planes-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(358px, 1fr));
    gap: 2.5rem;
    justify-content: center; /* CENTRA TODA LA CUADRÍCULA */

}

@media (max-width: 48.0rem) {
.planes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}
}


.plan-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 25px;
    text-align: center;
    transition: all 0.3s;
    border: 3px solid transparent;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    position: relative;
}

.plan-card:hover {
    transform: translateY(-15px) scale(1.05);
    border-color: var(--stella-pink);
    box-shadow: 0 25px 60px rgba(255, 27, 141, 0.4);
}

.plan-card.plan-promo {
    border-color: var(--stella-yellow);
    box-shadow: 0 10px 35px rgba(255, 184, 0, 0.3);
}

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

.promo-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--bg-gradient-yellow);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.plan-card h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.plan-price-stellar {
    margin-bottom: 2rem;
}

.plan-price-stellar .currency {
    font-size: 1.5rem;
    color: var(--stella-pink);
    font-weight: 700;
}

.plan-price-stellar .amount {
    font-size: 4rem;
    font-weight: 900;
    background: var(--bg-gradient-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.plan-price-stellar .period {
    font-size: 1.1rem;
    color: var(--text-gray);
    font-weight: 600;
}

.plan-features-stellar {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.plan-features-stellar li {
    padding: 0.8rem 0;
    color: var(--text-gray);
    font-weight: 500;
    border-bottom: 1px solid var(--bg-light);
}

.btn-plan-stellar {
    display: block;
    width: 100%;
    padding: 1.2rem;
    background: var(--bg-gradient-pink);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-plan-stellar:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 27, 141, 0.5);
}

/* Descargar Section */
.devices {
    background: var(--bg-light);
    padding: 6rem 0;
}

.download-buttons-hero {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 5rem;
    flex-wrap: wrap;
}

.btn-download-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 2.5rem 3.5rem;
    background: var(--bg-gradient-pink);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s;
    box-shadow: 0 10px 35px rgba(255, 27, 141, 0.4);
    min-width: 180px;
}

.btn-download-hero:hover {
    transform: translateY(-10px) scale(1.1);
    box-shadow: 0 20px 50px rgba(255, 27, 141, 0.6);
}

.btn-download-hero span {
    font-size: 1.5rem;
    font-weight: 800;
    text-transform: uppercase;
}

.installation-guides {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 4rem;
}

.install-card {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    border: 3px solid transparent;
    transition: all 0.3s;
}

.install-card:hover {
    border-color: var(--stella-pink);
    box-shadow: 0 15px 40px rgba(255, 27, 141, 0.3);
}

.install-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.install-icon {
    width: 90px;
    height: 90px;
    background: var(--bg-gradient-pink);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.install-icon img {
    width: 100%;
    height: 100%;
    filter: brightness(0) invert(1);
}

.install-header h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    flex: 1;
    font-weight: 800;
}

.install-methods {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.method {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 20px;
    border-left: 5px solid var(--stella-pink);
}

.method h4 {
    color: var(--stella-pink);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 800;
}

.method ol {
    list-style-position: inside;
    color: var(--text-gray);
    line-height: 2;
}

.method ol li {
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.method strong {
    color: var(--stella-pink);
    font-weight: 800;
}

.install-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-install,
.btn-tutorial {
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.3s;
    text-align: center;
    flex: 1;
    min-width: 150px;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.btn-install {
    background: var(--bg-gradient-yellow);
    color: white;
    box-shadow: 0 5px 20px rgba(255, 184, 0, 0.4);
}

.btn-install:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 184, 0, 0.6);
}

.btn-tutorial {
    background: white;
    border: 3px solid var(--stella-cyan);
    color: var(--stella-cyan);
}

.btn-tutorial:hover {
    background: var(--stella-cyan);
    color: white;
    transform: translateY(-5px);
}

.download-faqs {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    margin-top: 4rem;
    border: 3px solid var(--stella-pink);
}

.download-faqs h3 {
    text-align: center;
    color: var(--text-dark);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 900;
}

/* Reventa Section */
.reventa {
    background: var(--bg-light);
    padding: 6rem 0;
}

.reventa-toggle {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.reventa-tab {
    padding: 1.2rem 2.5rem;
    background: white;
    border: 3px solid var(--bg-light);
    border-radius: 15px;
    color: var(--text-gray);
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1.05rem;
}

.reventa-tab:hover {
    border-color: var(--stella-pink);
    transform: translateY(-3px);
}

.reventa-tab.active {
    background: var(--bg-gradient-pink);
    color: white;
    border-color: var(--stella-pink);
    box-shadow: 0 5px 20px rgba(255, 27, 141, 0.4);
}

.reventa-plans {
    display: none;
}

.reventa-plans.active {
    display: block;
}

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

.reventa-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 25px;
    border: 3px solid transparent;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.reventa-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    border-color: var(--stella-pink);
}

.reventa-card.popular {
    border-color: var(--stella-yellow);
    box-shadow: 0 10px 35px rgba(255, 184, 0, 0.3);
}

.reventa-card.featured {
    background: linear-gradient(135deg, #2D3436 0%, #000 100%);
    border-color: var(--stella-yellow);
}

.reventa-badge {
    display: inline-block;
    padding: 0.7rem 2rem;
    border-radius: 50px;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.1rem;
}

.reventa-badge.bronze {
    background: linear-gradient(135deg, #CD7F32 0%, #A0522D 100%);
    color: white;
}

.reventa-badge.silver {
    background: linear-gradient(135deg, #C0C0C0 0%, #A8A8A8 100%);
    color: #2D3436;
}

.reventa-badge.gold {
    background: var(--bg-gradient-yellow);
    color: white;
}

.reventa-badge.platinum {
    background: linear-gradient(135deg, #E5E4E2 0%, #B9B9B9 100%);
    color: #2D3436;
}

.reventa-badge.diamond {
    background: var(--bg-gradient-cyan);
    color: white;
}

.reventa-badge.black {
    background: linear-gradient(135deg, #000 0%, #333 100%);
    color: var(--stella-yellow);
}

.reventa-credits {
    font-size: 1.4rem;
    color: var(--stella-pink);
    font-weight: 800;
    margin-bottom: 2rem;
}

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

.reventa-price .currency {
    font-size: 1.3rem;
    color: var(--text-gray);
    font-weight: 700;
}

.reventa-price .amount {
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--bg-gradient-pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.reventa-card.featured .reventa-price .amount {
    color: var(--stella-yellow);
    background: none;
    -webkit-text-fill-color: var(--stella-yellow);
}

.reventa-unit-price {
    color: var(--text-gray);
    margin-bottom: 1rem;
    font-size: 1.05rem;
    font-weight: 600;
}

.reventa-note {
    color: var(--stella-orange);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.reventa-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    text-align: left;
}

.reventa-features li {
    padding: 0.8rem 0;
    color: var(--text-gray);
    font-weight: 600;
    border-bottom: 1px solid var(--bg-light);
}

.reventa-card.featured .reventa-features li {
    color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.1);
}

.btn-reventa {
    display: block;
    width: 100%;
    padding: 1.2rem;
    background: var(--bg-gradient-pink);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 800;
    transition: all 0.3s;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.btn-reventa:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 27, 141, 0.6);
}

.why-choose {
    margin-top: 5rem;
    padding: 4rem;
    background: white;
    border-radius: 25px;
}

.why-choose h3 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    font-weight: 900;
}

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

.benefit-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 3px solid transparent;
    transition: all 0.3s;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--stella-pink);
    box-shadow: 0 15px 40px rgba(255, 27, 141, 0.3);
}

.benefit-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.benefit-card h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 800;
}

.benefit-card p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* Contacto Section */
.contacto {
    background: var(--bg-light);
    padding: 6rem 0;
}

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

.job-card {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    border: 3px solid transparent;
    text-align: center;
    transition: all 0.3s;
}

.job-card:hover {
    border-color: var(--stella-cyan);
    box-shadow: 0 15px 40px rgba(0, 217, 255, 0.3);
    transform: translateY(-10px);
}

.job-icon {
    width: 90px;
    height: 90px;
    background: var(--bg-gradient-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3);
}

.job-icon svg {
    color: white;
}

.job-card h3 {
    color: var(--text-dark);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.job-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
}

.job-card ul li {
    padding: 1rem 0;
    color: var(--text-gray);
    line-height: 1.9;
    font-weight: 500;
    border-bottom: 1px solid var(--bg-light);
}

.contact-info {
    text-align: center;
    background: white;
    padding: 4rem;
    border-radius: 25px;
    border: 3px solid var(--stella-pink);
}

.contact-info h3 {
    color: var(--text-dark);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.contact-info p {
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    font-size: 1.2rem;
}

.contact-emails {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.email-link {
    padding: 1.2rem 3rem;
    background: var(--bg-gradient-pink);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 800;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(255, 27, 141, 0.4);
    font-size: 1.1rem;
}

.email-link:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 27, 141, 0.6);
}

/* WhatsApp Float Button - Colorido */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 5px 25px rgba(37, 211, 102, 0.5);
    z-index: 999;
    transition: all 0.3s;
    animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 5px 25px rgba(37, 211, 102, 0.5);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 5px 35px rgba(37, 211, 102, 0.7);
        transform: scale(1.08);
    }
}

.whatsapp-float:hover {
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.7);
}

/* WhatsApp Modal - Moderno */
.whatsapp-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.whatsapp-modal.active {
    display: flex;
}

.whatsapp-modal-content {
    background: white;
    border-radius: 30px;
    padding: 3rem;
    max-width: 550px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.4s ease-out;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-70px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--bg-light);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    color: var(--text-dark);
}

.modal-close:hover {
    background: var(--stella-pink);
    color: white;
    transform: rotate(90deg) scale(1.1);
}

.whatsapp-modal-content h3 {
    color: var(--text-dark);
    font-size: 2.2rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 900;
}

.whatsapp-modal-content > p {
    color: var(--text-gray);
    text-align: center;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

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

.whatsapp-contact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 2rem;
    background: var(--bg-light);
    border: 3px solid transparent;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s;
}

.whatsapp-contact:hover {
    background: rgba(37, 211, 102, 0.1);
    border-color: #25D366;
    transform: translateX(10px) scale(1.02);
}

.contact-name {
    color: var(--text-dark);
    font-weight: 800;
    font-size: 1.1rem;
}

.contact-number {
    color: #25D366;
    font-weight: 700;
    font-size: 1.05rem;
}

/* Responsive - Mobile First */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
    
    .section-title-stellar,
    .section-title-planes {
        font-size: 3rem;
    }
}

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

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--bg-gradient-pink);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .menu-toggle {
        display: flex;
    }

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

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1.5rem;
    }

    .section-title-stellar,
    .section-title-planes {
        font-size: 2.5rem;
    }

    .section-subtitle-stellar {
        font-size: 1.2rem;
    }

    .download-buttons-hero {
        flex-direction: column;
        align-items: center;
    }

    .btn-download-hero {
        width: 100%;
        max-width: 350px;
    }

    .install-header {
        flex-direction: column;
        text-align: center;
    }

    .install-header h3 {
        font-size: 1.5rem;
    }

    .reventa-toggle {
        flex-direction: column;
    }

    .reventa-tab {
        width: 100%;
    }

    .device-toggle {
        flex-direction: column;
        gap: 1rem;
    }

    .jobs-grid {
        grid-template-columns: 1fr;
    }

    .contact-emails {
        flex-direction: column;
        align-items: center;
    }

    .email-link {
        width: 100%;
        max-width: 350px;
    }

    .whatsapp-float {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
    }

    .whatsapp-modal-content {
        padding: 2rem 1.5rem;
        width: 95%;
    }

    .whatsapp-contact {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title-stellar,
    .section-title-planes {
        font-size: 2rem;
    }

    .plan-price-stellar .amount,
    .reventa-price .amount {
        font-size: 3rem;
    }

    .feature-card,
    .plan-card,
    .reventa-card,
    .install-card {
        padding: 2rem 1.5rem;
    }
}

/* Distribuidores Section */
.distribuidores {
    background: white;
    padding: 6rem 0;
}

.country-selector {
    max-width: 600px;
    margin: 0 auto 4rem;
}

.country-selector input {
    width: 100%;
    padding: 1.5rem 2rem;
    border: 3px solid var(--stella-pink);
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    background: var(--bg-light);
    transition: all 0.3s;
}

.country-selector input:focus {
    outline: none;
    border-color: var(--stella-cyan);
    box-shadow: 0 5px 20px rgba(0, 217, 255, 0.3);
    transform: translateY(-3px);
}

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

.country-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 3px solid transparent;
    transition: all 0.3s;
    cursor: pointer;
}

.country-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--stella-pink);
    box-shadow: 0 15px 40px rgba(255, 27, 141, 0.3);
}

.country-card.hot {
    border-color: var(--stella-orange);
    background: linear-gradient(135deg, rgba(255, 184, 0, 0.1) 0%, rgba(255, 107, 53, 0.1) 100%);
}

.country-flag {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.country-card h3 {
    font-size: 1.6rem;
    color: var(--text-dark);
    font-weight: 800;
}

.country-card .hot-badge {
    display: inline-block;
    margin-left: 0.5rem;
    font-size: 1.5rem;
}

.distributors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
}

.country-item {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid var(--bg-light);
    transition: all 0.3s;
    cursor: pointer;
}

.country-item:hover {
    border-color: var(--stella-cyan);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 217, 255, 0.2);
}

.country-item .flag {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.country-item .name {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 700;
}

/* Distribuidores Section en Planes */
.distribuidores-section {
    background: var(--bg-light);
    padding: 6rem 0;
    border-top: 0px solid var(--stella-pink);
}

.country-selector {
    max-width: 600px;
    margin: 0 auto 4rem;
}

.country-selector input {
    width: 100%;
    padding: 1.5rem 2rem;
    border: 3px solid var(--stella-orange);
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    background: white;
    transition: all 0.3s;
}

.country-selector input:focus {
    outline: none;
    border-color: var(--stella-pink);
    box-shadow: 0 5px 20px rgba(255, 27, 141, 0.3);
}

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

.country-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 3px solid var(--stella-orange);
    transition: all 0.3s;
    cursor: pointer;
}

.country-card:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: var(--stella-pink);
    box-shadow: 0 15px 40px rgba(255, 27, 141, 0.4);
}

.country-card.active {
    background: var(--bg-gradient-pink);
    border-color: var(--stella-pink);
}

.country-card.active h3 {
    color: white;
}

.country-flag {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.country-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    font-weight: 800;
}

.all-countries-list {
    margin-bottom: 3rem;
}

.country-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
}

.country-btn {
    padding: 1.2rem 1.5rem;
    background: white;
    border: 2px solid var(--bg-light);
    border-radius: 15px;
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s;
}

.country-btn:hover {
    border-color: var(--stella-cyan);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 217, 255, 0.3);
}

.country-btn.active {
    background: var(--bg-gradient-cyan);
    color: white;
    border-color: var(--stella-cyan);
}

/* Tabla de Distribuidores */
.distributors-table-container {
    margin-top: 3rem;
    animation: fadeIn 0.5s;
}

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

.country-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-weight: 900;
}

.table-responsive {
    overflow-x: auto;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.distributors-table {
    width: 100%;
    border-collapse: collapse;
}

.distributors-table thead {
    background: var(--bg-gradient-pink);
}

.distributors-table thead th {
    padding: 1.5rem;
    text-align: left;
    color: white;
    font-weight: 800;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.distributors-table thead th:first-child {
    border-radius: 15px 0 0 0;
}

.distributors-table thead th:last-child {
    border-radius: 0 15px 0 0;
}

.distributors-table tbody tr {
    border-bottom: 2px solid var(--bg-light);
    transition: all 0.3s;
}

.distributors-table tbody tr:hover {
    background: rgba(255, 27, 141, 0.05);
    transform: scale(1.01);
}

.distributors-table tbody td {
    padding: 1.5rem;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1.05rem;
}

.distributors-table tbody td:first-child {
    font-weight: 800;
    color: var(--stella-pink);
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s;
    font-size: 1rem;
}

.contact-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.5);
}

.country-flag-small {
    font-size: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .featured-countries {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .country-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .table-responsive {
        padding: 1rem;
    }
    
    .distributors-table thead th,
    .distributors-table tbody td {
        padding: 1rem 0.5rem;
        font-size: 0.95rem;
    }
    
    .contact-link {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}
