/* =========================================
   1. RESET Y VARIABLES GLOBALES
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-yellow: #ffc65b; 
    --text-on-yellow: #000000; 
}

body {
    /* CAMBIO: Bodoni Moda es la fuente estilo 'Smooth/Elegant' que buscas */
    font-family: 'Bodoni Moda', serif;
    /* Ajuste visual: estas fuentes a veces piden un poco más de tamaño o interlineado */
    font-weight: 400;
    line-height: 1.6;
    
    overflow: hidden; 
    background-color: #000; 
}

/* =========================================
   2. PORTADA (INDEX)
   ========================================= */
.cover-page {
    height: 100vh; 
    width: 100%;
    background-image: url('../assets/img/uxia_blanco_negro.jpg'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center; 
    align-items: center;     
    position: relative;
}

.cover-page::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.85));
    backdrop-filter: blur(0px);
    z-index: 1;
}

.content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1600px;
    padding: 0 5%;
    display: flex;
    flex-direction: column;
}

.titles-row {
    display: flex;
    justify-content: space-between; 
    align-items: flex-start;          
    width: 100%;
    margin-bottom: 230px; 
}

/* --- Tipografía Portada (MANTENEMOS INTER) --- */
.main-title, .subtitle {
    font-family: 'Inter', sans-serif;
    color: var(--primary-yellow);
    text-transform: uppercase;
    margin-top: 300px; 
    opacity: 0; 
    animation: fadeInUp 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.main-title {
    text-align: left;
    font-size: 1.8rem; 
    font-weight: 400;  
    letter-spacing: 1px;
    line-height: 1;
    font-style: italic;
}

.subtitle {
    text-align: right;
    font-size: 1.8rem; 
    font-weight: 400;  
    letter-spacing: 1px; 
    line-height: 1;
    animation-delay: 0.3s;
    font-style: italic;
}

/* =========================================
   3. COMPONENTES UI (BOTONES E ICONOS)
   ========================================= */
.button-group {
    display: flex;
    gap: 80px; 
    justify-content: center;
    align-self: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: 0.8s;
}

.btn-yellow {
    font-family: 'Inter', sans-serif;
    display: inline-block;
    padding: 12px 30px;
    font-size: 0.7rem; /* Ligero ajuste para legibilidad */
    background-color: transparent; 
    color: var(--primary-yellow);
    text-decoration: none;
    font-weight: 500; /* Un poco más de peso para que se lea bien en Bodoni */
    text-transform: uppercase;
    letter-spacing: 2px; 
    transition: all 0.4s ease;
}

.btn-yellow:hover {
    background-color: var(--primary-yellow);
    color: var(--text-on-yellow);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255, 209, 123, 0.2);
    border-color: var(--primary-yellow);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 5px; 
    margin-top: 10px; 
    opacity: 0;
    animation: fadeInUp 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
    animation-delay: 1.1s; 
}

.social-icons a {
    color: var(--primary-yellow); 
    font-size: 0.8rem; 
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid transparent;
}

.social-icons a:hover {
    color: var(--primary-yellow); 
    background-color: rgba(255, 209, 123, 0.1); 
    border-color: var(--primary-yellow);
    transform: translateY(-5px) scale(1.05); 
    box-shadow: 0 0 15px rgba(255, 209, 123, 0.3); 
}

/* =========================================
   4. ANIMACIONES
   ========================================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px); 
    }
    to {
        opacity: 1;
        transform: translateY(0); 
    }
}

/* =========================================
   5. PÁGINA DE MÚSICA
   ========================================= */
.music-page-body {
    font-family: 'Raleway', sans-serif;
    min-height: 100vh;
    height: auto;
    background-color: #050505;
    background-image: url('../assets/img/fondo_musica.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; 
    color: #fff;
    padding-bottom: 80px;
    position: relative;
    overflow-y: auto !important; 
    overflow-x: hidden;
}

.music-page-body::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.7), #000);
    z-index: 0;
    pointer-events: none; 
}

.top-nav {
    position: relative;
    z-index: 10;
    padding: 40px 5%;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    /* Back link suele verse mejor en Sans (Inter) para navegación */
    font-family: 'Inter', sans-serif; 
}

.back-link:hover {
    color: var(--primary-yellow);
    transform: translateX(-5px);
}

.music-container {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    animation: fadeInUp 0.8s ease-out;
}

.music-header {
    text-align: center;
    margin-bottom: 60px;
}

.music-title {
    /* MANTENEMOS INTER */
    font-family: 'Inter', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: -1px;
    color: var(--primary-yellow);
    font-style: italic;
    
    /* CAMBIO CLAVE: block hace que ocupe todo el ancho y empuje lo siguiente abajo */
    display: block; 
    
    margin-bottom: 10px; /* Espacio entre el título y el subtítulo */
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94); 
}

