:root {
    --primary: #00d8ff;
    --primary-light: #7ae7ff;
    --primary-dark: #00a3cc;
    --secondary: #0dfbf3;
    --dark: #0a0e17;
    --darker: #05080f;
    --light: #f0f8ff;
    --gray: #8a9ba8;
    --gradient: linear-gradient(135deg, #00d8ff 0%, #0dfbf3 100%);
    --neon-glow: 0 0 15px rgba(0, 216, 255, 0.5);
    --neon-text-glow: 0 0 5px rgba(0, 216, 255, 0.8);
    --section-padding: 6rem 1.5rem;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--darker);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--gradient);
    color: var(--darker);
    box-shadow: var(--neon-glow);
    font-weight: 700;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(0, 216, 255, 0.7);
}

.btn-secondary {
    border: 1px solid var(--primary);
    color: var(--primary);
    text-shadow: var(--neon-text-glow);
}

.btn-secondary:hover {
    background-color: rgba(0, 216, 255, 0.1);
    box-shadow: var(--neon-glow);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--darker);
    color: var(--darker);
    font-weight: 600;
}

.btn-outline:hover {
    background: rgba(5, 8, 15, 0.1);
}

/* Header Styles */
header {
    background-color: rgba(5, 8, 15, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    z-index: 100;
    border-bottom: 1px solid rgba(0, 216, 255, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo img {
    height: 70px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-shadow: var(--neon-text-glow);
}

/* Navigation */
nav ul {
    display: flex;
    gap: 2rem;
    list-style: none;
}

nav li {
    position: relative;
}

nav a {
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding: 0.1rem 0;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--primary);
    text-shadow: var(--neon-text-glow);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s;
}

nav a:hover::after {
    width: 100%;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--dark);
    border-radius: 0.5rem;
    padding: 0rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: none;
    min-width: 230px;
    z-index: 10;
    border: 1px solid rgba(0, 216, 255, 0.1);
    animation: fadeIn 0.3s ease-out forwards;
    opacity: 0;
    transform: translateY(-10px);
}

.dropdown-menu li {
    margin-bottom: 0.5rem;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    transition: all 0.3s;
    font-size: 0.95rem;
}

.dropdown-menu a:hover {
    background: rgba(0, 216, 255, 0.2);
    color: var(--primary);
}

nav li:hover .dropdown-menu {
    display: block;
}

/* Language Selector */
.language-selector {
    position: relative;
    margin-right: 1rem;
}

.language-selector button {
    background: transparent;
    border: none;
    color: var(--light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: all 0.3s;
}

.language-selector button:hover {
    background: rgba(0, 216, 255, 0.1);
}

.language-selector .dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--dark);
    border-radius: 0.5rem;
    padding: 0.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    display: none;
    min-width: 120px;
    z-index: 10;
    border: 1px solid rgba(0, 216, 255, 0.1);
}

.language-selector:hover .dropdown {
    display: block;
}

.language-selector .dropdown a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    transition: all 0.3s;
}

.language-selector .dropdown a:hover {
    background: rgba(0, 216, 255, 0.2);
    color: var(--primary);
}

.language-selector .dropdown i {
    width: 16px;
    text-align: center;
}

/* Header Actions */
.header-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--light);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: var(--primary);
    font-size: 1.8rem;
    cursor: pointer;
}

.mobile-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mobile-nav a {
    font-size: 1.2rem;
    font-weight: 500;
    display: block;
    padding: 0.75rem 0;
    color: var(--light);
    border-bottom: 1px solid rgba(0, 216, 255, 0.1);
}

.mobile-dropdown {
    padding-left: 1.5rem;
    margin-top: 0.5rem;
    display: none;
}

.mobile-dropdown.active {
    display: block;
}

.mobile-dropdown a {
    font-size: 1rem;
}

.mobile-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.mobile-dropdown-toggle i {
    transition: transform 0.3s;
}

.mobile-dropdown-toggle.active i {
    transform: rotate(180deg);
}

