/* 1. Importar Montserrat desde Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth; /* Desplazamiento suave al hacer clic en enlaces */
}
body {
   font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(
        45deg, 
        #0e1938 0%, 
        #6b41bf 50%, 
        #7493ff 70%, 
        #fff1f1 100%
    );
    
    background-attachment: fixed;
    background-size: cover;
    min-height: 100vh;
}
header {
    background: transparent;     
    position: absolute; 
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.5rem 3%;
    box-shadow: none;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden; 
    transform: translateY(-20px);
    transition: all 0.4s ease-in-out;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}
nav a {
    text-decoration: none;
    color: var(--texto);
    font-weight: 500;
    transition: color 0.3s;
}
nav a:hover {
    color: var(--color-acento);
}
h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
}
p {
    font-family:'Trebuchet MS', sans-serif;
    font-size: 1rem; 
    color: #ffffff; 
}
main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem;
}
.hero {
    text-align: center;
    padding: 6rem 1rem;
    
}
.hero h1 {
    font-size: 5rem;
    margin-bottom: 20px;
    text-align: left;
    text-shadow: -5px -5px 8px #000000;
    font-weight: 300;
}
.hero p {
    font-size: 1.5rem;
    text-align: left;
}
footer {
    background: transparent;
    text-align: center;
    color: white;
}