.music-subtitle {
    color: #ffff;
    font-size: 1rem;
    letter-spacing: 4px;
    font-weight: 200;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94); 
    
    /* CAMBIO CLAVE: block asegura que esté en su propia línea */
    display: block; 
    
    /* Subtítulos pequeños se leen mejor en Inter */
    font-family: Raleway, sans-serif; 
}

/* --- Playlist Card (Glassmorphism) --- */
.track-row {
    display: flex;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.2s ease;
    gap: 20px;
    cursor: pointer;
}

/* --- Botón Play Mini --- */
.play-btn-mini {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: all 0.3s ease;
    padding-left: 3px; 
}

.play-btn-mini:not(:contains('▶')) {
    padding-left: 0;
    border-color: var(--primary-yellow);
    color: var(--primary-yellow);
}

.track-row:hover .play-btn-mini {
    border-color: var(--primary-yellow);
    color: var(--primary-yellow);
    transform: scale(1.1);
}

/* --- Info Pistas --- */
.track-info {
    flex-grow: 1; 
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.track-title {
    font-family: 'Raleway', sans-serif;
    font-size: 1rem; /* Un poco más grande para lucir la fuente */
    font-weight: 500;
    color: #fff;
    margin-bottom: 4px;
}

.track-genre {
    font-family: 'Raleway', sans-serif;
    font-size: 0.75rem;
    color: var(--primary-yellow);
    letter-spacing: 1px;
    font-weight: 400;
    opacity: 0.8;
}

.track-meta {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
    letter-spacing: 1px;
}

/* Efectos Hover Textos */
.track-title, .track-genre, .track-meta span {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94); 
    display: block; 
    transform-origin: left center; 
}

.track-meta span {
    transform-origin: right center;
}

.track-row:hover .track-title {
    transform: scale(1.05) translateX(10px); 
    color: var(--primary-yellow);
}

.track-row:hover .track-genre {
    transform: scale(1.05) translateX(10px);
    opacity: 1; 
}

.track-row:hover .track-meta span {
    transform: scale(1.1);
    color: #fff; 
}

/* --- Control de Tiempo y Slider --- */
.time-control-wrapper {
    display: flex;
    align-items: center; 
    gap: 15px;           
    margin-top: 8px;
    width: 100%;
}

.time-text {
    font-family: 'Raleway', sans-serif;
    font-size: 0.75rem;       
    font-variant-numeric: tabular-nums; 
    color: rgba(255, 255, 255, 0.6);
    min-width: 45px;          
}

.current-time { text-align: right; }
.remaining-time { text-align: left; }

.seek-slider {
    -webkit-appearance: none; 
    flex-grow: 1; 
    height: 4px;               
    background: rgba(255, 255, 255, 0.2); 
    border-radius: 2px;
    outline: none;
    margin-top: 0;          
    cursor: pointer;
    transition: background 0.3s;
}

.seek-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 10px;
    height: 10px;
    background: var(--primary-yellow); 
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.2s;
}

.seek-slider:hover::-webkit-slider-thumb {
    transform: scale(1.3);
}

.seek-slider::-moz-range-thumb {
    width: 10px;
    height: 10px;
    background: var(--primary-yellow);
    border: none;
    border-radius: 50%;
    cursor: pointer;
}

/* =========================================
   6. PÁGINA DE CONTACTO
   ========================================= */
.contact-page-body {
    min-height: 100vh;
    background-color: #050505;
    background-image: url('../assets/img/contacto.jpeg'); 
    background-size: cover;
    background-position: bottom;
    background-attachment: fixed;
    font-family: 'Raleway', sans-serif;
    color: #fff;
    position: relative;
    display: flex;
    flex-direction: column;
}

.contact-page-body::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6), #000);
    z-index: 0;
    pointer-events: none;
}

.contact-container {
    position: relative;
    z-index: 10;
    width: 100%;
    max-width: 600px; 
    margin: 0 auto;
    padding: 0 20px 50px 20px;
    animation: fadeInUp 0.8s ease-out;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center; 
}

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

.contact-title {
    /* MANTENEMOS INTER */
    font-family: 'Inter', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    font-style: italic;
    color: var(--primary-yellow);
    letter-spacing: -1px;
    margin-bottom: 10px;
}

.contact-subtitle {
    color: #ffff;
    font-size: 1rem;
    letter-spacing: 2px;
    font-weight: 200;
    font-family: 'Raleway', sans-serif;
}

/* --- Formulario Estilos --- */
.styled-form ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.styled-form li {
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
}

.styled-form label {
    font-size: 0.8rem;
    color: var(--primary-yellow);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-weight: 700;
    font-family: 'Raleway', sans-serif; /* Etiquetas legibles */
}

