/* Configuración General */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #f8f9fa;
    color: #2c3e50;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.container {
    max-width: 800px;
    width: 100%;
    text-align: center;
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Logo */
.header .logo {
    max-width: 300px;
    height: auto;
    margin-bottom: 30px;
}

/* Tipografía */
.title {
    font-size: 2.1rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a252f; /* Gris oscuro del logo */
}

.title span {
    color: #f39c12; /* El naranja de tu logo */
}

.subtitle {
    font-size: 1.1rem;
    color: #7f8c8d;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Caja de Contacto */
.contact-box {
    background-color: #fdf2e9; /* Naranja muy suave de fondo */
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    border: 1px solid #fae5d3;
}

.email-link {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #d35400; /* Naranja fuerte */
    text-decoration: none;
    margin-top: 5px;
}

/* Botón Moderno */
.btn {
    display: inline-block;
    background-color: #2c3e50; /* Gris azulado del logo */
    color: #ffffff;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn:hover {
    background-color: #f39c12; /* Cambia a naranja al pasar el mouse */
    transform: translateY(-3px);
}

/* Footer */
.footer {
    margin-top: 50px;
    font-size: 0.85rem;
    color: #bdc3c7;
}

/* Responsive (Móviles) */
@media (max-width: 600px) {
    .title {
        font-size: 1.8rem;
    }
    .container {
        padding: 20px;
    }
    .email-link {
        font-size: 1.1rem;
    }
}