/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(to bottom, #ffffff, #ecefa6, #f5bfc1);
    min-height: 100vh;
    font-family: 'Inter', sans-serif;
  
    
}

.header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    
}

.navbar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: absolute;
    left: 2rem;
}

.logo-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    display: block;
}

.logo h2 {
    color: #333;
    font-size: 1.5rem;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0 auto;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #007bff;
}

/* En escritorio ocultar solo el enlace "Contactar" (se usa el botón "Contactar ahora"); "Confesiones facheras" siempre visible */
.nav-menu li.nav-ocultar-escritorio {
    display: none;
}

/* Ocultar temporalmente Portfolio mientras se mejora (quitar esta clase para volver a mostrarlo) */
.nav-menu li.nav-ocultar-temporal {
    display: none !important;
}

/* Menú móvil (oculto por defecto) */
.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .navbar {
        justify-content: space-between;
        padding: 0.75rem 1rem;
        position: relative;
        flex-wrap: wrap;
    }
    
    .menu-toggle {
        display: flex;
        position: absolute;
        right: 1rem;
    }
    
    .btn-contacto {
        display: none !important;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: #fff;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        padding: 1rem;
        gap: 0;
        margin: 0;
        list-style: none;
        z-index: 999;
        margin-top: 0.5rem;
        border-radius: 0 0 8px 8px;
    }
    
    .nav-menu.abierto {
        display: flex;
    }
    
    .nav-menu li {
        border-bottom: 1px solid #eee;
    }
    
    /* En móvil mostrar también el ítem Contactar (oculto en escritorio) */
    .nav-menu li.nav-ocultar-escritorio {
        display: block;
    }
    
    .nav-menu li:last-child {
        display: block;
        border-bottom: none;
        margin-top: 0.5rem;
    }
    
    .nav-menu a {
        display: block;
        padding: 0.75rem 1rem;
    }
    
    .nav-menu li:last-child a {
        background-color: #8B4513;
        color: #fff;
        text-align: center;
        border-radius: 8px;
        font-weight: bold;
        padding: 0.5rem 0.75rem;
        font-size: 0.9rem;
    }
    
    .nav-menu li:last-child a:hover {
        background-color: #6d3410;
        color: #fff;
    }
    
    .logo {
        position: static;
        left: auto;
    }
    
    .logo h2 {
        font-size: 1.2rem;
    }
    
    .logo-img {
        width: 40px;
        height: 40px;
    }
}

/* Pantallas muy angostas: evitar que el botón tape el logo */
@media (max-width: 420px) {
    .logo h2 {
        display: none;
    }
    
    .logo-img {
        width: 32px;
        height: 32px;
    }
    
    .navbar {
        padding: 0.5rem 0.75rem;
    }
    
    .menu-toggle {
        right: 0.75rem;
    }
    
    .btn-contacto {
        right: calc(0.75rem + 28px + 0.35rem);
        padding: 0.4rem 0.5rem;
        font-size: 0.75rem;
    }
}

/* Botón de contacto */
.btn-contacto {
    background-color: #8B4513;
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
    display: inline-block;
    margin: 0 auto;
    position: absolute;
    right: 2rem;
    text-decoration: none;
}

.btn-contacto:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(238, 249, 170, 0.4);
}

.seccion-imagen-descripcion {
    padding: 2rem;
    margin-top: 3rem;
}

.contenedor-principal {
    max-width: 1200px;
    margin: 0 auto;
}

.titulo-principal {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    font-weight: 700;
}

