/* Reset y Variables CSS */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* CORRECCIONES CRÍTICAS PARA MÓVIL */
html {
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    overflow-x: hidden;
    max-width: 100vw;
    position: relative;
}

/* Evitar desbordamiento de imágenes */
img {
    max-width: 100%;
    height: auto;
}

/* Evitar desbordamiento de contenedores - pero no elementos fixed */
.container,
.section,
main {
    max-width: 100%;
}

/* Excepciones para elementos fixed como el widget */
.whatsapp-widget,
.header,
[style*="position: fixed"] {
    max-width: none !important;
}

:root {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary-color: #06b6d4;
    --accent-color: #f59e0b;
    --success-color: #10b981;
    --text-primary: #111827;
    --text-secondary: #6b7280;
    --text-light: #ffffff;
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --bg-dark: #111827;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --border-radius: 0.5rem;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    }.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header y Navegación */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    transition: var(--transition);
}

.navbar {
    padding: 0.75rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo {
    height: 40px;
    width: 120px;
    display: block;
    flex-shrink: 0;
    transition: var(--transition);
    object-fit: contain;
}

.logo:hover {
    transform: rotate(5deg) scale(1.05);
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -0.25rem;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

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

.cta-button {
    background: var(--primary-color);
    color: var(--text-light) !important;
    padding: 0.5rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
}

.cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

/* Enlaces de WhatsApp en el header */
.whatsapp-links {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.whatsapp-header-link {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    text-decoration: none;
    color: #25d366;
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.4rem 0.6rem;
    border-radius: 20px;
    border: 1px solid #25d366;
    transition: var(--transition);
    background: rgba(37, 211, 102, 0.1);
}

.whatsapp-header-link:hover {
    background: #25d366;
    color: white;
    transform: translateY(-1px);
}

.whatsapp-header-link i {
    font-size: 0.9rem;
}

.whatsapp-header-link span {
    font-size: 0.75rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    position: relative;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--text-light);
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-logo {
    text-align: left;
    margin-bottom: 2rem;
}

.hero-logo-img {
    height: 160px;
    width: auto;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

.hero-logo-fallback {
    height: 160px;
    width: auto;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #ffffff, #e0e7ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--text-light);
    color: var(--primary-color);
}

.btn-primary:hover {
    background: transparent;
    color: var(--text-light);
    border-color: var(--text-light);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border-color: var(--text-light);
}

.btn-secondary:hover {
    background: var(--text-light);
    color: var(--primary-color);
}

.hero-features {
    display: flex;
    gap: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.hero-image {
    position: relative;
    max-width: 100%;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
    max-width: 100%;
    object-fit: contain;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

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

/* Planes */
.plans {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1rem;
}

.plan-card {
    background: var(--bg-primary);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
}

.plan-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: var(--shadow-xl);
}

.plan-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.plan-badge {
    position: absolute;
    top: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--text-light);
    padding: 0.25rem 1rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.plan-header {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.plan-speed {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.currency {
    font-size: 1.25rem;
    font-weight: 500;
}

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

.period {
    font-size: 1rem;
    color: var(--text-secondary);
}

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

.plan-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
}

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

.plan-button {
    width: 100%;
    background: var(--primary-color);
    color: var(--text-light);
    border: none;
    padding: 0.75rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.plan-button:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

/* Cobertura */
.coverage {
    padding: 6rem 0;
}

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

.coverage-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
}

.stat {
    text-align: center;
}

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

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.coverage-checker {
    margin-top: 2rem;
}

.coverage-checker h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.input-group {
    display: flex;
    gap: 0.5rem;
}

.address-input {
    flex: 1;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
}

.address-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.check-button {
    background: var(--primary-color);
    color: var(--text-light);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.check-button:hover {
    background: var(--primary-dark);
}

.coverage-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

/* Formas de Pago */
.payment-methods {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

/* Secciones de Pago */
.payment-section {
    margin-bottom: 4rem;
}

.payment-section:last-child {
    margin-bottom: 0;
}

.payment-section-title {
    text-align: center;
    font-size: 1.75rem;
    margin-bottom: 2.5rem;
    color: var(--text-primary);
    position: relative;
}

.payment-section-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Título dentro del contenedor de logos - parte superior */
.payment-section-title-inside {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin: 0;
    z-index: 4;
    background: none;
    padding: 0;
    border-radius: 0;
    backdrop-filter: none;
    box-shadow: none;
    width: calc(100% - 2rem);
    max-width: 100%;
    word-wrap: break-word;
}

/* Título dentro del contenedor responsive 768px */
    .payment-section-title-inside {
        font-size: 1.5rem;
        top: 12px;
    }

/* Título dentro del contenedor responsive 480px */
    .payment-section-title-inside {
        font-size: 1.2rem;
        top: 10px;
    }

/* Tarjetas Bancarias */
.bank-payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

.bank-payment-card {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
}

.bank-payment-card:hover {
    transform: translateY(-0.25rem);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.bank-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 360px;
    height: auto;
    min-height: 240px;
    background: transparent;
    border-radius: 12px;
    transition: var(--transition);
    position: relative;
    flex-shrink: 0;
}

.bank-logo:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Hover effects para todos los logos */
.main-logo:hover,
.mi-vecino-logo:hover,
.guayaquil-logo:hover {
    transform: scale(1.05) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
}

.bank-logo img {
    height: auto;
    max-height: 180px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.1));
    transition: var(--transition);
}

.bank-logo:hover img {
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.2));
    transform: scale(1.05);
}

/* Asegurar centrado perfecto para todos los logos bancarios */
.bank-payment-card .bank-logo {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center;
}

.bank-payment-card .bank-logo img {
    margin: 0 auto;
    display: block;
}

/* Específico para logo de Guayaquil para asegurar centrado */
.bank-payment-card:nth-child(2) .bank-logo {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
}

.bank-payment-card:nth-child(2) .bank-logo img {
    margin: 0 auto !important;
    display: block !important;
}

/* Contenedor único para todos los logos bancarios - más compacto */
.all-banks-container {
    display: block;
    position: relative;
    width: 95%;
    max-width: 700px;
    margin: 0 auto 2rem auto;
    min-height: 180px;
    padding: 1rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 16px;
    border: 2px solid #e2e8f0;
    overflow: hidden;
}

/* Logo principal Pichincha - ajustado para dejar espacio al título */
.main-logo {
    position: absolute !important;
    top: 40px !important;
    left: 30px !important;
    width: 180px !important;
    height: 100px !important;
    transform: none !important;
    z-index: 3 !important;
}

.main-logo img {
    height: 80px !important;
    max-width: 160px !important;
    width: auto !important;
    object-fit: contain !important;
}

/* Logo Mi Vecino - ajustado para dejar espacio al título */
.mi-vecino-logo {
    position: absolute !important;
    bottom: 10px !important;
    left: 100px !important;
    width: 130px !important;
    height: 80px !important;
    transform: none !important;
    z-index: 2 !important;
}

.mi-vecino-logo img {
    height: 55px !important;
    width: auto !important;
    max-width: 110px !important;
    object-fit: contain !important;
}

/* Logo Guayaquil - ajustado para dejar espacio al título */
.guayaquil-logo {
    position: absolute !important;
    top: 40px !important;
    right: 30px !important;
    transform: none !important;
    width: 180px !important;
    height: 100px !important;
    z-index: 3 !important;
}

.guayaquil-logo img {
    height: 80px !important;
    width: auto !important;
    max-width: 160px !important;
    object-fit: contain !important;
}

.mi-vecino-info {
    font-size: 0.875rem !important;
    color: var(--text-secondary) !important;
    text-align: center;
    margin: 1rem 0 0 0 !important;
    line-height: 1.4;
    padding: 0.5rem;
}

/* Animación de pulso para logos bancarios */
@keyframes bankLogoPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 99, 235, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
    }
}

/* Efectos específicos para cada banco */
.bank-payment-card:nth-child(1) .bank-logo {
    animation: bankLogoPulse 3s infinite;
    animation-delay: 0s;
}

.bank-payment-card:nth-child(2) .bank-logo {
    animation: bankLogoPulse 3s infinite;
    animation-delay: 1.5s;
}

.bank-payment-card h4 {
    text-align: center;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-weight: 600;
}

.payment-methods-bank {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 1rem;
}

.method-tag {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.method-tag.mi-vecino {
    background: var(--accent-color);
}

/* Instrucciones de Pago */
.payment-instructions {
    margin-top: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.instruction-card {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--success-color);
}

.instruction-card h4 {
    color: var(--success-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

.instruction-card ul {
    list-style: none;
    padding: 0;
}

.instruction-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e5e7eb;
    color: var(--text-secondary);
    line-height: 1.6;
}

.instruction-card li:last-child {
    border-bottom: none;
}

.instruction-card li::before {
    content: '✓';
    color: var(--success-color);
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    padding: 4rem 0 0;
    border-top: 1px solid #e5e7eb;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1.5fr;
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 100%;
    overflow: hidden;
}

.footer-main {
    grid-column: 1 / 2;
}

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

.footer-logo .logo {
    width: 40px;
    height: 40px;
}

.footer-logo .brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--text-light);
    border-radius: 50%;
    transition: var(--transition);
    text-decoration: none;
}

.social-links a:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.footer-section h3 {
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-section a:hover {
    color: var(--primary-color);
    padding-left: 0.25rem;
}

.footer-contact .contact-info p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-contact .contact-info i {
    color: var(--primary-color);
    width: 16px;
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid #e5e7eb;
    padding: 2rem 0;
    background: var(--bg-primary);
}

.footer-bottom-content {
    text-align: center;
    color: var(--text-secondary);
}

.footer-bottom-content p {
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
}

.footer-bottom-content p:last-child {
    margin-bottom: 0;
    font-weight: 500;
    color: var(--primary-color);
}

/* Logo centrado y grande en footer */
.footer-logo-centered {
    justify-content: center;
    margin-bottom: 2rem;
    width: 100%;
}

.footer-logo .logo-large {
    width: 100%;
    max-width: 300px;
    height: auto;
    max-height: 150px;
}

.footer-logo .logo-fallback-large {
    width: 150px;
    height: 150px;
}

/* Footer responsive para móviles pequeños */
@media (max-width: 480px) {
    .footer-logo .logo-large {
        width: 100%;
        max-width: 200px;
        max-height: 100px;
    }
    
    .footer-logo .logo-fallback-large {
        width: 100px;
        height: 100px;
    }
    
    .footer-logo-centered {
        margin-bottom: 1.5rem;
    }
}

/* Widget flotante de WhatsApp */
.whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
    animation: slideInUp 0.5s ease-out 1s forwards;
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.whatsapp-button {
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    min-width: 70px;
    height: 70px;
    border-radius: 35px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all var(--transition);
    overflow: hidden;
    padding: 0 20px 0 15px;
    gap: 12px;
}

.whatsapp-content {
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
    position: relative;
}

.whatsapp-button i {
    font-size: 2rem;
    animation: bounce 2s infinite;
}

.whatsapp-text {
    font-size: 1rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.whatsapp-button:hover .whatsapp-text {
    opacity: 1;
    transform: translateX(0);
}

.whatsapp-button:hover {
    min-width: 180px;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
    background: linear-gradient(135deg, #128c7e, #25d366);
}

.whatsapp-pulse {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 35px;
    background: rgba(37, 211, 102, 0.3);
    animation: pulseRing 2s ease-out infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

@keyframes pulseRing {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.3);
        opacity: 0;
    }
}

/* Responsive para el widget */
@media (max-width: 768px) {
    .whatsapp-widget {
        bottom: 25px;
        right: 25px;
    }
    
    .whatsapp-button {
        min-width: 65px;
        height: 65px;
        border-radius: 32px;
        padding: 0 18px 0 12px;
    }
    
    .whatsapp-button i {
        font-size: 1.8rem;
    }
    
    .whatsapp-text {
        font-size: 0.9rem;
    }
    
    .whatsapp-button:hover {
        min-width: 160px;
    }
    
    .whatsapp-pulse {
        border-radius: 32px;
    }
}

@media (max-width: 480px) {
    .whatsapp-widget {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-button {
        min-width: 60px;
        height: 60px;
        border-radius: 30px;
        padding: 0 15px 0 10px;
    }
    
    .whatsapp-button i {
        font-size: 1.6rem;
    }
    
    .whatsapp-text {
        font-size: 0.85rem;
    }
    
    .whatsapp-button:hover {
        min-width: 140px;
    }
    
    .whatsapp-pulse {
        border-radius: 30px;
    }
}

/* Responsive para navegación mobile */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        border-top: 1px solid var(--border-color);
        padding: 2rem 0;
        gap: 0;
        z-index: 999;
    }

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

    .nav-menu .nav-item {
        margin: 1rem 0;
    }

    .nav-menu .nav-link {
        font-size: 1.1rem;
        padding: 0.75rem 1rem;
        display: block;
        border-radius: 8px;
        margin: 0 1rem;
        transition: var(--transition);
    }

    .nav-menu .nav-link:hover {
        background: var(--bg-secondary);
        color: var(--primary-color);
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Ajustes específicos para WhatsApp en móvil */
    .whatsapp-links {
        gap: 0.3rem;
        flex-direction: column;
        margin-top: 1rem;
    }
    
    .whatsapp-header-link {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        width: auto;
        justify-content: center;
        margin: 0.25rem 1rem;
    }
    
    .whatsapp-header-link i {
        font-size: 1rem;
    }
    
    .whatsapp-header-link span {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 0.5rem;
    }
    
    .logo {
        height: 35px;
        width: 105px;
    }
    
    .nav-menu {
        top: 65px;
        padding: 1.5rem 0;
    }
    
    .nav-menu .nav-link {
        font-size: 1rem;
        margin: 0 0.5rem;
    }
    
    .whatsapp-header-link {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
        margin: 0.2rem 0.5rem;
    }
}

/* Responsive para logo del hero */
@media (max-width: 768px) {
    .hero-logo-img,
    .hero-logo-fallback {
        height: 120px;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        margin-bottom: 1.5rem;
    }
    
    .hero-logo-img,
    .hero-logo-fallback {
        height: 100px;
    }
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 1.5rem;
    }
    
    .footer-main {
        grid-column: 1 / 2;
    }
    
    .footer-section:nth-child(5) {
        grid-column: 2 / 5;
        margin-top: 2rem;
    }
    
    .footer-contact {
        grid-column: 1 / 5;
        margin-top: 2rem;
        border-top: 1px solid #e5e7eb;
        padding-top: 2rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-main {
        grid-column: 1 / 3;
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .footer-section {
        grid-column: auto;
    }
    
    .footer-contact {
        grid-column: 1 / 3;
        text-align: center;
        margin-top: 2rem;
        border-top: 1px solid #e5e7eb;
        padding-top: 2rem;
    }
    
    .footer-contact .contact-info p {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    /* Contenedor único responsive 768px */
    .all-banks-container {
        width: 90%;
        max-width: 600px;
        min-height: 180px;
        padding: 1rem;
    }
    

    
    .main-logo {
        top: 45px !important;
        left: 30px !important;
        width: 160px !important;
        height: 100px !important;
    }
    
    .main-logo img {
        height: 75px !important;
        max-width: 140px !important;
    }
    
    .mi-vecino-logo {
        bottom: 15px !important;
        left: 80px !important;
        width: 120px !important;
        height: 75px !important;
    }
    
    .mi-vecino-logo img {
        height: 55px !important;
        max-width: 100px !important;
    }
    
    .guayaquil-logo {
        top: 45px !important;
        right: 30px !important;
        transform: none !important;
        width: 160px !important;
        height: 100px !important;
    }
    
    .guayaquil-logo img {
        height: 75px !important;
        max-width: 140px !important;
    }
    
    .guayaquil-logo:hover {
        transform: translateY(-50%) scale(1.05) !important;
    }
    
    .bank-payment-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
    
    .mi-vecino-logo img {
        height: 35px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2rem 0 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-main {
        grid-column: 1;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-contact {
        grid-column: 1;
    }
    
    .footer-logo, 
    .footer-logo-centered {
        justify-content: center;
        width: 100%;
    }
    
    .footer-logo .logo-large {
        width: 100%;
        max-width: 200px;
        max-height: 100px;
    }
    
    .footer-logo .logo-fallback-large {
        width: 100px;
        height: 100px;
    }
    
    .footer-section h3 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .footer-section a {
        font-size: 0.85rem;
    }
    
    .footer-bottom-content p {
        font-size: 0.8rem;
    }
    
    /* Contenedor único responsive 480px */
    .all-banks-container {
        width: 95%;
        max-width: 400px;
        min-height: 140px;
        padding: 0.8rem;
    }
    

    
    .main-logo {
        top: 35px !important;
        left: 20px !important;
        width: 110px !important;
        height: 70px !important;
    }
    
    .main-logo img {
        height: 50px !important;
        max-width: 90px !important;
    }
    
    .mi-vecino-logo {
        bottom: 10px !important;
        left: 50px !important;
        width: 80px !important;
        height: 50px !important;
    }
    
    .mi-vecino-logo img {
        height: 35px !important;
        max-width: 65px !important;
    }
    
    .guayaquil-logo {
        top: 35px !important;
        right: 20px !important;
        transform: none !important;
        width: 110px !important;
        height: 70px !important;
    }
    
    .guayaquil-logo img {
        height: 50px !important;
        max-width: 90px !important;
    }
    
    .guayaquil-logo:hover {
        transform: translateY(-50%) scale(1.05) !important;
    }
    
    .bank-logo:hover img {
        transform: scale(1.02);
    }
    
    .mi-vecino-logo img {
        height: 30px;
    }
    
    .mi-vecino-info {
        font-size: 0.8rem !important;
    }
}

/* Grid de ciudades en cobertura */
.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.city-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(37, 99, 235, 0.05);
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 1px solid rgba(37, 99, 235, 0.1);
}

.city-item:hover {
    background: rgba(37, 99, 235, 0.1);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.city-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.city-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.city-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Responsive para ciudades */
@media (max-width: 768px) {
    .cities-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .city-item {
        padding: 1rem;
    }
    
    .city-item i {
        font-size: 1.2rem;
    }
    
    .city-item h4 {
        font-size: 1rem;
    }
    
    .city-item p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .cities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Sección Diferenciación */
.differentiation {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, #fff 100%);
}

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

.differentiation-header {
    margin-bottom: 3rem;
}

.differentiation-header .section-title {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 700;
}

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

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

.diff-card {
    background: var(--bg-primary);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.diff-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.diff-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.diff-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.diff-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.verification-banner {
    background: linear-gradient(135deg, #ff6b6b, #ee5a52);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    color: white;
    box-shadow: var(--shadow-lg);
    margin-top: 2rem;
}

.verification-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.verification-content i {
    font-size: 2rem;
    color: #ffeb3b;
    flex-shrink: 0;
}

.verification-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.verification-content p {
    opacity: 0.9;
    margin: 0;
}

/* Banner de Compromiso */
.commitment-banner {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-top: 3rem;
    text-align: center;
    color: white;
    box-shadow: var(--shadow-lg);
}

.commitment-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.commitment-content p {
    font-size: 1.1rem;
    margin: 0;
    opacity: 0.95;
}

@media (max-width: 768px) {
    .commitment-banner {
        padding: 1.5rem;
        margin-top: 2rem;
    }
    
    .commitment-content h3 {
        font-size: 1.3rem;
    }
    
    .commitment-content p {
        font-size: 1rem;
    }
}

/* Responsive para diferenciación */
@media (max-width: 768px) {
    .differentiation-header .section-title {
        font-size: 2rem;
    }
    
    .differentiation-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .diff-card {
        padding: 1.5rem;
    }
    
    .verification-content {
        flex-direction: column;
        text-align: center;
    }
    
    .verification-content i {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .differentiation {
        padding: 2rem 0;
    }
    
    .diff-card {
        padding: 1rem;
    }
    
    .diff-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Sección de Cobertura Actualizada */
.coverage-actions {
    text-align: center;
    padding: 2rem;
}

.coverage-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    margin-bottom: 1rem;
}

.coverage-note {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* Modal de Sectores */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(3px);
    overflow-y: auto;
    padding: 20px 0;
}

.modal.show {
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

body.modal-open {
    overflow: hidden;
}

.modal-content {
    background-color: white;
    margin: 0;
    padding: 0;
    border-radius: 16px;
    width: 85%;
    max-width: 500px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
    position: relative;
    max-height: 80vh;
    overflow-y: auto;
}

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

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 2px solid var(--border-color);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 16px 16px 0 0;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 600;
}

.close {
    color: white;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    line-height: 1;
}

.close:hover {
    opacity: 0.7;
    transform: scale(1.1);
}

.modal-body {
    padding: 1.5rem;
}

.sectors-modal-list .sectors-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border-color);
}

.sectors-modal-list .sectors-header i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.sectors-modal-list .sectors-header p {
    margin: 0;
    color: var(--text-secondary);
}

.sectors-modal-list .sectors-items {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.4rem;
}

.sectors-modal-list .sectors-items li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    color: var(--text-primary);
    font-size: 1rem;
    border-radius: 8px;
    transition: var(--transition);
    background: var(--bg-secondary);
}

.sectors-modal-list .sectors-items li i {
    color: var(--success-color);
    font-size: 0.9rem;
}

.sectors-modal-list .sectors-items li:hover {
    background: var(--primary-color);
    color: white;
}

.sectors-modal-list .sectors-items li:hover i {
    color: white;
}

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

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

@media (max-width: 768px) {
    .modal-content {
        margin: 5% auto;
        width: 95%;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .modal-header {
        padding: 1.25rem 1.5rem;
    }
    
    .modal-header h3 {
        font-size: 1.1rem;
    }
    
    .modal-body {
        padding: 1.25rem;
    }
    
    .sectors-modal-list .sectors-items {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .sectors-modal-list .sectors-items li {
        padding: 1rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .modal-content {
        margin: 2% auto;
        width: 98%;
        max-height: 95vh;
        border-radius: 12px;
    }
    
    .modal-header {
        padding: 1rem;
        border-radius: 12px 12px 0 0;
    }
    
    .modal-header h3 {
        font-size: 1rem;
    }
    
    .close {
        font-size: 24px;
    }
    
    .modal-body {
        padding: 1rem;
    }
    
    .sectors-modal-list .sectors-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
        margin-bottom: 0.75rem;
    }
    
    .sectors-modal-list .sectors-header i {
        align-self: flex-start;
    }
    
    .sectors-modal-list .sectors-items {
        gap: 0.4rem;
    }
    
    .sectors-modal-list .sectors-items li {
        padding: 0.875rem;
        font-size: 0.9rem;
    }
    
    .sectors-footer {
        padding: 0.75rem 0 0;
    }
    
    .sectors-footer p {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }
}