a{
    text-decoration: none;
}
#cargando {
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.9);
    position: fixed;
    z-index: 99999999999;
    top: 0;
}
.footer-logo-icon{
    display: flex;
    align-items: center;
    gap: 8px; /* espacio entre logos, ajusta si quieres */
}

.footer-logo-icon img{
    width: 126px;
    height: auto; /* mantiene proporción */
}
.footer-logo-icon{
    background: none!important;
}
.nav-inner{
    width: 100%;
}
.nav-inner .logo{
    display: flex;
    align-items: center;
    gap: 8px; /* opcional */
}

.topimg26{
    max-height: 62px;
    width: auto; /* mantiene proporción */
    z-index: 1;
    position: relative;
}

.whatsapp-float {
    position: fixed;
    right: 0px;
    bottom: 80px; /* Ajusta la altura */
    background-color: #25D366;
    color: #fff;
    font-size: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 30px 0 0 30px; /* Bordes redondeados en la izquierda */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    transition: background 0.3s, transform 0.3s;
}

.whatsapp-float:hover {
    background-color: #fff;
    color: #25D366;
    transform: scale(1.1);
}

/*social float*/
.social-float {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.social-float a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
}

.social-float a:hover {
    transform: scale(1.15) translateX(5px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.35);
}

/* LinkedIn */
.social-float a.linkedin {
    background: linear-gradient(135deg, #0077b5 0%, #005885 100%);
}

.social-float a.linkedin:hover {
    background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
}

/* Facebook */
.social-float a.facebook {
    background: linear-gradient(135deg, #1877f2 0%, #0d5bbd 100%);
}

.social-float a.facebook:hover {
    background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
}

/* Instagram */
.social-float a.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-float a.instagram:hover {
    background: linear-gradient(45deg, #ffb347 0%, #ff6b4a 25%, #e8395a 50%, #d93d7a 75%, #c92498 100%);
}

/* Twitter/X */
.social-float a.twitter {
    background: linear-gradient(135deg, #1da1f2 0%, #0d8ecf 100%);
}

.social-float a.twitter:hover {
    background: linear-gradient(135deg, #33b5ff 0%, #1a9fe0 100%);
}

/* YouTube */
.social-float a.youtube {
    background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
}

.social-float a.youtube:hover {
    background: linear-gradient(135deg, #ff3333 0%, #e60000 100%);
}

/* Spotify */
.social-float a.spotify {
    background: linear-gradient(135deg, #1db954 0%, #169c46 100%);
}

.social-float a.spotify:hover {
    background: linear-gradient(135deg, #1ed760 0%, #1db954 100%);
}

/* Iconos SVG */
.social-float a svg {
    width: 24px;
    height: 24px;
    fill: white;
    transition: transform 0.3s ease;
}

.social-float a:hover svg {
    transform: scale(1.1);
}

/* Tooltip */
.social-float a::before {
    content: attr(data-tooltip);
    position: absolute;
    left: 65px;
    background-color: #333;
    color: white;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.social-float a::after {
    content: '';
    position: absolute;
    left: 57px;
    border: 6px solid transparent;
    border-right-color: #333;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.social-float a:hover::before,
.social-float a:hover::after {
    opacity: 1;
    visibility: visible;
}

/* Animación de entrada */
.social-float a {
    animation: slideIn 0.5s ease forwards;
    opacity: 0;
}

.social-float a:nth-child(1) {
    animation-delay: 0.1s;
}
.social-float a:nth-child(2) {
    animation-delay: 0.2s;
}
.social-float a:nth-child(3) {
    animation-delay: 0.3s;
}
.social-float a:nth-child(4) {
    animation-delay: 0.4s;
}
.social-float a:nth-child(5) {
    animation-delay: 0.5s;
}
.social-float a:nth-child(6) {
    animation-delay: 0.6s;
}

.afternav{
    margin-top: 80px;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Efecto pulse opcional */
.social-float a.pulse::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: inherit;
    animation: pulse 2s infinite;
    z-index: -1;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

/*ajustes menú*/
/* Contenedor dropdown */
.dropdown {
    position: relative;
}

/* Submenu */
.dropdown-menu {
    position: absolute;
    top: 120%;
    left: 0;
    min-width: 220px;
    padding: 10px 0;

    background: linear-gradient(135deg, rgba(23, 75, 122, 0.25), rgba(23, 75, 122, 0.35));
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);

    border: 1px solid var(--color-border);
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,.25);

    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

/* Items */
.dropdown-menu a {
    display: block;
    padding: 12px 18px;
    color: white;
    text-decoration: none;
    transition: .25s;
}

.dropdown-menu a:hover {
    background: rgba(77, 208, 225, 0.15);
    padding-left: 24px;
}

/* Mostrar submenu */
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.dropdown-menu::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
}
/*menú hamburgruesa*/
/* ================= NAVBAR BASE (DESKTOP) ================= */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, rgba(23, 75, 122, 0.15) 0%, rgba(23, 75, 122, 0.25) 100%);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border-bottom: 1px solid var(--color-border);
    transition: var(--transition);
    box-shadow: 0 8px 32px rgba(23, 75, 122, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 0 60px rgba(77, 208, 225, 0.15);
}

/* contenedor necesario para posicionar dropdown */
.nav-inner{
    position:relative;
    
}

/* ===== NAV LINKS DESKTOP ===== */

.nav-links{
    display:flex;
    align-items:center;
    gap:28px;
}

/* ===== DROPDOWN DESKTOP ===== */

.dropdown{
    position:relative;
}

.dropdown-menu{
    position:absolute;
    top:120%;
    left:0;
    min-width:220px;
    padding:10px 0;

    background: linear-gradient(135deg, rgba(23, 75, 122, 0.25), rgba(23, 75, 122, 0.35));
    backdrop-filter: blur(20px);

    border-radius:12px;
    box-shadow:0 15px 40px rgba(0,0,0,.25);

    opacity:0;
    visibility:hidden;
    transform:translateY(10px);
    transition:.25s;
}

.dropdown:hover .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.dropdown-menu a{
    display:block;
    padding:12px 18px;
    color:white;
    text-decoration:none;
}

.dropdown-menu a:hover{
    background: rgba(77, 208, 225, 0.15);
}

/* ================= HAMBURGUESA ================= */

.menu-toggle{
    display:none;
    font-size: 28px;
    border: none;
    color: white;
    cursor: pointer;
    position: absolute;
    right: 40px;
    top: 10px;
    z-index: 99999 !important;
    border-radius: 30px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.8);
}


/* ================================================= */
/* ================== MOBILE ======================= */
/* ================================================= */

@media (max-width: 900px){

    .nav-inner{
        width: 100vw;
    }
    
    .topimg26 {
        max-height: inherit;
        max-width: 120px;
    }
    
    .menu-toggle{
        display:block;
    }

    /* PANEL */
    .nav-links{
        position:absolute;
        top:100%;
        left:10px;
        right:10px;

        display:flex;
        flex-direction:column;
        align-items:stretch;

        background: rgba(198,211,224,0.8);

        backdrop-filter: blur(25px);

        border-radius:18px;
        padding:0 20px;

        max-height:0;
        overflow:hidden;
        opacity:0;
        transform:translateY(-10px);

        transition:.35s;
    }

    .nav-links.active{
        max-height:calc(100vh - 90px);
        opacity:1;
        transform:translateY(0);
        padding:20px;
    }

    /* LINKS */
    .nav-link{
        display:block;
        width:100%;
        padding:16px 0;
        background:none;
        border-radius:0;
    }

    .nav-links a:not(:last-child){
        border-bottom:1px solid rgba(255,255,255,0.08);
    }

    /* ===== DROPDOWN MOBILE ===== */

    .dropdown-menu{
        position:static;
        width:100%;

        background: rgba(255,255,255,0.05);
        border-radius:12px;
        margin:8px 0;

        box-shadow:none;
        border:none;

        max-height:0;
        overflow:hidden;
        padding:0;

        opacity:1;
        visibility:visible;
        transform:none;
    }

    .dropdown.active .dropdown-menu{
        max-height:400px;
        padding:10px;
    }

}



/* Responsive */
@media (max-width: 768px) {
    .social-float {
        left: 15px;
        gap: 10px;
    }

    .social-float a {
        width: 45px;
        height: 45px;
    }

    .social-float a svg {
        width: 22px;
        height: 22px;
    }

    /* Ocultar tooltips en móvil */
    .social-float a::before,
    .social-float a::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .social-float {
        left: 10px;
    }

    .social-float a {
        width: 42px;
        height: 42px;
    }

    .social-float a svg {
        width: 20px;
        height: 20px;
    }
}

/*contacto*/

.contact-section {
    padding: 100px 40px;
    background: linear-gradient(180deg, #F0F4F8 0%, #E8EEF4 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(26, 115, 232, 0.15), transparent 60%);
    pointer-events: none;
}

.contact-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 166, 126, 0.12), transparent 60%);
    pointer-events: none;
}

.contact-inner {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-header {
    text-align: center;
    margin-bottom: 48px;
}

.contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(26, 115, 232, 0.1), rgba(0, 166, 126, 0.1));
    border: 1px solid rgba(26, 115, 232, 0.2);
    border-radius: 100px;
    margin-bottom: 20px;
}

.contact-badge-icon {
    width: 20px;
    height: 20px;
    stroke: var(--color-accent);
    stroke-width: 2;
    fill: none;
}

.contact-badge-text {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.contact-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.contact-description {
    font-size: 17px;
    color: var(--color-text-muted);
    max-width: 500px;
    margin: 0 auto;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.04),
        0 1px 2px rgba(0, 0, 0, 0.02),
        inset 0 1px 1px rgba(255, 255, 255, 0.9),
        inset 0 -1px 1px rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(255, 255, 255, 1);
    transform: translateY(-4px) scale(1.01);
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.08),
        0 4px 12px rgba(0, 0, 0, 0.04),
        inset 0 1px 1px rgba(255, 255, 255, 1),
        inset 0 -1px 1px rgba(0, 0, 0, 0.02);
}

.contact-card:active {
    transform: translateY(-2px) scale(0.99);
}

.contact-card-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
    position: relative;
    z-index: 1;
    box-shadow:
        0 4px 12px rgba(26, 115, 232, 0.3),
        inset 0 1px 1px rgba(255, 255, 255, 0.3);
}

.contact-card:hover .contact-card-icon {
    transform: scale(1.05);
}

.contact-card-icon svg {
    width: 28px;
    height: 28px;
}

.contact-card-icon.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    box-shadow:
        0 4px 12px rgba(37, 211, 102, 0.3),
        inset 0 1px 1px rgba(255, 255, 255, 0.3);
}

.contact-card-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.contact-card-label {
    font-size: 13px;
    color: var(--color-text-muted);
    margin-bottom: 4px;
}

.contact-card-value {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-primary);
}

.contact-card-arrow {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    position: relative;
    z-index: 1;
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.04),
        inset 0 1px 1px rgba(255, 255, 255, 0.8);
}

.contact-card:hover .contact-card-arrow {
    background: var(--color-secondary);
    border-color: var(--color-secondary);
    transform: translateX(4px);
    box-shadow:
        0 4px 12px rgba(26, 115, 232, 0.3),
        inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

.contact-card-arrow svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-text-muted);
    stroke-width: 2;
    fill: none;
    transition: var(--transition);
}

.contact-card:hover .contact-card-arrow svg {
    stroke: white;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-section {
        padding: 60px 24px;
    }

    .contact-cards {
        grid-template-columns: 1fr;
    }

    .contact-card {
        padding: 24px;
    }

    .contact-card-value {
        font-size: 16px;
    }
}

