* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
  font-family: 'Hallo';
  src: url('../fonts/Hallo-sans.otf');
}

@font-face {
  font-family: 'Rubik';
  src: url('../fonts/Rubik-VariableFont_wght.ttf');
}

body, html {
    height: 100%;
    font-family: 'Hallo', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

/* Fondo principal */
.hero-section {
    position: relative;
    height: 100vh;
    width: 100%;
    background-image: url('../img/V0_Portada_Visita Virtual _DEFINITIVA.jpg'); /* Asegúrate de que el nombre coincida */
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

/* Oscurecimiento para legibilidad */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.content {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 800px;
}

/* Título */
.title {
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 2rem;
}

/* Icono central */
.main-icon {
    margin: 25px auto;
}

/* Botón CTA */
.cta-button {
    display: inline-block;
    background-color: #a8733b; /* Tono marrón/ocre de la imagen */
    color: white;
    padding: 15px 60px;
    text-decoration: none;
    font-size: 1.5rem;
    border-radius: 2px;
    transition: background 0.3s ease;
    font-family: 'Rubik', Tahoma, Geneva, Verdana, sans-serif;
}

.cta-button:hover {
    background-color: #8c5e2f;
}

/* Footer con logos */
.footer-logos {
    position: absolute;
    bottom: 0;
    width: 100%;
    /*background: rgba(255, 255, 255, 0.9); /* Fondo blanco semitransparente como en la imagen */
    padding: 25px 5%;
    z-index: 2;
}

.logo-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.logo-container img {
    height: 35px;
    max-width: 180px;
    object-fit: contain;
    filter: grayscale(100%); /* Muchos logos oficiales son negros/grises en estas bandas */
}

/* Responsividad */
@media (max-width: 768px) {
    .title {
        font-size: 3rem;
    }
    
    .main-icon {
        /*width: 80px;*/
    }

    .cta-button {
        width: 80%;
        padding: 12px 20px;
    }

    .logo-container {
        justify-content: center;
    }

    .footer-logos {
        padding: 10px;
    }
}