/* ============================================
   THEME BS1 - MORADO
   Landing Page para colaboradores
   ============================================ */

:root {
    --primary: #6f42c1;
    --primary-dark: #5a32a3;
    --primary-light: #8b6fd8;
    --secondary: #ff6b35;
    --secondary-dark: #e55a2b;
    --success: #28a745;
    --dark: #1a1a2e;
    --light: #f8f9fa;
    --gray: #6c757d;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Nunito', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    overflow-x: hidden;
    padding-top: 76px;
}

/* WhatsApp Button */
.btn-whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.btn-whatsapp a {
    color: white;
    font-size: 32px;
    display: block;
    line-height: 1;
}

.btn-whatsapp:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}


/* Hero Section */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    max-height: 50vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-section::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 1440 320"><path fill="rgba(255,255,255,0.1)" fill-opacity="1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,154.7C960,171,1056,181,1152,165.3C1248,149,1344,107,1392,85.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.15;
}

.hero-content {
    color: white;
    z-index: 1;
}

.badge-beneficio {
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 25px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-title .highlight {
    color: var(--secondary);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-primary {
    background: var(--secondary);
    border: none;
    padding: 15px 35px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-primary:hover {
    background: var(--secondary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

.btn-outline-light {
    padding: 15px 35px;
    border-radius: 50px;
    margin-left: 15px;
    font-weight: 600;
}

/* Hero Features */
.hero-features {
    display: flex;
    gap: 25px;
    margin-top: 40px;
    flex-wrap: wrap;
}

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

.hero-features i {
    font-size: 18px;
}

/* Pulse Animation for CTA */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(255, 107, 53, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0);
    }
}

.pulse-btn {
    animation: pulse 2s infinite;
}

/* Section General */
.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--dark);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

/* Sección ¿Qué es? */
.section-que-es {
    padding: 80px 0;
    background: white;
}

.features-list {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 1rem;
}

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

/* Beneficios Cards */
.section-beneficios {
    padding: 80px 0;
    background: #f8f9fa;
}

.beneficio-card {
    background: white;
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    height: 100%;
}

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

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

.beneficio-icon i {
    font-size: 35px;
    color: white;
}

.beneficio-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.beneficio-card p {
    color: var(--gray);
    line-height: 1.6;
}

/* Tabla Comparativa */
.section-comparativa {
    padding: 80px 0;
    background: white;
}

.comparativa-table-wrapper {
    overflow-x: auto;
}

.comparativa-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
}

.comparativa-table th,
.comparativa-table td {
    padding: 18px 25px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.comparativa-table th {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    font-weight: 700;
    font-size: 1rem;
}

.comparativa-table td:first-child {
    font-weight: 600;
    background: #fafafa;
}

.comparativa-table tr:hover td {
    background: #f5f5f5;
}

.badge-corporativo {
    background: #28a745;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    margin-left: 8px;
}

.badge-familiar {
    background: var(--secondary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    margin-left: 8px;
}

.comparativa-table i.fa-check {
    color: var(--success);
    font-size: 18px;
}

/* Sección Compra */
.section-compra {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.compra-card {
    background: white;
    border-radius: 30px;
    padding: 50px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.precio-container {
    text-align: center;
}

.precio-old {
    text-decoration: line-through;
    color: var(--gray);
    font-size: 1.2rem;
    margin-right: 15px;
}

.precio-new {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
}

.precio-new small {
    font-size: 1rem;
    font-weight: normal;
}

.precio-ahorro {
    display: block;
    color: var(--success);
    font-weight: 600;
    margin-top: 10px;
}

.btn-comprar {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
    color: white;
    padding: 18px 45px;
    font-weight: 800;
    font-size: 1.2rem;
    border-radius: 50px;
    transition: all 0.3s;
}

.btn-comprar:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.metodos-pago i {
    font-size: 32px;
    margin: 0 8px;
    color: var(--gray);
}

/* Testimonios */
.section-testimonios {
    padding: 80px 0;
    background: #f8f9fa;
}

.testimonio-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s;
    height: 100%;
}

.testimonio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.testimonio-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 25px auto 0;
}

.testimonio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonio-content {
    padding: 25px;
    text-align: center;
}

.testimonio-content i.fa-quote-left {
    color: var(--primary-light);
    font-size: 30px;
    opacity: 0.3;
    margin-bottom: 15px;
}

.testimonio-content p {
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonio-content h4 {
    font-weight: 700;
    margin-bottom: 5px;
}

.testimonio-content span {
    color: var(--gray);
    font-size: 0.85rem;
}

/* Footer */
.footer {
    background: #1a1a2e;
    padding: 60px 0 20px;
    color: white;
}

.footer h5 {
    color: white;
    margin-bottom: 20px;
    font-weight: 700;
}

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

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

.footer ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s;
}

.footer ul li a:hover {
    color: var(--secondary);
}

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

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

.social-links a:hover {
    background: var(--secondary);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

.powered {
    margin-top: 10px;
    font-size: 0.75rem;
}

/* Responsive */
@media (max-width: 768px) {
    body {
        padding-top: 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
    
    .btn-outline-light {
        margin-left: 0;
    }
    
    .comparativa-table th,
    .comparativa-table td {
        padding: 12px 15px;
        font-size: 0.85rem;
    }
    
    .compra-card {
        padding: 30px 20px;
    }
    
    .precio-new {
        font-size: 2rem;
    }
}
/* Navbar */
/* Navbar - Estilos actualizados combinados */
.navbar {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-radius: 0;
    width: 100%;
    padding: 0;
    margin: 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    min-height: 125px;
}

.navbar .navbar-header {
    min-height: 108px;
}

.navbar-brand {
    padding: 0;
}

.navbar-brand img {
    transition: transform 0.3s;
    z-index: 5000;
}

.navbar-brand img:hover {
    transform: scale(1.05);
}

/* Estilos de navegación */
.navbar-nav {
    margin-right: -14px;
    line-height: 100px;
}

.navbar-nav .nav-link {
    font: 15px 'nunitomedium', sans-serif;
    color: white !important;
    transition: all 0.3s;
    margin: 0 10px;
    font-weight: 600;
}

.navbar-nav .nav-link:hover {
    color: #FF662B !important;
}

/* Dropdown menu estilos */
.dropdown-menu {
    background: #fff;
    border: none;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-top: 0;
}

.dropdown-menu .dropdown-item {
    font: 15px 'nunitomedium', sans-serif;
    color: #7B7A7F;
    padding: 8px 20px;
    transition: all 0.3s;
}

.dropdown-menu .dropdown-item:hover {
    background-color: #00AAE4;
    color: white;
}

/* Texto frase azul/naranja */
.texto_frase_azul {
    font: 28px/1 'bebas_neueregular';
    color: #00AAE4;
    display: block;
    height: auto;
    min-height: 50px;
    overflow: hidden;
    margin-top: 20px;
    position: absolute;
    margin-right: 10px !important;
    float: right;
    right: 6px;
    z-index: 500;
    cursor: pointer;
}

.texto_frase_naranja {
    font: 28px/1 'bebas_neueregular';
    color: #FF662B;
}

/* Botón comprar (moderno) */
.btn-comprar-nav {
    background: #FF662B;
    color: white !important;
    padding: 8px 25px !important;
    border-radius: 50px;
    margin-left: 15px;
    font-weight: bold;
    transition: all 0.3s;
    display: inline-block;
    line-height: normal;
}

.btn-comprar-nav:hover {
    background: #e0551a;
    transform: translateY(-2px);
    color: white !important;
}

/* Contenedores de navegación */
.marge_navegador100,
.marge_navegador70 {
    width: 100%;
    position: relative;
    float: left;
}

.padding60 {
    padding: 0 60px;
}

/* Icon menu */
.iconmenu {
    position: relative;
}

/* Caret para dropdowns */
.caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 5px;
    vertical-align: middle;
    border-top: 4px dashed;
    border-top: 4px solid \9;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
}

/* Dropdown hover effect (similar a Bootstrap 3) */
.dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .navbar-nav {
        line-height: normal;
        margin-right: 0;
    }
    
    .navbar-nav .nav-link {
        padding: 10px 15px;
    }
    
    .texto_frase_azul {
        display: none;
    }
    
    .padding60 {
        padding: 0 15px;
    }
    
    .btn-comprar-nav {
        margin: 10px 15px;
        display: inline-block;
        text-align: center;
    }
    
    .navbar .navbar-header {
        min-height: auto;
    }
    
    .dropdown-menu {
        border: none;
        background-color: transparent;
    }
    
    .dropdown-menu .dropdown-item {
        color: white;
        padding-left: 30px;
    }
    
    .dropdown-menu .dropdown-item:hover {
        background-color: #FF662B;
    }
}

@media (max-width: 767px) {
    .hidden-xs {
        display: none;
    }
    
    .texto_frase_azul {
        display: none;
    }
}

/* Ajustes para escritorio */
@media (min-width: 992px) {
    .navbar .container-fluid {
        position: relative;
    }
    
    .dropdown-menu {
        display: none;
    }
    
    .dropdown:hover .dropdown-menu {
        display: block;
    }
}

/* Estilos adicionales para mantener consistencia */
.container-logo {
    position: relative;
}

.navbar-toggler {
    margin-top: 35px;
}

.navbar-toggler-icon {
    background-color: white;
}

/* Ajuste de z-index */
.navbar {
    z-index: 1030;
}

/* Para mantener el estilo de fuente personalizada */
@font-face {
    font-family: 'nunitomedium';
    src: url('fonts/nunito-medium.eot');
    src: url('fonts/nunito-medium.eot?#iefix') format('embedded-opentype'),
         url('fonts/nunito-medium.woff2') format('woff2'),
         url('fonts/nunito-medium.woff') format('woff'),
         url('fonts/nunito-medium.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'bebas_neueregular';
    src: url('fonts/bebasneue-regular.eot');
    src: url('fonts/bebasneue-regular.eot?#iefix') format('embedded-opentype'),
         url('fonts/bebasneue-regular.woff2') format('woff2'),
         url('fonts/bebasneue-regular.woff') format('woff'),
         url('fonts/bebasneue-regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}