/* stylus.css - Estilos centralizados para Naranja Center */

:root {
    --nc-orange: #ff6a00;
    --nc-dark: #0c0c12;
    --nc-light: #f7f8fa;
    --nc-text: #333;
    --nc-text-light: #6c757d;
}

/* Estilos generales */
body {
    font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial;
    color: var(--nc-text);
    line-height: 1.6;
}

/* Botones */
.btn-nc {
    background: var(--nc-orange);
    color: #fff;
    font-weight: 700;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-nc:hover {
    opacity: 0.95;
    color: #fff;
    transform: translateY(-2px);
}

/* Badges */
.badge-nc {
    background: #fff;
    color: #111;
    border: 1px solid #eee;
    font-weight: 500;
}

/* Fondos */
.bg-soft {
    background: var(--nc-light);
}

.bg-nc-dark {
    background: var(--nc-dark);
}

/* Iconos de confianza */
.trust-icon {
    font-size: 1.1rem;
    margin-right: 0.5rem;
}

/* Hero section */
.hero {
    background: linear-gradient(90deg, #0c0c12, #1a1324 55%, #0c0c12);
    color: #fff;
    padding: 4rem 0;
}

/* WhatsApp flotante */
.wa-fab {
    position: fixed;
    right: 16px;
    bottom: 16px;
    background: #25D366;
    color: #fff;
    border-radius: 999px;
    padding: 12px 16px;
    font-weight: 800;
    box-shadow: 0 8px 24px rgba(0,0,0,.2);
    z-index: 1080;
    text-decoration: none;
    transition: all 0.3s ease;
}

.wa-fab:hover {
    color: #fff;
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(0,0,0,.3);
}

/* Header top bar */
.header-top {
    background: #0f1115;
    color: #cfd3da;
    font-size: .92rem;
    padding: .4rem 0;
}

.header-top a {
    color: #cfd3da;
    text-decoration: none;
    margin-right: 1rem;
    transition: color 0.3s ease;
}

.header-top a:hover {
    color: #fff;
}

/* Navigation */
.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar .nav-link {
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar .nav-link.active {
    color: var(--nc-orange) !important;
    font-weight: 600;
}

.navbar .nav-link:hover {
    color: var(--nc-orange);
}

/* Images */
.object-fit-cover {
    object-fit: cover;
}

/* Section titles */
.section-title {
    position: relative;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: var(--nc-orange);
    border-radius: 2px;
}

.text-center .section-title:after {
    left: 50%;
    transform: translateX(-50%);
}

/* Form styles */
.form-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-control:focus {
    border-color: var(--nc-orange);
    box-shadow: 0 0 0 0.2rem rgba(255, 106, 0, 0.25);
}

/* Contact info items */
.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-info-icon {
    background-color: var(--nc-orange);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-info-content h5 {
    margin-bottom: 0.25rem;
}

.contact-info-content p {
    margin-bottom: 0;
    color: var(--nc-text-light);
}

/* ===== ESTILOS ESPECÍFICOS PARA PÁGINA IPHONE ===== */

/* Model grid */
.model-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1.5rem;
}

.model-item {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.model-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    border-color: var(--nc-orange);
}

.model-item i {
    color: var(--nc-orange);
}

/* Price table */
.price-table {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.price-table th {
    background: var(--nc-orange);
    color: white;
    font-weight: 600;
    border: none;
    padding: 1rem;
}

.price-table td {
    padding: 1rem;
    vertical-align: middle;
}

.price-table tbody tr:hover {
    background-color: rgba(255, 106, 0, 0.05);
}

/* Guarantee cards */
.guarantee-card {
    background: #fff;
    border-left: 4px solid var(--nc-orange);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Promo cards */
.promo-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    height: 100%;
}

.promo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 106, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 1.8rem;
    color: var(--nc-orange);
}

/* Payment methods */
.payment-methods i {
    font-size: 2rem;
    margin-right: 1rem;
    color: #6c757d;
}

/* Apple certified */
.apple-certified {
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 1.5rem;
}

/* Benefit items */
.benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 106, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.benefit-icon i {
    color: var(--nc-orange);
    font-size: 1.3rem;
}

/* ===== ESTILOS ESPECÍFICOS PARA PÁGINA MAC & IPAD ===== */

/* Service cards */
.service-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 106, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: var(--nc-orange);
}

/* Device grid */
.device-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.5rem;
}

.device-item {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 1.5rem 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.device-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    border-color: var(--nc-orange);
}

.device-item i {
    color: var(--nc-orange);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Price cards */
.price-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border: 1px solid #e9ecef;
    height: 100%;
    position: relative;
}

.price-feature {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.price-feature i {
    color: var(--nc-orange);
    margin-right: 0.75rem;
}

/* Process steps */
.process-step {
    text-align: center;
    padding: 2rem 1rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--nc-orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

/* Stats */
.stats-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--nc-orange);
    line-height: 1;
}

/* ===== ESTILOS ESPECÍFICOS PARA PÁGINA CONTACTO ===== */

.map-container {
    border-radius: 8px;
    overflow: hidden;
    height: 300px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f1f1f1;
    color: #333;
    margin-right: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background-color: var(--nc-orange);
    color: white;
}

/* ===== FOOTER COMPLETO ===== */

.footer-completo {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
}

.footer-top {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 3rem 0 !important;
}

.footer-bottom {
    background: #1a252f;
    padding: 1.5rem 0 !important;
}

.footer-title {
    color: var(--nc-orange);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-link {
    color: #bdc3c7 !important;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-link:hover {
    color: var(--nc-orange) !important;
    padding-left: 5px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #bdc3c7;
}

.contact-item i {
    width: 20px;
    text-align: center;
    margin-right: 0.75rem;
    color: var(--nc-orange);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.brand-item {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #34495e;
}

.brand-item:hover {
    transform: translateY(-2px);
    border-color: var(--nc-orange);
    background: rgba(255, 255, 255, 0.15);
}

.brand-item i {
    color: var(--nc-orange);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: block;
}

.brand-item span {
    font-size: 0.8rem;
    color: #bdc3c7;
}

.footer-social-links {
    display: flex;
    gap: 10px;
    margin-bottom: 2rem;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background: var(--nc-orange);
    transform: translateY(-2px);
}

.small-title {
    color: var(--nc-orange);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #34495e;
    color: white;
    font-size: 0.9rem;
}

.newsletter-form .form-control::placeholder {
    color: #bdc3c7;
}

.newsletter-form .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--nc-orange);
    color: white;
    box-shadow: none;
}

.newsletter-form .btn {
    font-size: 0.9rem;
}

.trust-badges {
    margin-top: 1.5rem;
}

.trust-badges .badge {
    font-size: 0.7rem;
    padding: 4px 8px;
    margin-right: 5px;
    margin-bottom: 5px;
}

.copyright {
    font-size: 0.85rem;
    color: #bdc3c7;
    margin: 0;
}

.legal-links {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.legal-link {
    color: #bdc3c7 !important;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.8rem;
}

.legal-link:hover {
    color: var(--nc-orange) !important;
}

/* ===== ESTILOS RESPONSIVE ===== */

@media (max-width: 768px) {
    .hero {
        padding: 2rem 0;
    }
    
    .display-5 {
        font-size: 2rem;
    }
    
    .model-grid {
        grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
        gap: 1rem;
    }
    
    .device-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .header-top .d-flex {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .header-top a {
        margin-right: 0;
    }

    /* Footer Responsive */
    .footer-top {
        padding: 2rem 0 !important;
    }
    
    .footer-bottom {
        text-align: center;
        padding: 1rem 0 !important;
    }
    
    .legal-links {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .brands-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .footer-social-links {
        justify-content: center;
    }

    .contact-item {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .service-card, .price-card, .promo-card {
        padding: 1.5rem 1rem;
    }
    
    .btn-lg {
        padding: 0.75rem 1.25rem;
        font-size: 0.9rem;
    }

    /* Footer Mobile */
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .legal-links {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .legal-link {
        display: block;
        margin: 0 !important;
    }

    .footer-title {
        font-size: 1rem;
    }

    .contact-item {
        font-size: 0.8rem;
    }
}