/* --- ESTILOS GLOBALES --- */
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    font-family: 'Roboto', sans-serif;
    background-color: #F8F9FA;
    color: #333333;
    overflow-x: hidden;
}

/* Se elimina el padding-top del body para que el fondo del hero ocupe todo el espacio */
body {
    /* padding-top: 70px;  <-- ELIMINADO */
}

/* --- HEADER --- */
.main-header {
    /* Fondo más transparente con desenfoque */
    background-color: rgba(255, 255, 255, 0.15); /* Aún menos opacidad */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); /* Para compatibilidad con Safari */

    padding: 0 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Borde más sutil */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-sizing: border-box;
    height: 70px; /* Altura fija para consistencia */
}

.header-container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
}

.header-logo img {
    height: 35px;
    vertical-align: middle;
}

.header-right {
    margin-left: auto; /* Empuja los elementos a la derecha */
    display: flex;
    align-items: center;
}

.header-nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
}

.header-nav-links a {
    text-decoration: none;
    /* Texto blanco para que contraste con la imagen de fondo */
    color: #FFFFFF;
    font-weight: 500;
    transition: color 0.3s ease;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.header-nav-links a:hover {
    color: #E84824; /* El color naranja de PwC resalta bien */
}

/* Se añade margen a la izquierda del botón para evitar solapamiento */
.header-cta {
    margin-left: 30px;
}

.cta-button-header {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 10px 25px;
    border-radius: 5px;
    background-color: #D04A02;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-button-header:hover {
    background-color: #AD1B02;
}

/* --- SECCIÓN PRINCIPAL (HERO) --- */
#landing-page {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    /* La altura ahora es del 100% del viewport */
    min-height: 100vh;
    /* Se añade padding-top para compensar el header y que el contenido no quede oculto */
    padding: 70px 20px 20px 20px;
    box-sizing: border-box;
    color: #ffffff;
    background: url('https://images.unsplash.com/photo-1534796636912-3b95b3ab5986?q=80&w=2071&auto=format&fit=crop') no-repeat center center;
    background-size: cover;
}


#landing-page h1 {
    font-family: 'Lora', serif;
    font-size: 5rem;
    font-weight: 600;
    margin-bottom: 0.2em;
    text-shadow: 0px 4px 10px rgba(0, 0, 0, 1);
}

#landing-page p {
    font-size: 1.2rem;
    margin-bottom: 2em;
    font-weight: 400;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0px 4px 10px rgba(0, 0, 0, 1);
}

#load-unity-btn {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 15px 35px;
    border: none;
    border-radius: 50px;
    background-color: #D04A02;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

#load-unity-btn:hover {
    background-color: #AD1B02;
    transform: translateY(-3px);
}

/* --- SECCIONES DE INFORMACIÓN --- */
.info-section {
    padding: 80px 20px;
}

.info-section:nth-child(odd) {
     background-color: #FFFFFF;
}

.container {
    max-width: 1100px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
}

.text-column {
    flex: 1;
}

.text-column h2 {
    font-family: 'Lora', serif;
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1e1e1e;
}

.text-column p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555555;
}

.image-column {
    flex: 1;
    text-align: center;
}

.image-column img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* --- ESTILOS DE LA SECCIÓN CALL TO ACTION (CTA) --- */
#cta {
    background-color: #4A4A4A;
    color: #FFFFFF;
    text-align: center;
    padding: 60px 20px;
}

#cta h2 {
    font-family: 'Lora', serif;
    font-weight: 600;
    font-size: 2.5rem;
    text-transform: uppercase;
    margin: 0 0 30px 0;
}

.cta-button {
    display: inline-block;
    background-color: #E84824;
    color: #FFFFFF;
    padding: 15px 40px;
    border-radius: 5px;
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    font-size: 1.1rem;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #C73C1C;
}

.powered-by {
    margin-top: 30px;
    font-size: 0.9rem;
    color: #C0C0C0;
}

/* --- ESTILOS DEL FOOTER --- */
#page-footer {
    background-color: #FFFFFF;
    padding: 40px 20px;
    text-align: center;
}

.footer-logo {
    margin-bottom: 25px;
}

.footer-logo img {
    max-width: 120px;
    height: auto;
}

.footer-legal {
    font-size: 0.8rem;
    color: #666666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.footer-legal a {
    color: #D04A02;
    text-decoration: underline;
}

.footer-legal a:hover {
    text-decoration: none;
}


/* --- AJUSTES PARA MÓVILES --- */
@media (max-width: 768px) {
    .header-right {
        gap: 15px;
    }
    .header-nav-links {
        display: none;
    }
    .main-header {
        padding: 15px 20px;
    }

    #landing-page h1 {
        font-size: 3rem;
    }
    .container {
        flex-direction: column !important;
        gap: 30px;
    }
    .image-column {
        order: -1;
        margin-bottom: 20px;
    }
    .text-column {
        text-align: center;
    }
    .text-column h2 {
        font-size: 2.2rem;
    }
     #cta h2 {
        font-size: 1.8rem;
    }
}