.styled-form input,
.styled-form textarea {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3); 
    color: #fff;
    padding: 10px 0;
    font-size: 0.9rem; 
    font-family: 'Raleway', sans-serif;
    transition: all 0.3s ease;
    border-radius: 0; 
}

.styled-form input::placeholder,
.styled-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
    font-weight: 300;
    font-style: italic; /* Bodoni Italic queda muy bien en placeholders */
}

.styled-form input:focus,
.styled-form textarea:focus {
    outline: none;
    border-bottom-color: var(--primary-yellow); 
    background: rgba(255, 198, 91, 0.05); 
    padding-left: 10px; 
}

.styled-form textarea {
    min-height: 120px;
    resize: vertical; 
}

.form-footer {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.btn-submit {
    background: transparent;
    color: var(--primary-yellow);
    padding: 15px 40px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    font-family: 'Raleway', sans-serif;
    border:none;
}

.btn-submit:hover {
    background: var(--primary-yellow);
    color: #000;
    box-shadow: 0 0 20px rgba(255, 209, 123, 0.4);
    transform: translateY(-3px);
}

/* =========================================
   7. RESPONSIVE / MEDIA QUERIES
   ========================================= */

@media (max-width: 900px) {
    .titles-row {
        flex-direction: column;
        align-items: center; 
        margin-bottom: 80px;
        margin-top: 50px;
    }

    .main-title, .subtitle {
        text-align: center;
        margin-top: 20px;
        width: 100%;
    }

    .main-title { font-size: 2.5rem; }
    .subtitle { 
        font-size: 1rem; 
        line-height: 1.4;
        margin-top: 10px;
    }

    .button-group {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .btn-yellow {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .contact-card {
        padding: 25px;
    }
    .contact-title {
        font-size: 2.5rem;
    }

    .music-title {
        font-size: 2rem; 
        margin-bottom: 5px;
    }
    .music-subtitle {
        font-size: 0.8rem;
    }

    .track-row {
        padding: 15px 10px; 
        gap: 15px;
    }

    .play-btn-mini {
        width: 45px;
        height: 45px;
        min-width: 45px; 
    }

    .track-title {
        font-size: 1rem;
    }
    
    .track-genre {
        font-size: 0.65rem;
    }

    .time-control-wrapper {
        gap: 10px;
    }
    
    .time-text {
        font-size: 0.65rem; 
        min-width: 35px;
    }
    
    .seek-slider {
        height: 6px; 
    }
    
    .seek-slider::-webkit-slider-thumb {
        width: 14px; 
        height: 14px;
    }
}

/* =========================================
   PÁGINA SOBRE MÍ
   ========================================= */

.about-page-body {
    min-height: 100vh;
    background-color: #000;
    
    /* IMAGEN + GRADIENTE AGRESIVO 
       El negro sólido empieza al 40% del ancho para tapar la foto 
       y dejar leer el texto claramente. */
    background-image: 
        linear-gradient(to right, 
            rgba(0,0,0,0) 0%,     /* Transparente a la izquierda */
            rgba(0,0,0,0) 10%,    
            #000000 40%,          /* Negro sólido empieza pronto */
            #000000 100%),
        url('../assets/img/54898774013_3aa760d5e7_o.jpg');
        
    background-size: cover;
    background-position: center left; /* Fija la atención en la izquierda (la chica) */
    background-attachment: fixed;
    background-repeat: no-repeat;
    
    /* Restauramos Raleway Light para el cuerpo */
    font-family: 'Raleway', sans-serif;
    font-weight: 300; 
    color: #fff;
    padding-bottom: 50px;
    overflow-y: auto;
}

/* IMPORTANTE: Elimina cualquier ::before antiguo si lo tienes */
.about-page-body::before {
    display: none; 
}

.about-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    animation: fadeInUp 0.8s ease-out;
    display: flex;
    flex-direction: column;
}

/* --- SECCIÓN SUPERIOR: TEXTOS --- */
.top-text-section {
    width: 100%;
    display: flex;
    justify-content: flex-end; /* Empuja el contenido a la derecha */
    margin-top: 0px;
    margin-bottom: 60px;
}

.text-columns-wrapper {
    /* Ajuste de posición: Ancho 60% y margen derecho del 10% 
       para que empiece más centrado y no pegado al borde. */
    width: 60%; 
    margin-right: 10%; 
    
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 60px;
}

.text-col h3 {
    color: var(--primary-yellow);
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 1px solid rgba(255, 198, 91, 0.3);
    padding-bottom: 10px;
    display: inline-block;
    
    /* Restaurado: Inter Light */
    font-family: 'Inter', sans-serif; 
    font-weight: 600;
    font-style: italic;
}

.text-col p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(216, 216, 216, 0.85);
    margin-bottom: 20px;
    text-align: left; /* Alineado izquierda elegante */
    -webkit-hyphens: auto;
    hyphens: auto;
    text-wrap: pretty;
    
    /* Restaurado: Raleway Light */
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
}

/* --- SECCIÓN INFERIOR: CARRUSEL --- */
.bottom-carousel-section {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-bottom: 20px; /* Espacio para los puntos */
}

.carousel-container.full-width {
    position: relative;
    width: 100%;
    height: 50vh;
    background-color: transparent;
    overflow: hidden;
}

/* Estilo de cada diapositiva */
.slide {
    position: absolute; /* Clave para el cross-fade */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0; /* Oculto por defecto */
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s; /* Transición suave */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

/* Cuando la diapositiva está activa */
.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Un toque sutil: sombra para dar profundidad si la foto no llena todo */
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5)); 
}

