
.portabilidad-page {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

.header-bait {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-top {
    background: white;
    padding: 1rem 0;
    border-bottom: 1px solid #E5E7EB;
}

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

.bait-logo-header {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.bait-logo-image {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.distributor-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.search-section {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    justify-content: center;
}

.search-icon {
    font-size: 1.2rem;
    color: #FFD700;
}

.search-text {
    color: #1a1a1a;
    font-weight: 500;
    font-size: 1rem;
}

.header-buttons {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.btn-yellow {
    background: #FFD700;
    color: #1a1a1a;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-yellow:hover {
    background: #FFA500;
    transform: translateY(-1px);
}

.btn-black {
    background: #1a1a1a;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-black:hover {
    background: #333;
    transform: translateY(-1px);
}

.header-bottom {
    background: #FFD700;
    padding: 0.75rem 0;
}

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

.menu-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    flex-shrink: 0;
}

.menu-text {
    color: #1a1a1a;
    font-weight: 600;
    font-size: 1rem;
}

.menu-arrow {
    color: #1a1a1a;
    font-size: 0.8rem;
}

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

.nav-link-bait {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link-bait:hover {
    color: #333;
}


@media (max-width: 768px) {
    .header-top-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .search-section {
        order: 2;
        width: 100%;
        justify-content: flex-start;
    }
    
    .header-buttons {
        order: 3;
        width: 100%;
        justify-content: center;
    }
    
    .nav-menu-bait {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #FFD700;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        gap: 1rem;
    }
    
    .nav-menu-bait.active {
        display: flex;
    }
    
    .header-bottom-content {
        position: relative;
    }
    
    .bait-logo-image {
        height: 35px;
    }
}


.portabilidad-hero {
    padding: 160px 0 60px;
    background: #FFD700;
    color: #1a1a1a;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.portabilidad-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(0,0,0,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    gap: 3rem;
    position: relative;
    z-index: 2;
    max-width: 1600px;
    margin: 0 auto;
    align-items: start;
    min-height: 600px;
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    width: 100%;
    padding: 2rem 0;
}

.hero-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    gap: 1.5rem;
}

.hero-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 0 1rem;
        min-height: auto;
    }
    
    .hero-left {
        align-items: center;
        text-align: center;
        padding: 1rem 0;
    }
    
    .hero-center {
        align-items: center;
        order: 1;
    }
    
    .hero-right {
        align-items: center;
        order: 2;
    }
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-align: left;
    color: #1a1a1a;
}

.hero-title .subtitle {
    display: block;
    font-size: 0.75em;
    font-weight: 700;
    margin-top: 0.5rem;
    opacity: 1;
    color: #1a1a1a;
}

.text-gradient {
    background: linear-gradient(45deg, #FF6B6B, #E91E63);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #E91E63;
}


.hero-text {
    text-align: left;
}

.bait-logo-hero {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border: 3px solid rgba(255,255,255,0.3);
}

.bait-hero-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .bait-logo-hero {
        align-self: center;
    }
}

.phone-mockup {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 25px;
    padding: 8px;
    width: 200px;
    height: 400px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    position: relative;
}

.phone-screen {
    background: #FFD700;
    border-radius: 18px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    padding: 10px;
}

.phone-notch {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 20px;
    background: #1a1a1a;
    border-radius: 0 0 10px 10px;
    z-index: 2;
}

.phone-content {
    padding: 25px 15px 15px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bait-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}

.wifi-icon {
    font-size: 1rem;
}

.bait-phone-logo {
    height: 20px;
    width: auto;
    object-fit: contain;
}


.offer-card {
    background: white;
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.price-box {
    background: #FFD700;
    border-radius: 8px;
    padding: 8px;
    text-align: center;
}

.price-text {
    display: block;
    font-size: 0.7rem;
    color: #1a1a1a;
    font-weight: 500;
}

.price-amount {
    display: block;
    font-size: 1.8rem;
    font-weight: 900;
    color: #1a1a1a;
    line-height: 1;
}

.price-period {
    display: block;
    font-size: 0.7rem;
    color: #1a1a1a;
    font-weight: 500;
}

.data-box {
    background: #3B82F6;
    border-radius: 8px;
    padding: 8px 6px;
    text-align: center;
    overflow: hidden;
}

.data-text {
    display: block;
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.apps-row {
    display: flex;
    justify-content: center;
    gap: 3px;
    margin-bottom: 4px;
    padding: 0 4px;
    flex-wrap: nowrap;
    overflow: hidden;
}

.app-icon {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    background: rgba(255,255,255,0.2);
    flex-shrink: 0;
}

.unlimited-text {
    display: block;
    color: white;
    font-size: 0.7rem;
    font-weight: 600;
}

.duration-box {
    background: #1a1a1a;
    border-radius: 8px;
    padding: 8px;
    text-align: center;
}

.duration-text {
    display: block;
    color: white;
    font-size: 0.7rem;
    font-weight: 500;
}

.duration-amount {
    display: block;
    color: #FFD700;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1;
}

.signal-bars {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    gap: 3px;
    align-items: flex-end;
}

.signal-bars span {
    width: 3px;
    background: #1a1a1a;
    border-radius: 1px;
}

.signal-bars span:nth-child(1) { height: 6px; }
.signal-bars span:nth-child(2) { height: 9px; }
.signal-bars span:nth-child(3) { height: 12px; }
.signal-bars span:nth-child(4) { height: 15px; }

.promotional-banner {
    background: linear-gradient(45deg, #FF6B6B, #FF8E53);
    padding: 1.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(255, 107, 107, 0.3);
    max-width: 300px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .promotional-banner {
        max-width: 250px;
    }
}

.promo-text {
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1a1a1a;
    text-shadow: 0 1px 2px rgba(255,255,255,0.5);
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #25D366;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: white;
}

.whatsapp-icon {
    font-size: 1.2rem;
}


.portabilidad-form-container {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
    border: 1px solid rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 100%;
    margin: 0;
}

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

.form-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.portabilidad-form .form-group {
    margin-bottom: 1.5rem;
}

.portabilidad-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.portabilidad-form input {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    min-height: 50px;
}

.portabilidad-form input:focus,
.portabilidad-form select:focus,
.portabilidad-form textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.portabilidad-form textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    resize: vertical;
    min-height: 100px;
    transition: all 0.3s ease;
}

.portabilidad-form select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #E5E7EB;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    background: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}


.form-instructions {
    background: #F8FAFC;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

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

.instruction-item:last-child {
    margin-bottom: 0;
}

.instruction-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

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

.btn-submit {
    width: 100%;
    background: #FFD700;
    color: black;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.btn-submit:active {
    transform: translateY(0);
}

.benefits-section {
    padding: 3rem 0;
    background: #F8FAFC;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-card {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #E5E7EB;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FF6B6B, #4ECDC4, #A8E6CF, #FFD93D, #B4A7D6);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.benefit-card:hover::before {
    transform: translateX(0);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.benefit-icon img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #E5E7EB;
}

.benefit-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: 0.85rem;
}

.packages-section {
    padding: 4rem 0;
    background: #F8FAFC;
}

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

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

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.package-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    background: #F0F0F0;
    border-radius: 15px;
    transition: all 0.3s ease;
    min-height: 380px;
    position: relative;
}

.package-wrapper.featured {
    background: #E8F4FD;
    transform: scale(1.02);
}

.package-card-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.package-card-image:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.package-card {
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 320px;
    height: 100%;
}

.package-card.featured {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.package-badge {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, #FF6B6B, #FFD93D);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
}

.package-price-header {
    background: #FFD700;
    padding: 2rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.package-price {
    font-size: 3.5rem;
    font-weight: 900;
    color: #000000;
    text-align: center;
    line-height: 1;
}

.package-separator {
    background: #FFFBE6;
    height: 15px;
    width: 100%;
    flex: 0 0 auto;
}

.package-content {
    padding: 2rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
    background: white;
    justify-content: space-between;
}

.package-feature {
    font-size: 1.1rem;
    font-weight: 400;
    color: #000000;
    text-align: center;
}

.package-divider {
    width: 70%;
    height: 1px;
    background: #E0E0E0;
}

.package-duration {
    font-size: 1.1rem;
    font-weight: 400;
    color: #000000;
    text-align: center;
}

.btn-recarregar {
    background: transparent;
    color: #000000;
    border: 2px solid #000000;
    padding: 0.75rem 2rem;
    border-radius: 25px;
    font-weight: 400;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 60%;
    margin-top: auto;
    flex-shrink: 0;
}

.btn-recarregar:hover {
    background: #000000;
    color: white;
    transform: translateY(-1px);
}

.cta-section {
    text-align: center;
    margin-top: 3rem;
}

.btn-cambiate {
    background: linear-gradient(45deg, #FF6B6B, #FFD93D);
    color: white;
    border: none;
    padding: 1.25rem 3rem;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
}

.btn-cambiate:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 107, 0.4);
}

.stores-section {
    padding: 4rem 0;
    background: white;
}

.stores-header {
    text-align: center;
    margin-bottom: 3rem;
}

.stores-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.stores-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.footer-simple {
    background: #282c34;
    position: relative;
    margin-top: 80px;
}

.footer-yellow-strip {
    height: 3px;
    background: #ffd700;
    width: 100%;
}

.footer-content {
    padding: 20px 0;
    text-align: center;
}

.footer-content p {
    color: #ffffff;
    font-size: 14px;
    margin: 0;
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
}

.footer-content a {
    color: #ffffff;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.footer-content a:hover {
    color: #ffd700;
}

.recurrent-recharge-section {
    background: #ffffff;
    padding: 80px 0;
}

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

.recharge-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.recharge-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    color: #1a1a1a;
    line-height: 1.2;
    margin: 0;
}

.recharge-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.recharge-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #1a1a1a;
    margin: 0;
}

.recharge-link {
    color: #FF6B6B;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.recharge-link:hover {
    color: #E91E63;
}

.recharge-ready {
    font-weight: 700 !important;
    color: #FF6B6B !important;
    font-size: 1.2rem !important;
}

.recharge-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.recharge-phone-mockup {
    width: 100%;
    max-width: 300px;
    position: relative;
}

.recharge-phone-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .recurrent-recharge-section {
        padding: 60px 0;
    }
    
    .recharge-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .recharge-left {
        align-items: center;
        text-align: center;
    }
    
    .recharge-phone-mockup {
        max-width: 250px;
    }
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
}

.partner-card {
    background: white;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    border-color: #ffd700;
}

.partner-logo {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 8px;
    border: 2px dashed #dee2e6;
    color: #6c757d;
    font-size: 14px;
    font-weight: 500;
}

.partner-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 6px;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 2px solid #667eea;
    color: #667eea;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.carousel-btn:hover {
    background: #667eea;
    color: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.carousel-btn:disabled:hover {
    background: white;
    color: #667eea;
    transform: translateY(-50%);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.carousel-prev {
    left: 10px;
}

.carousel-next {
    right: 10px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #E5E7EB;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: #667eea;
    transform: scale(1.2);
}

.carousel-dot:hover {
    background: #667eea;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 15px 0;
    }
    
    .partner-card {
        padding: 20px 15px;
        min-height: 100px;
    }
    
    .partner-logo {
        height: 60px;
        font-size: 12px;
    }
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    border-top: 1px solid #E2E8F0;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

.cookie-content p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-actions a {
    color: #667eea;
    text-decoration: underline;
    font-size: 0.9rem;
}

.btn-cookie-settings,
.btn-cookie-accept {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie-settings {
    background: #F1F5F9;
    color: var(--text-primary);
}

.btn-cookie-accept {
    background: #667eea;
    color: white;
}

.btn-cookie-settings:hover {
    background: #E2E8F0;
}

.btn-cookie-accept:hover {
    background: #5a67d8;
    transform: translateY(-1px);
}

.cookie-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--text-light);
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cookie-close:hover {
    background: #F1F5F9;
    color: var(--text-primary);
}

.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cookie-modal.show {
    opacity: 1;
    visibility: visible;
}

.cookie-modal-content {
    background: white;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.cookie-modal.show .cookie-modal-content {
    transform: scale(1);
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #E2E8F0;
}

.cookie-modal-header h3 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.cookie-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-light);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.cookie-modal-close:hover {
    background: #F1F5F9;
    color: var(--text-primary);
}

.cookie-modal-body {
    padding: 1.5rem;
    max-height: 400px;
    overflow-y: auto;
}

.cookie-setting {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #F1F5F9;
}

.cookie-setting:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.cookie-setting div {
    flex: 1;
}

.cookie-setting h4 {
    margin: 0 0 0.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.cookie-setting p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.cookie-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
    flex-shrink: 0;
}

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

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #E2E8F0;
    transition: 0.3s;
    border-radius: 12px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

input:checked + .slider {
    background-color: #667eea;
}

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

input:disabled + .slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-modal-footer {
    padding: 1.5rem;
    border-top: 1px solid #E2E8F0;
    text-align: right;
}

.btn-cookie-save {
    background: #667eea;
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cookie-save:hover {
    background: #5a67d8;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .portabilidad-hero {
        padding: 100px 0 40px;
    }
    
    .portabilidad-form-container {
        padding: 2rem;
        max-width: 100%;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
    }
    
    .package-wrapper {
        padding: 1rem;
        min-height: 350px;
    }
    
    .package-wrapper.featured {
        transform: none;
    }
    
    .package-card-image {
        border-radius: 8px;
    }
    
    .package-badge {
        top: 5px;
        font-size: 0.6rem;
        padding: 0.3rem 0.6rem;
    }
    
    .package-price {
        font-size: 2.8rem;
    }
    
    .package-content {
        padding: 1.5rem 1rem;
        gap: 1.2rem;
    }
    
    .btn-recarregar {
        width: 70%;
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .stores-carousel-container {
        margin: 0 1rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .carousel-prev {
        left: 5px;
    }
    
    .carousel-next {
        right: 5px;
    }
    
    .store-card {
        flex: 0 0 200px;
        padding: 1rem;
    }
    
    .bait-logo-hero {
        width: 80px;
        height: 80px;
    }
    
    .bait-hero-image {
        width: 60px;
        height: 60px;
    }
    
    .bait-phone-logo {
        height: 16px;
    }
    
    .phone-mockup {
        width: 180px;
        height: 350px;
    }
    
    .phone-content {
        padding: 20px 12px 12px;
        gap: 8px;
    }
    
    .offer-card {
        padding: 10px;
        gap: 6px;
    }
    
    .price-amount {
        font-size: 1.5rem;
    }
    
    .apps-row {
        gap: 2px;
        padding: 0 2px;
    }
    
    .app-icon {
        width: 16px;
        height: 16px;
        font-size: 0.55rem;
    }
    
    .promotional-banner {
        max-width: 250px;
    }
}
