/* Estilos del Header */
.header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
}

.logo-img {
    height: 40px;
    width: auto;
    display: block;
}

.logo-img {
    height: 70px;
    width: auto;
    display: block;
}

.nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

/* Estilos del Footer */
.footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1a4a1c 100%);
    color: var(--white);
    padding: 70px 20px 30px;
    position: relative;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-logo {
    width: 150px;
    height: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-section h3 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

.footer-section p,
.footer-section a {
    color: var(--white);
    opacity: 0.9;
    text-decoration: none;
    margin-bottom: 15px;
    display: block;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    opacity: 1;
    transform: translateX(5px);
    color: var(--accent-color);
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.copyright {
    opacity: 0.8;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer {
        padding: 50px 20px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-section h3 {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 25px;
}

.social-links a {
    color: var(--white);
    font-size: 1.8rem;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.social-links a:hover {
    transform: translateY(-5px);
    color: var(--accent-color);
    opacity: 1;
}

.contact-section p {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-section i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    opacity: 0.8;
    font-size: 0.9rem;
}

.copyright a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.copyright a:hover {
    opacity: 1;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--white);
    opacity: 0.8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent-color);
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .brand-section {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 50px 20px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
}

.highlight-link {
    color: var(--primary-color) !important;
    font-weight: 600;
    padding: 8px 15px;
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.highlight-link:hover {
    background-color: var(--primary-color);
    color: var(--white) !important;
    transform: translateY(-2px);
}

.page-header {
    text-align: center;
    padding: 120px 20px 60px;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
}

.page-header h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-header p {
    color: var(--text-color);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

.registro-cta {
    position: relative;
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #1a1a1a, #2d3436);
    color: white;
    text-align: center;
    overflow: hidden;
}

.registro-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,123,255,0.1), rgba(0,189,212,0.1));
    pointer-events: none;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.beneficio-card {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.beneficio-card:hover {
    transform: translateY(-10px);
}

.beneficio-card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #00bcd4;
}

.beneficio-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.beneficio-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.9);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(45deg, #007bff, #00bcd4);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    background: linear-gradient(45deg, #0056b3, #008ba3);
}

.animate-pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0,123,255,0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0,123,255,0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0,123,255,0);
    }
}

@media (max-width: 768px) {
    .registro-cta {
        padding: 4rem 1rem;
    }

    .beneficios-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .beneficio-card {
        padding: 1.5rem;
    }
}


/* Estilos del Submenú */
.has-submenu {
    position: relative;
}

.has-submenu .nav-link i {
    margin-left: 5px;
    font-size: 0.8em;
    transition: transform 0.3s ease;
}

.has-submenu:hover .nav-link i {
    transform: rotate(180deg);
}

.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    box-shadow: var(--shadow);
    border-radius: 8px;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    padding: 8px 0;
}

.has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.submenu-link {
    color: var(--text-color);
    text-decoration: none;
    padding: 10px 20px;
    display: block;
    transition: all 0.3s ease;
    font-size: 0.95em;
}

.submenu-link:hover {
    background-color: var(--light-bg);
    color: var(--primary-color);
}

/* Estilos del Submenú en Móvil */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
        z-index: 1001;
        padding: 10px;
        transition: all 0.3s ease;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: var(--white);
        padding: 80px 20px 20px;
        transition: all 0.3s ease;
        z-index: 1000;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    }

    nav.active {
        right: 0;
    }

    .nav-menu {
        flex-direction: column;
        gap: 15px;
        padding: 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .submenu {
        position: static;
        background: none;
        box-shadow: none;
        display: none;
        padding-left: 20px;
        min-width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .has-submenu.active .submenu {
        display: block;
    }

    .submenu-link {
        padding: 8px 0;
        font-size: 0.9em;
        color: var(--text-color);
    }

    .has-submenu .nav-link i {
        transition: transform 0.3s ease;
    }

    .has-submenu.active .nav-link i {
        transform: rotate(180deg);
    }
}
    .has-submenu .nav-link i {
        transition: transform 0.3s ease;
    }

    .has-submenu.active .nav-link i {
        transform: rotate(180deg);
    }

