body { 
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    padding: 0;
    background: #fff;
    color: #333;
}
a:visited {
  text-decoration: none;
  color: #FFFFFF;
}
a,
a:hover,
a:focus,
a:active {
  text-decoration: none;
  color: inherit; /* hereda el color del contenedor */
}
.contact-link,
.contact-link:visited {
  text-decoration: none;
  color: inherit;
}
.banner-container {
    position: relative;
    width: 100%;
    height: 500px; /* Altura del banner */
    overflow: hidden;
}

#background-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff; /* Texto blanco para contraste */
    text-align: center;
    z-index: 1; /* Aseguramos que el texto esté encima del video */
}

.overlay h1 {
    font-size: 24px;
    line-height: 1.2;
    text-decoration: underline red; /* Subrayado rojo */
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.8); /* Contorno sutil */
}

.overlay h2 {
    font-size: 64px; /* Tamaño grande */
    margin: 10px 0;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.8); /* Contorno más visible */
}

.overlay h3 {
    font-size: 20px; /* Tamaño adecuado para <h3> */
    margin: 10px 0;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.8); /* Contorno sutil */
}

.overlay p {
    font-size: 18px;
    margin: 20px 0;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.8); /* Contorno sutil */
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.phone-icon {
    width: 20px;
    height: 20px;
}

.contact-info h3,
.contact-info a {
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.8); /* Contorno sutil para números y correo electrónico */
}

@media (max-width: 768px) {
    .overlay h1 {
        font-size: 20px;
    }
    .overlay h2 {
        font-size: 48px; /* Ajuste para pantallas pequeñas */
    }
    .overlay h3 {
        font-size: 18px; /* Ajuste para pantallas pequeñas */
    }
    .overlay p {
        font-size: 16px;
    }
}
img.full-width {
    width: 100%;
    height: auto;
    display: block;
}

/* Contenedor del video reducido y centrado */
.video-container {
    max-width: 500px;
    margin: 30px auto;
    padding: 12px;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

section {
    padding: 0;
    margin: 0;
}

footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 20px;
    font-size: 0.9em;
    line-height: 1.5;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
}

@media (orientation: landscape) {
    footer {
        font-size: 1em;
    }
}