.contenedor-cuadros {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.cuadro-imagen {
    flex: 1;
}

.cuadro-imagen img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.cuadro-descripcion {
    flex: 1;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.cuadro-descripcion h1 {
    margin-bottom: 1rem;
}

.cuadro-descripcion h3 {
    margin-bottom: 1rem;
}

.cuadro-descripcion p {
    margin: 0;
}

/* Responsive para móviles */
@media (max-width: 768px) {
    .contenedor-cuadros {
        flex-direction: column;
    }
}

/* Estilos para el carrusel */
.carousel {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.carousel-inner {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: transparent;
}

.carousel-item {
    min-height: 400px;
}

.carousel-content-wrapper {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 1.5rem;
}

.carousel-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-image img {
    max-height: 400px;
    width: 100%;
    object-fit: contain;
    border-radius: 8px;
}

.carousel-text {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}.carousel-text h5 {
    color: #000;
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.carousel-text p {
    color: #000;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Responsive para móviles - carrusel */
@media (max-width: 768px) {
    .carousel {
        max-width: 100%;
        margin: 1rem auto;
        padding: 0 0.5rem;
    }
    
    .carousel-content-wrapper {
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
    }
    
    .carousel-image img {
        max-height: 250px;
    }
    
    .carousel-text {
        padding: 1rem;
        text-align: center;
    }
    
    .carousel-text h5 {
        font-size: 1.5rem;
    }
    
    .carousel-text p {
        font-size: 1rem;
    }
}

/* Estilos para el formulario de contacto */
.formulario-seccion {
    padding: 3rem 2rem;
    margin-top: 3rem;
}

.contenedor-formulario-flex {
    padding: 3rem 2rem;
    margin-top: 3rem;
}

.contenedor-formulario {
    max-width: 1000px;
    margin: 0 auto;
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.titulo-formulario {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 700;
    color: #333;
}

.formulario-contacto {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.formulario-columnas {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.columna-formulario-izq,
.columna-formulario-der {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.campo-formulario {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.campo-formulario label {
    font-weight: 500;
    color: #333;
    font-size: 1rem;
}

.campo-formulario input,
.campo-formulario textarea {
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s;
}

.campo-formulario input:focus,
.campo-formulario textarea:focus {
    outline: none;
    border-color: #8B4513;
}

.campo-formulario textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-enviar {
    background-color: #8B4513;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
    margin-top: 1rem;
}

.btn-enviar:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.4);
}

/* Responsive para móviles - formulario */
@media (max-width: 768px) {
    .contenedor-formulario-flex {
        padding: 2rem 1rem;
        margin-top: 2rem;
    }
    
    .contenedor-formulario {
        padding: 1.5rem;
    }
    
    .titulo-formulario {
        font-size: 1.5rem;
    }
    
    .formulario-columnas {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* Estilos para la sección de nosotros en el formulario */
.nosotros-texto {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contenedor-contactanos-flex {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.columna-gif-contactanos {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.imagen-gif-contactanos {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.columna-texto-contactanos {
    flex: 1;
}

.nosotros-titulo {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
}

.nosotros-parrafo {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 1.5rem;
}

.nosotros-estadisticas {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.estadistica-box {
    background-color: #1a1a1a;
    color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    flex: 1;
    max-width: 300px;
}

.estadistica-numero {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.estadistica-texto {
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Responsive para móviles - sección nosotros */
@media (max-width: 768px) {
    .nosotros-texto {
        padding: 1.5rem;
        margin: 2rem 1rem;
    }
    
    .contenedor-contactanos-flex {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .columna-gif-contactanos {
        order: 2;
    }
    
    .columna-texto-contactanos {
        order: 1;
    }
    
    .imagen-gif-contactanos {
        max-width: 100%;
    }
    
    .nosotros-titulo {
        font-size: 2rem;
    }
    
    .nosotros-parrafo {
        font-size: 1rem;
    }
    
    .nosotros-estadisticas {
        flex-direction: column;
        padding: 0 1rem;
    }
    
    .estadistica-box {
        max-width: 100%;
    }
    
    .estadistica-numero {
        font-size: 2.5rem;
    }
}

/* Estilos para el contenedor GIF y Formulario con Flexbox */
.contenedor-gif-formulario {
    display: flex;
    gap: 3rem;
    max-width: 1200px;
    margin: 3rem auto;
    padding: 2rem;
    align-items: flex-start;
}

.columna-gif {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.imagen-gif {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.columna-formulario {
    flex: 1;
}

/* Ajustar el formulario dentro de la columna */
.columna-formulario .contenedor-formulario {
    margin: 0;
}

/* Responsive para móviles - contenedor GIF y Formulario */
@media (max-width: 768px) {
    .contenedor-gif-formulario {
        flex-direction: column;
        padding: 1rem;
        gap: 2rem;
    }
    
    .columna-gif {
        order: 2;
    }
    
    .columna-formulario {
        order: 1;
    }
    
    .imagen-gif {
        max-width: 100%;
    }
}

/* ============================================ */
/* PASO 3: Reproductor de Música - Estilos CSS */
/* ============================================ */

/* Contenedor principal del reproductor */
.reproductor-musica {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    max-width: 600px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(236, 239, 166, 0.98));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 0.6rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    z-index: 2000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Información de la canción */
.reproductor-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 120px;
    max-width: 150px;
    flex-shrink: 0;
}

.reproductor-detalles {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    min-width: 0;
}

.reproductor-titulo {
    font-size: 0.75rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
}

.reproductor-artista {
    font-size: 0.65rem;
    color: #666;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
}

/* Controles principales */
.reproductor-controles {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    min-width: 0;
}

.controles-navegacion {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

/* Botones de control */
.btn-control {
    background: transparent;
    border: none;
    color: #333;
    cursor: pointer;
    padding: 0.3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    width: 28px;
    height: 28px;
}

.btn-control:hover {
    background: rgba(0, 0, 0, 0.1);
    transform: scale(1.1);
}

.btn-control:active {
    transform: scale(0.95);
}

.btn-play-pause {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
}

.btn-play-pause:hover {
    background: linear-gradient(135deg, #0056b3, #004085);
    transform: scale(1.05);
}

.btn-control svg {
    width: 100%;
    height: 100%;
}

/* Barra de progreso */
.reproductor-progreso {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    width: 100%;
}

.tiempo-actual,
.tiempo-total {
    font-size: 0.65rem;
    color: #666;
    min-width: 32px;
    text-align: center;
}

.barra-progreso-container {
    flex: 1;
    height: 4px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    cursor: pointer;
    position: relative;
}

.barra-progreso {
    width: 100%;
    height: 100%;
    position: relative;
}

.barra-progreso-relleno {
    height: 100%;
    background: linear-gradient(90deg, #007bff, #0056b3);
    border-radius: 3px;
    width: 0%;
    transition: width 0.1s linear;
}

.barra-progreso-container:hover .barra-progreso-relleno {
    background: linear-gradient(90deg, #0056b3, #004085);
}

/* Controles adicionales */
.reproductor-extras {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 120px;
    flex-shrink: 0;
}

/* Control de volumen */
.control-volumen {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    flex: 1;
}

.btn-volumen {
    width: 24px;
    height: 24px;
}

.barra-volumen-container {
    flex: 1;
    height: 3px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 2px;
    cursor: pointer;
    max-width: 60px;
}

.barra-volumen {
    width: 100%;
    height: 100%;
    position: relative;
}

.barra-volumen-relleno {
    height: 100%;
    background: #007bff;
    border-radius: 2px;
    width: 100%;
    transition: width 0.1s linear;
}

.volumen-valor {
    font-size: 0.6rem;
    color: #666;
    min-width: 28px;
    text-align: right;
}

.btn-playlist {
    width: 24px;
    height: 24px;
}

/* Playlist desplegable */
.playlist-container {
    position: fixed;
    bottom: 80px;
    right: 50%;
    transform: translateX(50%);
    width: 320px;
    max-height: 300px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    z-index: 2001;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.playlist-container.mostrar {
    display: flex;
}

.playlist-header {
    padding: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.playlist-header h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #333;
}

.btn-cerrar-playlist {
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.btn-cerrar-playlist:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #333;
}

.playlist-lista {
    list-style: none;
    margin: 0;
    padding: 0;
    overflow-y: auto;
    flex: 1;
}

.playlist-item {
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.playlist-item:hover {
    background: rgba(0, 123, 255, 0.1);
}

.playlist-item.activa {
    background: linear-gradient(90deg, rgba(0, 123, 255, 0.2), rgba(0, 123, 255, 0.1));
    border-left: 3px solid #007bff;
}

.playlist-item-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.playlist-item-titulo {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
}

.playlist-item-artista {
    font-size: 0.8rem;
    color: #666;
}

.playlist-item.activa .playlist-item-titulo {
    color: #007bff;
}

/* Elemento de audio oculto */
#audioPlayer {
    display: none;
}

/* Responsive para móviles - Reproductor */
@media (max-width: 768px) {
    .reproductor-musica {
        bottom: 10px;
        left: 10px;
        right: 10px;
        transform: none;
        max-width: none;
        flex-direction: row;
        padding: 0.5rem 0.8rem;
        gap: 0.6rem;
    }
    
    .reproductor-info {
        min-width: 100px;
        max-width: 120px;
    }
    
    .reproductor-controles {
        flex: 1;
    }
    
    .reproductor-progreso {
        gap: 0.3rem;
    }
    
    .tiempo-actual,
    .tiempo-total {
        font-size: 0.6rem;
        min-width: 28px;
    }
    
    .reproductor-extras {
        min-width: 100px;
        gap: 0.4rem;
    }
    
    .barra-volumen-container {
        max-width: 50px;
    }
    
    .volumen-valor {
        font-size: 0.55rem;
        min-width: 25px;
    }
    
    .playlist-container {
        bottom: 70px;
        right: 10px;
        left: 10px;
        transform: none;
        width: auto;
        max-height: 250px;
    }
}

@media (max-width: 480px) {
    .reproductor-musica {
        padding: 0.4rem 0.6rem;
        gap: 0.4rem;
    }
    
    .btn-play-pause {
        width: 32px;
        height: 32px;
    }
    
    .btn-control {
        width: 24px;
        height: 24px;
    }
    
    .controles-navegacion {
        gap: 0.3rem;
    }
    
    .reproductor-info {
        min-width: 80px;
        max-width: 100px;
    }
    
    .reproductor-titulo {
        font-size: 0.7rem;
    }
    
    .reproductor-artista {
        font-size: 0.6rem;
    }
}

/* ============================================ */
/* ============================================ */
/* ============================================ */
/* FOOTER - ESTILOS CSS */
/* ============================================ */
/* ============================================ */
/* ============================================ */

/* Footer - Contenedor principal */
.footer {
    position: relative;
    width: 100%;
    background: linear-gradient(to bottom, #ffffff, #ecefa6, #f5bfc1);
    color: #250bed;
    margin-top: 4rem;
}

/* Footer - Barra superior azul */
.footer-barra-superior {
    background: linear-gradient(to bottom, #ffffff, #ecefa6, #edf3d3);
    padding: 1rem;
    text-align: center;
    color: #120efd;
    font-weight: 600;
}

.footer-barra-superior p {
    margin: 0;
    font-size: 1.1rem;
}

/* Footer - Contenedor principal del contenido */
.footer-contenido {
    padding: 3rem 2rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    gap: 3rem;
    margin-bottom: 2rem;
}

/* Footer - Columnas */
.footer-columna {
    flex: 1;
    min-width: 200px;
}

.footer-titulo {
    color: #000000; /* Negro para los títulos */
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-lista {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.footer-lista li {
    margin-bottom: 0.5rem;
}

.footer-lista a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-lista a:hover {
    color: #333333;
}

.footer-texto {
    color: #000000;
    margin: 0;
    line-height: 1.6;
}

/* Footer - Características */
.footer-caracteristica {
    margin-bottom: 1.5rem;
}

.footer-caracteristica strong {
    color: #000000;
    display: block;
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.footer-caracteristica p {
    color: #333333; /* Gris oscuro */
    margin: 0;
    font-size: 0.9rem;
}

/* Footer - Herramientas (iconos) */
.footer-herramientas {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.herramienta-icono {
    display: flex;
    align-items: center;
    justify-content: center;
}

.icono-html5 {
    background-color: #e34c26; /* Naranja */
    color: white;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icono-css3 {
    background-color: #264de4; /* Azul */
    color: white;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icono-js {
    background-color: #f0db4f; /* Amarillo */
    color: #323330;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icono-php {
    background-color: #777bb4; /* Morado */
    color: white;
    padding: 1rem;
    border-radius: 50%;
    text-align: center;
    font-weight: 600;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Footer - Copyright */
.footer-copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    color: #000000;
}

.footer-copyright p {
    margin: 0;
    font-size: 0.9rem;
}

/* Footer - Widget de chat */
.chat-widget {
    position: fixed;
    bottom: 100px;
    right: 20px;
    display: flex;
    align-items: flex-end;
    gap: 10px;
    z-index: 1000;
}

.chat-burbuja {
    background-color: #333;
    color: white;
    padding: 1rem;
    border-radius: 12px;
    max-width: 250px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.chat-burbuja p {
    margin: 0;
    font-size: 0.9rem;
}

.chat-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

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

/* Footer - Responsive para móviles */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-herramientas {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .chat-widget {
        bottom: 80px;
        right: 10px;
    }
    
    .chat-burbuja {
        max-width: 200px;
    }
}