/** Nosotros — Estilos de la página sobre nosotros */

:root {
    --primary-gold: #D4AF37;
    --light-gold: #F4E4BC;
    --dark-gold: #B8860B;
    --cream: #FAF8F5;
    --dark-navy: #1a1f36;
    --charcoal: #2C2C2C;
    --celulares-primary: #2980B9;
    --accesorios-primary: #00B4A6;
    --smartwatch-primary: #8E44AD;
    --tablets-primary: #E67E22;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--charcoal);
    background: var(--cream);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

/* Hero Section */
.hero-nosotros {
    position: relative;
    height: 70vh;
    background: linear-gradient(135deg, var(--dark-navy) 0%, #2d3561 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-nosotros::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-gold), var(--light-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.8;
    animation: fadeInUp 1.2s ease;
}

.hero-badges {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.4s ease;
}

.hero-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    padding: 12px 25px;
    border-radius: 30px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-badge i {
    color: var(--primary-gold);
    font-size: 1.2rem;
}

/* Sección Historia */
.historia-section {
    padding: 100px 0;
    background: white;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 3rem;
    color: var(--charcoal);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-gold), var(--light-gold));
}

.section-title p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 20px auto 0;
}

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

.historia-text h3 {
    font-size: 2rem;
    color: var(--charcoal);
    margin-bottom: 20px;
}

.historia-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.historia-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.historia-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.historia-image:hover img {
    transform: scale(1.05);
}

/* Líneas de Producto */
.lineas-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, var(--cream) 100%);
}

.lineas-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
}

.linea-card {
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
}

.linea-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
}

.linea-card.celulares {
    border-top: 5px solid var(--celulares-primary);
}

.linea-card.accesorios {
    border-top: 5px solid var(--accesorios-primary);
}

.linea-card.smartwatch {
    border-top: 5px solid var(--smartwatch-primary);
}

.linea-card.tablets {
    border-top: 5px solid var(--tablets-primary);
}

.linea-image {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.linea-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.linea-card:hover .linea-image img {
    transform: scale(1.1);
}

.linea-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
}

.linea-badge.celulares {
    background: rgba(41, 128, 185, 0.9);
    color: white;
}

.linea-badge.accesorios {
    background: rgba(0, 180, 166, 0.9);
    color: white;
}

.linea-badge.smartwatch {
    background: rgba(142, 68, 173, 0.9);
    color: white;
}

.linea-badge.tablets {
    background: rgba(230, 126, 34, 0.9);
    color: white;
}

.linea-content {
    padding: 40px;
}

.linea-content h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--charcoal);
}

.linea-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 25px;
}

.linea-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.linea-features li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: #555;
}

.linea-features li i {
    font-size: 1.1rem;
}

.linea-card.celulares .linea-features li i {
    color: var(--celulares-primary);
}

.linea-card.accesorios .linea-features li i {
    color: var(--accesorios-primary);
}

.linea-card.smartwatch .linea-features li i {
    color: var(--smartwatch-primary);
}

.linea-card.tablets .linea-features li i {
    color: var(--tablets-primary);
}

/* Misión y Visión */
.mision-vision-section {
    padding: 100px 0;
    background: white;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 60px;
}

.mv-card {
    background: linear-gradient(135deg, var(--cream) 0%, white 100%);
    border-radius: 20px;
    padding: 50px;
    border: 2px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    transition: all 0.5s ease;
}

.mv-card:hover::before {
    top: -60%;
    right: -60%;
}

.mv-card:hover {
    border-color: var(--primary-gold);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
    transform: translateY(-5px);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-gold), var(--light-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.mv-icon i {
    font-size: 2rem;
    color: white;
}

.mv-card h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--charcoal);
    position: relative;
    z-index: 1;
}

.mv-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    position: relative;
    z-index: 1;
}

/* Valores */
.valores-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-navy) 0%, #2d3561 100%);
    color: white;
    position: relative;
}

.valores-section::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1576091160399-112ba8d25d1d?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover;
    opacity: 0.08;
    z-index: 0;
}

.valores-section .container {
    position: relative;
    z-index: 1;
}

.valores-section .section-title h2 {
    color: white;
}

.valores-section .section-title h2::after {
    background: linear-gradient(90deg, var(--primary-gold), var(--light-gold));
}

.valores-section .section-title p {
    color: rgba(255, 255, 255, 0.8);
}

.valores-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.valor-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.valor-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-gold);
    transform: translateY(-10px);
}

.valor-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-gold), var(--light-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.valor-icon i {
    font-size: 1.8rem;
    color: var(--dark-navy);
}

.valor-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-gold);
}

.valor-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Certificaciones */
.certificaciones-section {
    padding: 80px 0;
    background: white;
}

.certificaciones-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.certificacion-badge {
    background: linear-gradient(135deg, var(--cream), white);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.certificacion-badge:hover {
    border-color: var(--primary-gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
    transform: translateY(-5px);
}

.certificacion-badge i {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.certificacion-badge h5 {
    font-size: 1rem;
    color: var(--charcoal);
    margin-bottom: 5px;
}

.certificacion-badge p {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-gold) 0%, var(--dark-gold) 100%);
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta {
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-cta.primary {
    background: white;
    color: var(--dark-gold);
}

.btn-cta.primary:hover {
    background: var(--cream);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-cta.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-cta.secondary:hover {
    background: white;
    color: var(--dark-gold);
    transform: translateY(-3px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .historia-content,
    .lineas-grid,
    .mv-grid {
        grid-template-columns: 1fr;
    }

    .valores-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .certificaciones-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .section-title h2 {
        font-size: 2.2rem;
    }

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

    .certificaciones-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-section h2 {
        font-size: 2rem;
    }
}
