/* === Global === */
.alfarella-page {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #2b2b2b;
    line-height: 1.6;
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: hidden;
}

/* === Hero Section === */
.alfarella-hero {
    position: relative;
    background: url('https://via.placeholder.com/1600x700') center/cover no-repeat;
    color: white;
    text-align: center;
    padding: 100px 20px;
}

.alfarella-hero::after {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.45);
}

.alfarella-hero-content {
    position: relative;
    z-index: 1;
}

.alfarella-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.alfarella-hero p {
    font-size: 1.25rem;
    margin-bottom: 30px;
}

.alfarella-hero button {
    padding: 15px 40px;
    font-size: 1.1rem;
    background: #ff6600;
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.alfarella-hero button:hover {
    background: #e65500;
}

/* === Features Grid === */
.alfarella-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    padding: 60px 20px;
}

.alfarella-feature {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.alfarella-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.alfarella-feature img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.alfarella-feature h3 {
    margin: 15px;
    font-size: 1.3rem;
    font-weight: 600;
}

/* === Lifestyle Section === */
.alfarella-section {
    padding: 60px 20px;
    text-align: center;
}

.alfarella-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.alfarella-section p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* === Distances === */
.alfarella-distances {
    background: #f9f9f9;
    padding: 40px 20px;
    border-radius: 10px;
    display: inline-block;
}

.alfarella-distances ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 1.05rem;
}

.alfarella-distances li {
    padding: 8px 0;
    border-bottom: 1px solid #ddd;
}

.alfarella-distances li:last-child {
    border-bottom: none;
}

/* === Contact Form === */
.alfarella-contact {
    background: linear-gradient(to right, #0077cc, #004c99);
    padding: 60px 20px;
    color: white;
}

.alfarella-contact form {
    max-width: 500px;
    margin: 0 auto;
    display: grid;
    gap: 15px;
}

.alfarella-contact input,
.alfarella-contact textarea {
    padding: 12px;
    font-size: 1rem;
    border: none;
    border-radius: 6px;
}

.alfarella-contact textarea {
    min-height: 120px;
}

.alfarella-contact button {
    padding: 15px;
    font-size: 1.1rem;
    background: #ff6600;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.alfarella-contact button:hover {
    background: #e65500;
}

/* === Responsive === */
@media (max-width: 768px) {
    .alfarella-hero h1 {
        font-size: 2rem;
    }
    .alfarella-hero p {
        font-size: 1rem;
    }
}