/* Flechas de navegación */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 24px;
    transition: all 0.3s ease;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.2); /* Fondo sutil para mejorar contraste */
    z-index: 10;
    user-select: none;
    text-decoration: none; /* Asegurar que no parezca un link subrayado */
    font-family: 'Inter', sans-serif; /* Consistencia en flechas */
}

.next { right: 30px; }
.prev { left: 30px; }

.prev:hover, .next:hover {
    background-color: var(--primary-yellow);
    color: #000;
    box-shadow: 0 0 15px rgba(255, 198, 91, 0.4);
}

/* Puntos de navegación (Dots) */
.dots-container {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
    padding: 10px 20px;
    background: rgba(0,0,0,0.3); /* Fondo pastilla para legibilidad */
    border-radius: 30px;
    backdrop-filter: blur(4px);
}

.dot {
    cursor: pointer;
    height: 10px;
    width: 10px;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

.dot.active {
    background-color: var(--primary-yellow);
    transform: scale(1.2);
    box-shadow: 0 0 8px var(--primary-yellow);
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    .about-page-body {
        /* En móvil, oscurecemos más para leer el texto sobre la foto */
        background-position: center; 
        background-image: 
        linear-gradient(to bottom, rgba(0,0,0,0.6), #000),
        url('../assets/img/54898774013_3aa760d5e7_o.jpg');
    }

    .top-text-section {
        justify-content: center;
    }
    
    .text-columns-wrapper {
        width: 100%; 
        margin-right: 0;
        grid-template-columns: 1fr; 
    }

    .carousel-container.full-width {
        height: 50vh; 
    }
    
    /* Ajuste tamaño flechas móvil */
    .prev, .next {
        width: 40px; 
        height: 40px;
        font-size: 18px;
    }
}

/* =========================================
   TRADUCTOR GOOGLE - FUERZA BRUTA
   ========================================= */

/* 1. Ocultar la barra superior que desplaza el menú */
body {
    top: 0 !important;
    position: static !important;
}
.goog-te-banner-frame {
    display: none !important;
    visibility: hidden !important;
}

/* 2. Limpiar el contenedor del botón */
#google_translate_element {
    display: inline-block !important;
    vertical-align: middle;
    margin-left: 20px; /* Separación si está al lado de otros iconos */
}

/* Ocultar texto "Seleccionar idioma" y logo */
.goog-te-gadget {
    font-size: 0px !important;
    color: transparent !important;
    display: block !important;
}

.goog-te-gadget span {
    display: none !important;
}

.goog-te-gadget .goog-te-combo {
    margin: 0 !important; /* Quitar márgenes raros de Google */
}

/* 3. Estilo del BOTÓN (El desplegable) */
select.goog-te-combo {
    /* Reseteo agresivo para quitar estilo de Windows/Mac */
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;

    /* Tu diseño */
    background-color: rgba(0, 0, 0, 0.6) !important;
    border: 1px solid #ffc65b !important; /* Amarillo */
    color: #ffc65b !important;
    
    font-family: 'Inter', sans-serif !important;
    font-weight: 500 !important;
    text-transform: uppercase !important;
    font-size: 12px !important;
    letter-spacing: 1px !important;
    
    padding: 8px 15px !important;
    border-radius: 50px !important; /* Botón redondeado elegante */
    outline: none !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    
    /* Flecha personalizada (Triángulo amarillo) */
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='%23ffc65b'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 10px center !important;
    padding-right: 30px !important; /* Espacio para la flecha */
}

/* Hover */
select.goog-te-combo:hover {
    background-color: #ffc65b !important;
    color: #000 !important;
    /* Flecha cambia a negro en hover */
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='%23000000'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E") !important;
}

/* 4. Eliminar tooltips molestos */
.goog-tooltip, #goog-gt-tt {
    display: none !important;
    visibility: hidden !important;
}