:root {
    --primary-color: #f39c12; 
    --secondary-color: #e67e22;
    --text-light: #ffffff;
    --overlay-dark: rgba(0, 0, 0, 0.75);
    --glass-bg: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    min-height: 100%;
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}

/* Hero Section */
.hero-section {
    /* AQUÍ SE CARGA TU IMAGEN DE FONDO */
    background-image: url('background.png'); 
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--text-light);
    padding: 40px 20px;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-dark);
    z-index: 1;
}

.content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 900px;
    width: 100%;
    animation: slideUp 1s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* --- ESTILOS DEL LOGO --- */
.logo {
    max-width: 300px; /* Ajusta este tamaño según tu logo */
    height: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.3));
}

h1 {
    font-size: 3.5rem;
    font-weight: 900;
    letter-spacing: 6px;
    margin-bottom: 10px;
    text-transform: uppercase;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

h2 {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 25px;
    text-transform: uppercase;
    border-bottom: 3px solid var(--primary-color);
    display: inline-block;
    padding-bottom: 10px;
}

p.description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.5;
    max-width: 700px;
}

/* Lista de categorías */
.categories-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.category-pill {
    background: var(--glass-bg);
    border: 1px solid var(--primary-color);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--text-light);
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}

.category-pill:hover {
    background: var(--primary-color);
    transform: scale(1.05);
    cursor: default;
}

/* --- ESTILOS DEL FORMULARIO --- */
.contact-form {
    background: rgba(0, 0, 0, 0.6); 
    padding: 30px;
    border-radius: 15px;
    width: 100%;
    max-width: 500px;
    backdrop-filter: blur(10px); 
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.form-group {
    margin-bottom: 15px;
    text-align: left;
}

.form-label {
    display: block;
    margin-bottom: 5px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ddd;
}

.form-input, .form-textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #fff;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.15);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

.submit-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.3);
}

footer {
    margin-top: 40px;
    font-size: 0.8rem;
    opacity: 0.7;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    .contact-form { padding: 20px; }
    .logo { max-width: 150px; }
}