/* ===== Footer Moderno y Elegante ===== */
.footer {
    background: rgb(5, 0, 0);
    color: #fff;
    padding: 3rem 0 1.2rem 0;
    position: relative;
    z-index: 10;
    margin-top: 60px;
    box-shadow: 0 -4px 32px rgba(44,10,80,0.10);
    border-top-left-radius: 32px;
    border-top-right-radius: 32px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 32px;
}

.footer-brand {
    text-align: left;
    min-width: 180px;
}

.footer-brand h3 {
    font-size: 1.7rem;
    margin-bottom: 10px;
    color: #b56b7c;
    letter-spacing: 1px;
    font-family: "Funnel Display", Arial, sans-serif;
}

.footer-brand p {
    font-size: 1rem;
    color: #e0cfff;
    margin-bottom: 0;
    font-family: "Work Sans", Arial, sans-serif;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 140px;
    margin-top: 8px;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1.08rem;
    font-family: "Funnel Display", Arial, sans-serif;
    transition: color 0.2s;
    border-radius: 8px;
    padding: 4px 0;
    letter-spacing: 0.5px;
}

.footer-links a:hover {
    color: #b56b7c;
    background: rgba(255,255,255,0.08);
    padding-left: 8px;
    transition: all 0.2s;
}

.footer-social {
    display: flex;
    gap: 18px;
    margin-top: 12px;
}

.footer-social a {
    color: #fff;
    font-size: 1.6rem;
    transition: color 0.2s, transform 0.2s;
    background: rgba(255,255,255,0.10);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social a:hover {
    color: #b56b7c;
    background: #fff;
    transform: scale(1.15);
}

.footer-bottom {
    text-align: center;
    padding: 18px 0 8px 0;
    font-size: 0.9rem;
    color: #e0cfff;
    position: relative;
    z-index: 2;
    margin-top: 2rem;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.2) 100%);
    z-index: 1;
    border-radius: 32px;
    filter: blur(20px);
}

.footer-bottom span {
    position: relative;
    z-index: 2;
}


/* Redes sociales burbujas */
.social-section {
    background: #fafafa;
    padding: 40px 0 30px 0;
    text-align: center;
}

.social-bubbles {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.bubble {
    display: flex;
    align-items: center;
    gap: 18px;
    background: #a06a97;
    border-radius: 50% 40% 60% 50% / 50% 60% 40% 50%;
    padding: 24px 38px;
    min-width: 220px;
    min-height: 110px;
    box-shadow: 0 4px 18px rgba(160,106,151,0.10);
    color: #fff;
    font-weight: bold;
    font-size: 1.25rem;
    position: relative;
    transition: transform 0.2s;
}

.bubble i {
    font-size: 3.2rem;
    color: #6ec6ca;
}

.bubble-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
}

.bubble-user {
    font-size: 0.95rem;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.bubble.instagram { background: #b56b7c; }
.bubble.tiktok { background: #6ec6ca; color: #fff; }
.bubble.tiktok i { color: #b56b7c; }
.bubble.youtube { background: #b56b7c; }
.bubble.youtube i { color: #6ec6ca; }

.bubble:hover {
    transform: scale(1.05) translateY(-4px);
    box-shadow: 0 8px 32px rgba(160,106,151,0.18);
}

.bubble-portfolio {
    margin-top: 18px;
}

.portfolio-btn {
    background: #b1d8b7;
    color: #3d2c1e;
    font-size: 1.35rem;
    font-weight: 600;
    border: none;
    border-radius: 16px;
    padding: 16px 54px;
    box-shadow: 0 2px 8px rgba(247,215,75,0.13);
    text-decoration: none;
    letter-spacing: 2px;
    transition: background 0.2s, transform 0.2s;
    display: inline-block;
}

.portfolio-btn:hover {
    background: #ffe066;
    transform: scale(1.04);
}

/* Botón flotante de WhatsApp */
.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9999;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 4px 16px rgba(44,10,80,0.18);
    transition: background 0.2s, transform 0.2s;
    text-decoration: none;
}
.whatsapp-float:hover {
    background: #1ebe57;
    transform: scale(1.08);
}


/* Logo footer grande, centrado, sin fondo ni borde extra */
.footer-logo {
    display: block;
    margin: 0 auto;
    height: 200px;      /* Ajusta el tamaño según lo que necesites */
    max-width: 100%;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
}

/* Logo del menú principal sin fondo ni borde */
.navbar-logo {
    height: 170px;         /* Ajusta el tamaño según lo necesites */
    max-width: 300px;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin-left: 20px;
    margin-right: 20px;
    display: inline-block;
    vertical-align: middle;
}

/* Navbar animación y fondo glass */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1050;
    transition: transform 0.4s, background 0.3s, box-shadow 0.3s;
    background: rgba(34,34,51,0.55);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #e83e8c;
}

/* Agrandar texto de los enlaces del menú y efecto hover */
.navbar-nav .nav-link {
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    transition: color 0.3s, transform 0.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: #d9a5b3;
    transform: scale(1.12);
}



/* Responsive Design para las nuevas secciones */
@media (max-width: 768px) {
    .presentation-content,
    .paco-content {
        flex-direction: column;
        text-align: center;
    }
    
    .circular-image {
        width: 200px;
        height: 200px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .courses-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .presentation-text h2,
    .paco-header h2,
    .services-title {
        font-size: 2rem;
    }
    
    .testimonials h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .courses-grid {
        grid-template-columns: 1fr;
    }
    
    .course-card {
        max-width: 300px;
        margin: 0 auto;
    }
}

/* Responsive para móvil */
@media (max-width: 900px) {
    .paco-content {
        flex-direction: column-reverse;
        gap: 32px;
    }
    .paco-image, .paco-text {
        max-width: 100%;
    }
    .paco-text {
        text-align: center;
    }
    .social-bubbles {
        flex-direction: column;
        gap: 18px;
        align-items: center;
    }
    .bubble {
        min-width: 180px;
        padding: 18px 20px;
        font-size: 1.1rem;
    }
}