@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    background-color: #1a1a1a;
    color: white;
    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-direction: column;
}

/* HEADER */
header {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Contenedor del header para que tenga el mismo ancho que el main */
.header-container {
    max-width: 1200px;
    width: 60%;
    margin: 0 auto;
}

.header-container img {
    width: 100%;
    height: auto;
    display: block;
}

/* CONTENEDOR PRINCIPAL */
.contenedor {
    max-width: 1200px;
    width: 60%;
    margin: 30px auto;
    background-color: #2a2a2a;
    padding: 30px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    border-radius: 10px;
}

/* TITULOS CENTRADOS */
h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
    color: white;
    text-align: center;
    margin-bottom: 15px;
    margin-top: 10px;
    font-size: 2em;
}

/* PÁRRAFOS JUSTIFICADOS */
p {
    font-size: 1.1em;
    line-height: 1.6;
    text-align: center;
    hyphens: auto;
    margin-bottom: 15px;
}

/* IMÁGENES DEL MAIN REDONDEADAS */
main img {
    width: 100%;
    max-width: 600px;
    display: block;
    margin: 10px auto;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    border: 4px solid black !important;
}


/* FOOTER */
footer {
    max-width: 1200px;
    width: 60%;
    background-color: #111;
    color: white;
    text-align: center;
    padding: 10px 0;
    font-size: 0.9em;
    margin: 30px auto 0; /* Centra el footer */
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* RESPONSIVE PARA MÓVILES */
@media (max-width: 1024px) {
    .contenedor, .header-container, footer {
        width: 95%;
    }
}

/* ICONOS FLOTANTES */
.floating-icons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.floating-icons a {
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.floating-icons a:hover {
    transform: scale(1.1);
}

.floating-icons a.phone {
    background-color: #34B7F1;
}

.floating-icons img {
    width: 35px;
    height: 35px;
}

.video-wrapper {
  width: 100%;
  max-width: 700px;     /* tamaño máximo del video */
  margin: 0 auto;       /* centrado */
  position: relative;
  padding-bottom: 56.25%; /* relación 16:9 */
  height: 0;
  overflow: hidden;
  border-radius: 12px;   /* opcional */
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