.mobile-actions {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-bottom: 2rem;
}

.mobile-actions .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 1rem;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.mobile-actions .btn-primary {
    background: var(--gradient);
    color: var(--darker);
}

.mobile-actions .btn-secondary {
    border: 1px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

/* Hero Section - Slider */
.hero {
    padding: 10rem 0 6rem;
    position: relative;
    overflow: hidden;
    background: var(--darker);
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
}

#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
    z-index: 3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    position: relative;
    z-index: 2;
    height: 100%;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: white;
    text-shadow: 0 0 10px rgba(0, 216, 255, 0.5);
    animation: fadeInUp 0.8s ease-out;
}

.hero-text h1 span {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: none;
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-image {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.hero-image img {
    width: 100%;
    display: block;
    margin-top: 20px;
    max-width: 600px;
    animation: fadeInRight 0.8s ease-out;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 10px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

/* Background Effects */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(0, 216, 255, 0.15) 0%, transparent 25%),
        radial-gradient(circle at 80% 70%, rgba(0, 255, 170, 0.15) 0%, transparent 25%);
    z-index: 1;
    animation: pulse 15s infinite alternate;
}

.dots-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.3;
    background-image:
        radial-gradient(circle at 20% 30%, var(--primary) 1px, transparent 1px),
        radial-gradient(circle at 80% 70%, var(--secondary) 1px, transparent 1px),
        radial-gradient(circle at 40% 60%, var(--primary) 1px, transparent 1px),
        radial-gradient(circle at 60% 20%, var(--secondary) 1px, transparent 1px);
    background-size: 100px 100px;
    animation: dots-move 20s infinite linear;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 0 0 10px rgba(0, 216, 255, 0.3);
}

.section-header p {
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Problem Section */
.problem {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.problem::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(0, 216, 255, 0.05), transparent 70%);
    z-index: -1;
}

.problem-container {
    max-width: auto;
    margin: 0 auto;
    text-align: center;
}

.problem-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.problem-card {
    background-color: rgba(10, 14, 23, 0.7);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(0, 216, 255, 0.1);
    transition: all 0.3s;
    backdrop-filter: blur(5px);
    text-align: center;
}

.problem-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--neon-glow);
}

.problem-card-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 216, 255, 0.1);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary);
    font-size: 1.5rem;
    border: 1px solid rgba(0, 216, 255, 0.3);
}

.problem-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.problem-card p {
    color: var(--gray);
}

/* Solutions Section */
.solutions {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.solutions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(0, 216, 255, 0.05), transparent 70%);
    z-index: -1;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.solution-card {
    background-color: rgba(10, 14, 23, 0.7);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(0, 216, 255, 0.1);
    transition: all 0.3s;
    backdrop-filter: blur(5px);
    text-align: center;
}

.solution-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--neon-glow);
}

.solution-card-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 216, 255, 0.1);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary);
    font-size: 1.5rem;
    border: 1px solid rgba(0, 216, 255, 0.3);
}

/* Versions Section */
.versions {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.versions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(0, 216, 255, 0.05), transparent 70%);
    z-index: -1;
}

.versions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.version-card {
    background-color: rgba(10, 14, 23, 0.7);
    border-radius: 1rem;
    padding: 2.5rem;
    border: 1px solid rgba(0, 216, 255, 0.1);
    transition: all 0.3s;
    backdrop-filter: blur(5px);
}

.version-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--neon-glow);
}

.version-card.pro {
    border-top: 4px solid var(--primary);
}

.version-card.go {
    border-top: 4px solid var(--secondary);
}

.version-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: white;
}

.version-card .price {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.version-card ul {
    list-style: none;
    margin-bottom: 2rem;
}

.version-card li {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.version-card li svg {
    color: var(--secondary);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

/* Features Section */
.features {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(0, 216, 255, 0.05), transparent 70%);
    z-index: -1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background-color: rgba(10, 14, 23, 0.7);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(0, 216, 255, 0.1);
    transition: all 0.3s;
    backdrop-filter: blur(5px);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--neon-glow);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: var(--neon-glow);
}

.feature-icon svg {
    width: 30px;
    height: 30px;
    color: var(--darker);
}

/* CTA Section */
.cta {
    padding: var(--section-padding);
    background: var(--gradient);
    color: var(--darker);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.1), transparent 70%);
    z-index: 1;
}

.cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    z-index: 9999;
}

.cta .btn-secondary {
    background-color: var(--darker);
    color: var(--primary);
    border: 2px solid var(--darker);
    text-shadow: none;
    box-shadow: none;
}

.cta .btn-secondary:hover {
    background-color: rgba(5, 8, 15, 0.8);
    color: var(--primary-light);
    box-shadow: 0 0 15px rgba(5, 8, 15, 0.5);
}

/* Countries Section */
.countries {
    padding: 4rem 1.5rem;
    background-color: rgba(10, 14, 23, 0.5);
    position: relative;
    overflow: hidden;
}

.countries::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(0, 216, 255, 0.05), transparent 70%);
    z-index: -1;
}

.countries-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.country {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s;
}

.country:hover {
    transform: translateY(-5px);
}

.country img {
    width: 40px;
    height: 30px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.country span {
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 500;
}

/* Footer */
footer {
    background-color: var(--dark);
    color: white;
    padding: 5rem 0 2rem;
    position: relative;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 40px;
}

.footer-logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    text-shadow: var(--neon-text-glow);
}

.footer-about p {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 216, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--neon-glow);
}

.footer-links h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--gray);
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
    text-shadow: var(--neon-text-glow);
}

.footer-contact p {
    color: var(--gray);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-contact svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 216, 255, 0.1);
    display: flex;
    justify-content: space-between;
    color: var(--gray);
    font-size: 0.9rem;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 99;
}

.whatsapp-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    color: white;
    font-size: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.whatsapp-btn a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* Modals */
.modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(5, 8, 15, 0.9);
    backdrop-filter: blur(5px);
    overflow: auto;
}

.modal-content {
    background-color: var(--dark);
    margin: 5% auto;
    padding: 2rem;
    border: 1px solid var(--primary);
    border-radius: 1rem;
    width: 90%;
    max-width: 600px;
    position: relative;
    animation: modalFadeIn 0.3s;
}

.modal-close {
    position: absolute;
    right: 1.5rem;
    top: 1rem;
    color: var(--gray);
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close:hover {
    color: var(--primary);
}

.modal h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    text-align: center;
}

.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--light);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(0, 216, 255, 0.3);
    background-color: rgba(10, 14, 23, 0.7);
    color: var(--light);
    font-family: 'Inter', sans-serif;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: var(--neon-glow);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Elimina los estilos de autocompletado para Chrome/Safari */
.form-group input:-webkit-autofill,
.form-group input:-webkit-autofill:hover, 
.form-group input:-webkit-autofill:focus,
.form-group select:-webkit-autofill,
.form-group select:-webkit-autofill:hover,
.form-group select:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px rgba(10, 14, 23, 0.7) inset !important;
    -webkit-text-fill-color: var(--light) !important;
    transition: background-color 5000s ease-in-out 0s;
}

/* Para Firefox */
.form-group input:-moz-autofill,
.form-group input:-moz-autofill:hover,
.form-group input:-moz-autofill:focus,
.form-group select:-moz-autofill,
.form-group select:-moz-autofill:hover,
.form-group select:-moz-autofill:focus {
    background-color: rgba(10, 14, 23, 0.7) !important;
    text-fill-color: var(--light) !important;
    box-shadow: 0 0 0 1000px rgba(10, 14, 23, 0.7) inset !important;
}


/* Phone Input */
.phone-group {
    margin-bottom: 1.5rem;
}

.phone-input-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.country-selector {
    position: relative;
    width: 100px;
}

.phone-prefix {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.selected-flag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background-color: rgba(10, 14, 23, 0.7);
    border: 1px solid rgba(0, 216, 255, 0.3);
    border-radius: 0.5rem;
    position: relative;
}

