
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary-color: #007A7A; 
    --text-dark: #222;
    --text-light: #777;
    --bg-light: #F9F9F9;
}

body {
    background-color: var(--bg-light);
}



/* --- HERO SECTION --- */
.hero-section {
    position: relative;
    height: 93vh;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4)), url('https://images.unsplash.com/photo-1542718610-a1d656d1884c?auto=format&fit=crop&w=1920&q=80') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-content {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content h1 {
    color: #fff;
    font-size: 3.5rem;
    font-family: Georgia, 'Times New Roman', Times, serif;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* --- SEARCH BAR (LA PILLOLA) --- */
.search-bar-wrapper {
    background-color: #fff;
    border-radius: 50px;
    padding: 0.5rem 0.5rem 0.5rem 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    max-width: 900px;
    width: 90%;
}

.search-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.search-block {
    display: flex;
    flex-direction: column;
    text-align: left;
    flex: 1;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    transition: background-color 0.2s;
    min-width: 0;
}

.search-block:hover {
    background-color: #f1f1f1;
}

.search-block label {
    font-size: 0.8rem;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 0.2rem;
    cursor: pointer;
}

.search-block input {
    border: none;
    outline: none;
    font-size: 0.95rem;
    color: var(--text-light);
    background: transparent;
    cursor: text;
    width: 100%; 
    min-width: 0;
}

.divider {
    width: 1px;
    height: 40px;
    background-color: #e0e0e0;
}

.search-submit-btn {
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 1rem;
    transition: background-color 0.3s;
    flex-shrink: 0; 
}

.search-submit-btn:hover {
    background-color: #005c5c;
}