/* --- 1. RESETEOS Y FUENTES --- */
@font-face {
    font-family: "Satoshi";
    src: url("../fonts/Satoshi-Medium.otf") format("opentype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
body, html {
    height: 100%;
    margin: 0;
    font-family: 'Roboto', sans-serif; /* Texto normal */
    color: #fff;
    -webkit-font-smoothing: antialiased;
    height: 100%; /* Importante para que el % funcione */
    overflow: hidden; /* Evita scroll en toda la web */
}

/* Títulos elegantes como en el ejemplo */
h1, h2, h3, .section p{

    font-family: "Satoshi", sans-serif;
    font-weight: 400;
    letter-spacing: 1px;
    margin-top: 0;
}

.backgroundImage {
    
    background: url('../images/bg1.png') no-repeat center center fixed;
    background-size: cover;
    min-height: 100vh;
}

#logo{
    position: absolute;
    width: 30%;
    left: 35%;
    top: 5%;
}

/* --- 3. CONTENEDOR  --- */
.contenedor {
    position: relative;
    overflow: hidden;
    height: 70vh;
    padding-top: 30vh;
    width: 100vw; 
    text-align: center;

}

.logo {
    width: 100%;
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 60px;
}

h2 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.section p {
    font-size: 1rem;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto 40px auto;
    opacity: 0.8;
}

/* --- 5. FORMULARIO Y BOTONES--- */
.form-control::placeholder{
    color: #fff;
}
.form-control {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 4px;
    color: #fff;
    padding: 15px;
}

.form-control:focus {
    border-color: #fff;
    background: rgba(255,255,255,0.05);
}

.input-group-btn .btn-default,
.btn-transparent {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.6);
    color: white;
    border-radius: 4px;
    padding: 24px 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.8rem;
    transition: all 0.3s;
}

.input-group-btn .btn-default:hover,
.btn-transparent:hover {
    background: #fff;
    color: #000;
}



/* --- ESTILO DE CONTACTO (FOOTER) --- */
#contact {
    margin-top: 50px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1); /* Línea sutil superior */
    width: 100%;
    position: absolute;
    bottom:5vh;    
    left: 0;
    top: 80%;
    height: 20vh;
}

#contact a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    margin: 0 15px;
    font-size: 0.9rem;
    font-weight: 300;
    transition: color 0.3s;
}

#contact a:hover {
    color: #fff;
}

#contact i {
    margin-right: 8px;
    color: rgba(255, 255, 255, 0.6);
}

/* Redes sociales estilo minimalista */
#redes{
    position: absolute;
    top: 95%;
    width: 100%;
}
.section.clearfix .btn-transparent {
    font-size: 1.2rem;
    border: none;
    opacity: 0.5;
    margin: 0 10px;
}

.section.clearfix .btn-transparent:hover {
    opacity: 1;
    background: transparent;
    transform: translateY(-3px);
}
@media (max-width:800px){
    .logo{
        font-size: 1.5rem;
    }
    h2{
        font-size: 1.2rem;
        width: 60%;
        margin-left: 20%;
    }
}