:root {
    --primary: #0E0505;
    --secondary: #1F133A;
    --accent: #25D366;
    --accent-dark: #1DA851;
    --accent-light: rgba(37, 211, 102, 0.1);
    --light: #F8FAFC;
    --gray: #7A7A7A;
    --dark: #090909;
    --white: #FFFFFF;
    --gradient: linear-gradient(70deg, #0E0505F0 25%, #1F133A2B 100%);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.15);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: all 0.3s ease;
}

/* ========== RESET ========== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ========== UTILITIES ========== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.label {
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 10px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, #a4e005 100%);
    color: var(--white);
    border: none;
    box-shadow: 0 4px 15px rgba(148, 202, 4, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, #a4e005 0%, var(--accent) 100%);
    z-index: -1;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(148, 202, 4, 0.45);
    color: var(--white);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 16px;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 12px;
}

/* ========== TOP BAR ========== */
.top-bar {
    background: var(--primary);
    color: var(--white);
    padding: 8px 0;
    font-size: 13px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.top-bar a {
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0.85;
}

.top-bar a:hover {
    opacity: 1;
    color: var(--accent);
}

/* ========== HEADER ========== */
.header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(255,255,255,0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    padding-bottom: 15px;
}

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

.logo-text {
    font-size: 28px;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logo img {
    height: 140px;
    transform: scale(1.1);
    transform-origin: left center;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.15);
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    font-weight: 500;
    color: var(--dark);
    position: relative;
    padding: 4px 0;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

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

.menu-toggle {
    display: none;
    font-size: 24px;
    color: var(--dark);
    padding: 8px;
}

.header-cta {
    display: inline-flex;
}

/* ========== HERO ========== */
.hero {
    background: var(--gradient);
    color: var(--white);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://la-net.co/wp-content/uploads/2022/12/happy-college-students-and-their-teacher-using-computer-in-the-classroom-.jpg') center/cover;
    opacity: 0.2;
}

.hero .container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero h1 {
    font-size: clamp(28px, 5vw, 48px);
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero h1 b {
    color: var(--accent);
}

.hero p {
    font-size: clamp(16px, 2vw, 18px);
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 30px;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
}

.hero-features i {
    color: var(--accent);
}

/* ========== LOGOS CAROUSEL ========== */
.logos {
    padding: 60px 0;
    background: var(--light);
    overflow: hidden;
}

.logos h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: clamp(22px, 3vw, 28px);
    color: var(--primary);
}

.logos-carousel {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

.logos-track {
    display: flex;
    gap: 50px;
    animation: scroll 20s linear infinite;
    width: max-content;
}

.logos-track:hover {
    animation-play-state: paused;
}

.logo-slide {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-slide img {
    height: 140px;
    width: auto;
    opacity: 0.7;
    transition: var(--transition);
    filter: grayscale(0%);
}

.logo-slide img:hover {
    opacity: 1;
    transform: scale(1.1);
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ========== ABOUT ========== */
.about {
    padding: 80px 0;
}

.about .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    font-size: clamp(24px, 3vw, 36px);
    margin-bottom: 20px;
    color: var(--primary);
}

.about-content p {
    color: var(--gray);
    margin-bottom: 30px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-feature {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.about-feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 20px;
    flex-shrink: 0;
}

.about-feature h4 {
    font-size: 16px;
    margin-bottom: 4px;
    color: var(--primary);
}

.about-feature p {
    font-size: 14px;
    margin: 0;
}

/* ========== PLANS ========== */
.plans {
    padding: 80px 0;
    background: var(--light);
}

.plans-header {
    text-align: center;
    margin-bottom: 50px;
}

.plans-header h2 {
    font-size: clamp(24px, 3vw, 36px);
    color: var(--primary);
    margin-bottom: 10px;
}

.plans-header p {
    color: var(--gray);
    max-width: 500px;
    margin: 0 auto;
}

.plans-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}

.plan-card {
    flex: 1 1 300px;
    max-width: 340px;
    background: var(--white);
    border-radius: var(--radius);
    padding: 35px 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.plan-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.plan-card.featured {
    border: 2px solid var(--accent);
}

.plan-card.featured::before {
    content: 'Popular';
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--accent);
    color: var(--white);
    padding: 4px 40px;
    font-size: 12px;
    font-weight: 600;
    transform: rotate(45deg);
}

.plan-icons {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.plan-icons i {
    font-size: 24px;
    color: var(--accent);
}

.plan-speed {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
}

.plan-symmetric {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--accent-dark);
    font-size: 14px;
    margin-bottom: 8px;
}

.plan-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--accent-light);
    color: var(--accent-dark);
    font-size: 13px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 8px;
    width: fit-content;
}

.plan-stable {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 20px;
}

.plan-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 5px;
}

.plan-price .currency {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

.plan-price .amount {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.plan-period {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 5px;
}

.plan-note {
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 20px;
}

.plan-card .btn {
    width: 100%;
    margin-top: auto;
}

/* ========== FIBER ========== */
.fiber {
    padding: 80px 0;
}

/* ========== SPEED TEST ========== */
.speed-test {
    padding: 100px 0;
    background: var(--primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.speed-test::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://la-net.co/wp-content/uploads/2024/08/png-transparent-internet-enterprise-business-background-company-website-banner-corporate-banner-tech-internet-1.png') center/cover;
    opacity: 0.1;
    z-index: 0;
}

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

.speed-test-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.speed-test-header {
    flex: 1;
    max-width: 500px;
}

.speed-test-header .badge {
    display: inline-block;
    background: rgba(37, 211, 102, 0.15);
    color: var(--accent);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.speed-test-header h2 {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 20px;
    line-height: 1.2;
}

.speed-test-header p {
    font-size: 18px;
    color: #b0b0b0;
    margin-bottom: 40px;
    line-height: 1.6;
}

.speed-test-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.st-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    padding: 15px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.st-feature i {
    color: var(--accent);
    font-size: 20px;
}

.st-feature span {
    font-weight: 600;
    font-size: 16px;
}

.nperf-card-container {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.nperf-card-container::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(37,211,102,0.15) 0%, rgba(0,0,0,0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
    pointer-events: none;
}

.nperf-wrapper {
    width: 100%;
    max-width: 500px;
    background: #ffffff;
    border-radius: 24px;
    padding: 10px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    border: 4px solid rgba(255,255,255,0.1);
    background-clip: padding-box;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 520px;
}

/* Forzado absoluto para el iframe inyectado */
#nPerfSpeedTest, 
.nperf-wrapper iframe {
    width: 100% !important;
    height: 500px !important;
    border: none !important;
    border-radius: 16px;
    margin: 0 auto !important;
    display: block !important;
}

.speed-test-footer {
    text-align: center;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
    font-size: 14px;
}

.speed-test-footer a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

.speed-test-footer a:hover {
    color: #fff;
}

@media (max-width: 992px) {
    .speed-test-content {
        flex-direction: column;
        text-align: center;
    }
    .speed-test-header {
        max-width: 100%;
    }
    .speed-test-header .badge {
        margin: 0 auto 20px;
    }
    .speed-test-features {
        align-items: center;
    }
    .st-feature {
        width: 100%;
        max-width: 350px;
        justify-content: center;
    }
}

/* ========== BUSINESS ========== */
.business {
    padding: 100px 0;
    background: var(--light);
    color: var(--dark);
    position: relative;
    overflow: hidden;
}

.business::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 80% 50%, rgba(37, 211, 102, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.business-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(37, 211, 102, 0.2);
    border-radius: 32px;
    padding: 60px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    position: relative;
    z-index: 1;
}

@supports (backdrop-filter: blur(20px)) {
    .business-card {
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }
}

.business-badge {
    display: inline-block;
    background: rgba(37, 211, 102, 0.15);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.business-content h2 {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 25px;
    line-height: 1.1;
    color: var(--dark);
}

.business-content p {
    font-size: 18px;
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 30px;
}

.business-features {
    list-style: none;
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding: 0;
}

.business-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--dark);
}

.business-features i {
    color: var(--primary);
    font-size: 20px;
    background: rgba(37, 211, 102, 0.15);
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 10px;
    flex-shrink: 0;
}

.btn-premium {
    background: var(--primary);
    color: var(--white);
    font-weight: 800;
    padding: 16px 32px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
    background: #20b858;
    color: var(--white);
}

.business-image-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.glow-circle {
    position: absolute;
    width: 300px;
    height: 300px;
    background: var(--primary);
    filter: blur(100px);
    opacity: 0.2;
    border-radius: 50%;
    z-index: -1;
    animation: pulse 4s infinite alternate;
}

.floating-img {
    width: 100%;
    max-width: 400px;
    animation: float 6s ease-in-out infinite;
}

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

@keyframes pulse {
    0% { transform: scale(0.8); opacity: 0.1; }
    100% { transform: scale(1.2); opacity: 0.3; }
}

@media (max-width: 900px) {
    .business-card {
        grid-template-columns: 1fr;
        padding: 40px 20px;
    }
    .business-features { grid-template-columns: 1fr; }
}

/* ========== SUPPORT ========== */
.support {
    padding: 80px 0;
    background: var(--light);
}

.support-header {
    text-align: center;
    margin-bottom: 50px;
}

.support-header h2 {
    font-size: clamp(24px, 3vw, 36px);
    color: var(--primary);
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.support-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.support-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.support-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 28px;
}

.support-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary);
}

.support-card p {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 20px;
}

/* ========== PROCESS ========== */
.process {
    padding: 80px 0;
}

.process .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.process-content h2 {
    font-size: clamp(24px, 3vw, 36px);
    color: var(--primary);
    margin-bottom: 10px;
}

.process-content > p {
    color: var(--gray);
    margin-bottom: 40px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.process-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--primary);
}

.step-content p {
    color: var(--gray);
    font-size: 14px;
}

/* ========== CONTACT FORM ========== */
.contact-form {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.contact-form h2 {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 5px;
}

.contact-form > p {
    color: var(--gray);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-weight: 500;
    color: var(--dark);
    font-size: 14px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(148, 202, 4, 0.15);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form .btn {
    width: 100%;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--primary);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo img {
    height: 130px;
    margin-bottom: 15px;
}

.footer-logo p {
    opacity: 0.7;
    font-size: 14px;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--accent);
}

.footer h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    opacity: 0.7;
    font-size: 14px;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent);
}

.newsletter p {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 14px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.footer-bottom p {
    opacity: 0.6;
    font-size: 13px;
    margin: 0;
}

.footer-contact {
    opacity: 0.8 !important;
    font-size: 14px !important;
}



/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
    .about .container,
    .business .container,
    .process .container {
        grid-template-columns: 1fr;
    }

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

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

    .plans-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }
}

@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
        text-align: center;
    }

    .top-bar-left,
    .top-bar-right {
        justify-content: center;
    }

    .menu-toggle {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow);
        gap: 15px;
    }

    .nav-menu.active {
        display: flex;
    }

    .header-cta {
        display: none;
    }

    .hero {
        padding: 60px 0;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .nperf-wrapper {
        max-width: 100%;
        border-radius: 16px;
    }

    .nperf-iframe, #nPerfSpeedTest,
    .nperf-wrapper iframe {
        height: 500px !important;
        max-width: 100% !important;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .contact-form {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .plans-grid {
        grid-template-columns: 1fr;
    }

    .logo-slide img {
        height: 100px;
    }

}

/* ========== WHATICKET WIDGET ========== */
/* Forzamos el tamaño del widget de Whaticket para que sea más grande */
div[id*="wtt"], iframe[src*="whaticket"] {
    transform: scale(1.15) !important;
    transform-origin: bottom right !important;
}
