/* Variables de colores */
:root {
    --primary: #17e5d9;
    --secondary: #0d0a65;
    --light: #f8f9fa;
    --dark: #343a40;
}

/* Estilos generales */
body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    padding-top: 76px; /* Para compensar la navbar fija */
}

/* Navbar */
.navbar-scrolled {
    background-color: #fff !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar .nav-link {
    font-weight: 600;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.navbar .nav-link:hover {
    color: var(--primary);
}

/* Hero section */
.hero-section .carousel-item {
    height: 80vh;
    min-height: 400px;
}

.hero-section .carousel-caption {
    bottom: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Cards */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

/* Contact buttons flotantes */
.contact-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 99;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.contact-button:hover {
    transform: scale(1.1);
}

.contact-button.whatsapp {
    background-color: #25D366;
}

.contact-button.facebook {
    background-color: #3b5998;
}

.contact-button .tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #333;
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.contact-button:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 99;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
    border: none;
    color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    body {
        padding-top: 70px;
    }
    
    .hero-section .carousel-item {
        height: 60vh;
    }
    
    .hero-section .display-4 {
        font-size: 2rem;
    }
    
    .contact-buttons {
        bottom: 20px;
        right: 20px;
    }
    
    .contact-button {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .back-to-top {
        bottom: 20px;
        left: 20px;
        width: 40px;
        height: 40px;
    }
}
/* Estilos para las secciones específicas */
.card {
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15) !important;
}

.rounded-circle {
    object-fit: cover;
}

/* Responsividad para imágenes */
@media (max-width: 768px) {
    .rounded-circle {
        width: 140px !important;
        height: 140px !important;
    }
}



/* Oculta completamente el widget de Google */
#google_translate_element, .goog-te-banner-frame, .goog-te-gadget-icon {
  display: none !important;
}

/* Estilos para el selector oculto */
.goog-te-combo {
  opacity: 0;
  position: absolute;
  width: 1px;
  height: 1px;
}

/* Ocultar TODOS los elementos de Google Translate */
.goog-te-banner-frame, 
.goog-te-gadget-icon, 
.goog-te-combo, 
.goog-te-footer, 
.skiptranslate {
  display: none !important;
}
.goog-tooltip, 
.goog-tooltip:hover, 
.goog-text-highlight {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
}
body {
  top: 0 !important;
}
/* Estilo para botón activo */
.language-btn.active {
  box-shadow: 0 0 0 2px rgba(0, 0, 255, 0.3);
  font-weight: bold;
}

/* Estilo para botón activo ultimo*/

    .language-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lang-btn {
    border: none;
    background: transparent;
    padding: 0;
    cursor: pointer;
    transition: transform 0.25s ease, filter 0.25s ease;
}

.lang-btn img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

/* Efecto hover */
.lang-btn:hover {
    transform: scale(1.3);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));
}

/* Idioma activo */
.lang-btn.active {
    transform: scale(1.3);
    filter: drop-shadow(0 0 6px rgba(0,123,255,0.8));
}

/* Nuevo animacion */
.contact-info .col-md-4 {
    animation: fadeUp 0.8s ease forwards;
    opacity: 0;
}

.contact-info .col-md-4:nth-child(1) { animation-delay: 0.1s; }
.contact-info .col-md-4:nth-child(2) { animation-delay: 0.3s; }
.contact-info .col-md-4:nth-child(3) { animation-delay: 0.5s; }

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-info a .rounded-circle {
    transition: all 0.3s ease;
}

.contact-info a:hover .rounded-circle {
    transform: translateY(-6px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}


/* Fondo de la sección */
.conoscici-section {
    background-color: #EBEBFA;
}

/* Imagen con sombra elegante */
.conoscici-section img {
    box-shadow: 0 15px 35px rgba(8, 2, 76, 0.25);
    transition: transform 0.6s ease, box-shadow 0.6s ease;
    animation: floatImage 4s ease-in-out infinite;
}

/* Hover (opcional pero recomendado) */
.conoscici-section img:hover {
    transform: scale(1.03);
    box-shadow: 0 25px 45px rgba(8, 2, 76, 0.35);
}

/* Animación de movimiento suave */
@keyframes floatImage {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
    100% {
        transform: translateY(0);
    }
}
.shadow-blue {
  color: #ffffff;
  text-shadow:
    1px 1px 2px rgba(0, 0, 0, 0.5),
    3px 3px 8px rgba(10, 40, 90, 1);
}


