﻿    :root {
        --primary-color: #2c3e50;
        --secondary-color: #3498db;
        --accent-color: #e74c3c;
        --light-color: #ecf0f1;
        --dark-color: #2c3e50;
        --text-color: #333;
        --text-light: #7f8c8d;
    }
    
    @font-face {
        font-family: "Explorer";
        src: local('Explorer Condensed Regular'), local('Explorer-Condensed-Regular'),
            url('ExplorerCondensed-Regular.woff2') format('woff2'),
            url('ExplorerCondensed-Regular.woff') format('woff'),
            url('ExplorerCondensed-Regular.ttf') format('truetype');
        font-weight: normal;
        font-style: normal;
    }
    
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    body {
        font-family: "Explorer", sans-serif;
        color: var(--text-color);
        line-height: 1.6;
        overflow-x: hidden;
        font-size: 20px;
        font-weight: normal;
    }
    
    /* Header y Navegación */
    header {
        background-color: white;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
        transition: all 0.3s ease;
    }
    
    .header-scrolled {
        padding: 10px 0;
        background-color: rgba(255, 255, 255, 0.98);
    }
    
    .container {
        width: 90%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
    }
    
    .header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 0;
    }
    
    .logo {
        display: flex;
        align-items: center;
    }
    
    .logo img {
        height: 65px;
        margin-right: 15px;
    }
    
    .logo-text {
        display: flex;
        flex-direction: column;
        text-align: center;
    }
    
    .logo-text h1 {
        color: #1291C8;
        font-size: 2.5rem;
        margin: 0;
        line-height: 1.2;
        font-weight: normal;
    }
    
    .logo-text p {
        color: #000000;
        font-size: 1.3rem;
        font-style: italic;
        margin: 0;
        font-weight: normal;
    }
    
    nav ul {
        display: flex;
        list-style: none;
    }
    
    nav ul li {
        margin-left: 30px;
    }
    
    nav ul li a {
        color: var(--primary-color);
        text-decoration: none;
        font-size: 1.3rem;
        transition: color 0.3s;
        position: relative;
        font-weight: normal;
    }
    
    nav ul li a:hover {
        color: var(--secondary-color);
    }
    
    nav ul li a::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        background: var(--secondary-color);
        bottom: -5px;
        left: 0;
        transition: width 0.3s;
    }
    
    nav ul li a:hover::after {
        width: 100%;
    }
    
    .menu-toggle {
        display: none;
        cursor: pointer;
        font-size: 2rem;
        color: var(--primary-color);
        font-weight: normal;
    }
    
    /* Hero Section */
    .hero {
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
        color: white;
        padding: 180px 0 100px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }
    
    .hero h2 {
        font-size: 3.5rem;
        margin-bottom: 25px;
        font-weight: normal;
    }
    
    .hero p {
        font-size: 1.5rem;
        max-width: 700px;
        margin: 0 auto 40px;
        font-weight: normal;
    }
    
    .btn {
        display: inline-block;
        background-color: var(--accent-color);
        color: white;
        padding: 12px 30px;
        border-radius: 30px;
        text-decoration: none;
        font-size: 1.2rem;
        transition: all 0.3s;
        border: none;
        cursor: pointer;
        font-weight: normal;
    }
    
    .btn:hover {
        background-color: #c0392b;
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    
    .btn-outline {
        background-color: transparent;
        border: 2px solid white;
        margin-left: 15px;
    }
    
    .btn-outline:hover {
        background-color: white;
        color: var(--primary-color);
    }
    
    /* Features Section */
    .section {
        padding: 100px 0;
    }
    
    .section-title {
        text-align: center;
        margin-bottom: 60px;
    }
    
    .section-title h2 {
        font-size: 2.8rem;
        color: var(--primary-color);
        margin-bottom: 15px;
        position: relative;
        display: inline-block;
        font-weight: normal;
    }
    
    .section-title h2::after {
        content: '';
        position: absolute;
        width: 50px;
        height: 3px;
        background: var(--secondary-color);
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .section-title p {
        color: var(--text-light);
        max-width: 700px;
        margin: 0 auto;
        font-size: 1.4rem;
        font-weight: normal;
    }
    
    .features-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }
    
    .feature-card {
        background-color: white;
        border-radius: 10px;
        padding: 30px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s, box-shadow 0.3s;
        text-align: center;
    }
    
    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }
    
    .feature-icon {
        font-size: 3.5rem;
        color: var(--secondary-color);
        margin-bottom: 20px;
    }
    
    .feature-card h3 {
        font-size: 1.8rem;
        margin-bottom: 15px;
        color: var(--primary-color);
        font-weight: normal;
    }
    
    .feature-card p {
        font-size: 1.1rem;
        font-weight: normal;
    }
    
    /* Pricing Section */
    .pricing {
        background-color: #f9f9f9;
    }
    
    .pricing-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }
    
    .pricing-card {
        background-color: white;
        border-radius: 10px;
        padding: 40px 30px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        text-align: center;
        transition: all 0.3s;
        position: relative;
        overflow: hidden;
    }
    
    .pricing-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }
    
    .pricing-card.popular::before {
        content: 'Popular';
        position: absolute;
        top: 15px;
        right: -30px;
        background-color: var(--accent-color);
        color: white;
        padding: 5px 30px;
        transform: rotate(45deg);
        font-size: 1.1rem;
        font-weight: normal;
    }
    
    .pricing-card h3 {
        font-size: 1.8rem;
        color: var(--primary-color);
        margin-bottom: 20px;
        font-weight: normal;
    }
    
    .price {
        font-size: 2.5rem;
        color: var(--secondary-color);
        margin-bottom: 20px;
        font-weight: normal;
    }
    
    .price span {
        font-size: 1.1rem;
        color: var(--text-light);
        font-weight: normal;
    }
    
    .pricing-features {
        list-style: none;
        margin-bottom: 30px;
    }
    
    .pricing-features li {
        padding: 10px 0;
        border-bottom: 1px solid #eee;
        font-size: 1.1rem;
        font-weight: normal;
    }
    
    /* Distributors Section */
    .distributors {
        background-color: var(--primary-color);
        color: white;
    }
    
    .distributors .section-title h2 {
        color: white;
        font-weight: normal;
    }
    
    .distributors .section-title p {
        color: rgba(255, 255, 255, 0.8);
        font-weight: normal;
    }
    
    .commission-structure {
        background-color: white;
        border-radius: 10px;
        padding: 30px;
        max-width: 800px;
        margin: 0 auto;
        color: var(--text-color);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .commission-item {
        display: flex;
        justify-content: space-between;
        padding: 15px 0;
        border-bottom: 1px solid #eee;
        font-size: 1.2rem;
        font-weight: normal;
    }
    
    .commission-item:last-child {
        border-bottom: none;
    }
    
    .commission-label {
        font-weight: normal;
    }
    
    .commission-value {
        color: var(--secondary-color);
        font-weight: normal;
    }
    
    /* Contact Section */
    .contact {
        background-color: #f9f9f9;
    }
    
    .contact-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 50px;
    }
    
    .contact-info h3 {
        font-size: 2rem;
        color: var(--primary-color);
        margin-bottom: 20px;
        font-weight: normal;
    }
    
    .contact-info p {
        margin-bottom: 30px;
        font-size: 1.2rem;
        font-weight: normal;
    }
    
    .contact-details {
        list-style: none;
    }
    
    .contact-details li {
        margin-bottom: 15px;
        display: flex;
        align-items: flex-start;
        font-size: 1.2rem;
        font-weight: normal;
    }
    
    .contact-details i {
        color: var(--secondary-color);
        margin-right: 15px;
        font-size: 1.6rem;
        margin-top: 3px;
    }
    
    .contact-form input,
    .contact-form textarea,
    .contact-form select {
        width: 100%;
        padding: 15px;
        margin-bottom: 20px;
        border: 1px solid #ddd;
        border-radius: 5px;
        font-size: 1.2rem;
        
        font-weight: normal;
    }
    
    .contact-form textarea {
        height: 150px;
        resize: vertical;
    }
    
    /* Footer */
    footer {
        background-color: var(--dark-color);
        color: white;
        padding: 50px 0 20px;
    }
    
    .footer-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .footer-logo {
        display: flex;
        flex-direction: column;
    }
    
    .footer-logo h3 {
        font-size: 2rem;
        margin-bottom: 10px;
        font-weight: normal;
    }
    
    .footer-logo p {
        color: rgba(255, 255, 255, 0.7);
        font-size: 1.1rem;
        margin-bottom: 20px;
        font-weight: normal;
    }
    
    .social-links {
        display: flex;
    }
    
    .social-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        margin-right: 10px;
        color: white;
        text-decoration: none;
        transition: all 0.3s;
        font-size: 1.2rem;
        font-weight: normal;
    }
    
    .social-links a:hover {
        background-color: var(--secondary-color);
        transform: translateY(-3px);
    }
    
    .footer-links h4 {
        font-size: 1.6rem;
        margin-bottom: 20px;
        position: relative;
        font-weight: normal;
    }
    
    .footer-links h4::after {
        content: '';
        position: absolute;
        width: 30px;
        height: 2px;
        background: var(--secondary-color);
        bottom: -8px;
        left: 0;
    }
    
    .footer-links ul {
        list-style: none;
    }
    
    .footer-links ul li {
        margin-bottom: 10px;
    }
    
    .footer-links ul li a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        transition: color 0.3s;
        font-size: 1.2rem;
        font-weight: normal;
    }
    
    .footer-links ul li a:hover {
        color: var(--secondary-color);
    }
    
    .copyright {
        text-align: center;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        color: rgba(255, 255, 255, 0.7);
        font-size: 1.1rem;
        font-weight: normal;
    }
    
    /* Responsive Design */
    @media (max-width: 992px) {
        body {
            font-size: 18px;
            font-weight: normal;
        }
        
        .hero h2 {
            font-size: 3rem;
            font-weight: normal;
        }
        
        .hero p {
            font-size: 1.3rem;
            font-weight: normal;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            font-weight: normal;
        }
        
        .section-title p {
            font-size: 1.3rem;
            font-weight: normal;
        }
    }
    
    @media (max-width: 768px) {
        .menu-toggle {
            display: block;
        }
        
        nav {
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background-color: white;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            padding: 20px 0;
            clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
            transition: clip-path 0.4s ease;
        }
        
        nav.active {
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        }
        
        nav ul {
            flex-direction: column;
        }
        
        nav ul li {
            margin: 0;
            text-align: center;
        }
        
        nav ul li a {
            display: block;
            padding: 15px;
            font-size: 1.4rem;
            font-weight: normal;
        }
        
        .hero {
            padding: 150px 0 80px;
        }
        
        .hero h2 {
            font-size: 2.5rem;
            font-weight: normal;
        }
        
        .btn {
            display: block;
            width: 80%;
            margin: 0 auto 15px;
            font-size: 1.2rem;
            font-weight: normal;
        }
        
        .btn-outline {
            margin-left: auto;
            margin-right: auto;
        }
        
        .section {
            padding: 70px 0;
        }
    }
    
    @media (max-width: 576px) {
        body {
            font-size: 16px;
            font-weight: normal;
        }
        
        .logo img {
            height: 55px;
        }
        
        .logo-text h1 {
            font-size: 1.8rem;
            font-weight: normal;
        }
        
        .logo-text p {
            font-size: 1rem;
            font-weight: normal;
        }
        
        .section-title h2 {
            font-size: 2rem;
            font-weight: normal;
        }
        
        .feature-card h3 {
            font-size: 1.5rem;
            font-weight: normal;
        }
    }
    
    /* Animaciones */
    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .fade-in {
        animation: fadeIn 1s ease forwards;
    }
    
    .delay-1 {
        animation-delay: 0.2s;
    }
    
    .delay-2 {
        animation-delay: 0.4s;
    }
    
    .delay-3 {
        animation-delay: 0.6s;
    }
    
    /* Smooth scrolling */
    html {
        scroll-behavior: smooth;
    }
    
    .enlace-elegante {
        color: white;
        text-decoration: none;
        padding: 4px 8px;
        border-radius: 4px;
        transition: all 0.3s ease;
        font-weight: normal;
        display: inline-block;
        position: relative;
    }
    
    .enlace-elegante:hover {
        color: white;
        text-decoration: none;
        background-color: rgba(255, 255, 255, 0.1);
        transform: translateY(-1px);
    }
    
    .enlace-elegante::after {
        content: '';
        position: absolute;
        width: 0;
        height: 1px;
        bottom: 0;
        left: 0;
        background-color: white;
        transition: width 0.3s ease;
    }
    
    .enlace-elegante:hover::after {
        width: 100%;
    }
    /* Botón flotante de WhatsApp */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366; /* Color oficial de WhatsApp */
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
    text-decoration:none;
}

.whatsapp-btn:hover {
    background-color: #128C7E; /* Color más oscuro al pasar el mouse */
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* Animación de pulso específica para WhatsApp */
@keyframes pulse-whatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}