* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --white: #FFFFFF;
    --yellow: #FFBE33;
    --brown: #A75139;
    --dark: #222831;
}

html {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

html::-webkit-scrollbar {
    display: none;
}

body {
    overflow-y: auto;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #111720, #000000);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    padding: 20px 20px 40px;
}

.container {
    max-width: 480px;
    text-align: center;
}

/* --- Logo --- */

.logo {
    max-width: 300px;
    width: 100%;
    height: auto;
    margin-bottom: 40px;
    transition: filter 0.3s ease;
    filter: drop-shadow(3px 3px 0 rgba(132, 101, 34, 0.5));
}

.logo:hover {
    filter: 
        drop-shadow(3px 3px 0 #000)
        drop-shadow(0 0 30px rgba(132, 101, 34, 0.9));
}

/* --- Título --- */

h1 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    font-family: "Poppins", sans-serif;
    font-size: clamp(2rem, 2.5vw + 1.5rem, 3.5rem);
    line-height: 1;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--white);
    gap: 10px;
    white-space: pre-wrap;
}

h1 span {
    display: inline-block;
    white-space: nowrap;
}

/* --- Notificación --- */

.notification {
    background: rgba(34, 40, 49, 0.8);
    border: 1px solid #333;
    padding: 30px;
    border-radius: 12px;
    margin: 80px 20px;
    text-align: left;
}

.notification h3 {
    color: var(--yellow);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.notification p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* --- Formulario --- */

.contact-form {
    opacity: 1;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input:focus {
    outline: none;
    border-color: #846522 !important;
    box-shadow: 0 0 6px 0 #846522 !important;
}

.form-group input {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid #333;
    border-radius: 10px;
    color: var(--white);
    font-size: 1rem;
}

.btn {
    background: var(--yellow);
    color: var(--white);
    border: none;
    padding: 16px 40px;
    font-size: 1.1rem;
    border-radius: 10px;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s;
}

.btn:hover {
    background: #846522;
}

/* --- Redes sociales --- */

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
}

.social-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(34, 40, 49, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brown);
    font-size: 1.2rem;
    border: 1px solid rgba(167, 81, 57, 0.2);
    text-decoration: none;
}

/* --- Footer --- */

.footer {
    margin-top: 40px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    border-top: 1px solid rgba(167, 81, 57, 0.1);
    padding-top: 20px;
}