.flag-icon {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
}

.country-selector i {
    font-size: 0.8rem;
    margin-left: auto;
}

.phone-number {
    flex: 1;
    padding: 0.75rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(0, 216, 255, 0.3);
    background-color: rgba(10, 14, 23, 0.7);
    color: var(--light);
    font-family: 'Inter', sans-serif;
}

/* Password Toggle */
.icon_eye {
    margin: 0;
    position: absolute;
    top: 47px;
    right: 20px;
}

.icon_eye i {
    display: block;
}

/* Alerts */
.alert {
    display: flex;
    padding: 5px;
    border-radius: 5px;
}

.alert-danger {
    background: rgb(188, 95, 95);
}

/* Loader */
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(194, 194, 194, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.spinner {
    margin: 100px auto 0;
    width: 70px;
    text-align: center;
}

.spinner>div {
    width: 18px;
    height: 18px;
    background-color: #333;
    border-radius: 100%;
    display: inline-block;
    animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
    animation-delay: -0.32s;
}

.spinner .bounce2 {
    animation-delay: -0.16s;
}

/* Animations */
@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.05);
    }
    100% {
        opacity: 0.3;
        transform: scale(1);
    }
}

@keyframes dots-move {
    0% {
        background-position: 0 0, 0 0, 0 0, 0 0;
    }
    100% {
        background-position: 50px 50px, -50px -50px, 30px -30px, -30px 30px;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes sk-bouncedelay {
    0%, 80%, 100% {
        transform: scale(0);
    }
    40% {
        transform: scale(1.0);
    }
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-text {
        order: 1;
        text-align: center;
    }

    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: row;
        gap: 1rem;
    }

    nav {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        min-height: 700px;
        padding: 8rem 0 4rem;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-text p {
        font-size: 1.1rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .versions-grid {
        grid-template-columns: 1fr;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .header-actions .btn {
        display: none;
    }

    .header-actions .language-selector {
        margin-right: 0;
    }

    .countries-grid {
        gap: 1.5rem;
    }

    .country img {
        width: 35px;
        height: 25px;
    }

    .country span {
        font-size: 0.8rem;
    }

    .modal-content {
        margin: 10% auto;
        width: 95%;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 650px;
        padding: 6rem 0 3rem;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .slider-controls {
        bottom: 20px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-bottom div {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-bottom a {
        margin-left: 0 !important;
    }
}


@media (max-width: 768px) {
    /* Ocultar navegación desktop */
    nav {
        display: none;
    }
    
    /* Mostrar botón de menú móvil */
    .mobile-menu-btn {
        display: block;
    }
    
    /* Ajustar el contenedor del header */
    .header-container {
        padding: 1rem 0;
    }
    
    /* Reducir el tamaño del logo en móvil */
    .logo img {
        height: 50px;
    }
    
    .logo-text {
        font-size: 1.2rem;
    }
}

.mi-swal-titulo {
    color: #EEE !important;
}

.alertTexto{
    color: #EEE !important;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    margin-top: 1.5rem;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0.5rem;
}

@media (max-width: 768px) {
    .hero .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }
    
    .hero .hero-actions .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* Reviews Section */
.reviews {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
    background: rgba(10, 14, 23, 0.7);
}

.reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 70% 30%, rgba(0, 216, 255, 0.05), transparent 70%);
    z-index: -1;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.review-card {
    background: rgba(10, 14, 23, 0.7);
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid rgba(0, 216, 255, 0.1);
    transition: all 0.3s;
    backdrop-filter: blur(5px);
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--neon-glow);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.review-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.review-info h4 {
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.review-info p {
    color: var(--gray);
    font-size: 0.9rem;
}

.review-stars {
    color: var(--primary);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.review-stars .far,
.review-stars .fas.fa-star-half-alt {
    color: rgba(0, 216, 255, 0.5);
}

.review-text {
    color: var(--light);
    font-style: italic;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}