h1 span, h2 span, h3 span {
    font-family: 'Playfair Display', serif;
}

.btn {
    padding: 15px 35px;
    background: var(--primary);
    color: var(--light);
    border: none;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    transition: transform .2s, background .3s;
    text-decoration: none;
}

.btn:hover {
    background: #a51f1f;
    transform: scale(1.05);
    
}

/* SECTIONS */
section {
    padding: 60px 90px;
    background: var(--gray);
}

section h3 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary);
}

section h3 span {
    color: #fff;
}

.menu {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.card {
    background: var(--gray-soft);
    border-top: 4px solid var(--primary);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,.6);
    transition: transform .3s;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.card:hover {
    transform: translateY(-8px);
}

.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.card div {
    padding: 20px;
}

.card h4 {
    color: #fff;
    margin-bottom: 10px;
}

.card span {
    color: var(--primary);
    font-weight: 600;
}

/* ABOUT */
.about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about img {
    width: 100%;
    border-radius: 20px;
}

.about p,
section p {
    color: #d0d0d0;
    line-height: 1.7;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    section {
        padding: 60px 30px;
    }

    .about {
        grid-template-columns: 1fr;
    }

}

.about {
    grid-template-columns: 1fr;
}

.cta {
    background:
        linear-gradient(rgba(0,0,0,.85), rgba(0,0,0,.85)),
        var(--cta-bg);
    background-size: cover;
    background-position: center;
    color: var(--light);
    text-align: center;
    padding: 100px 20px;
}

.cta h3 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #fff;
}

.cta p {
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 18px;
    color: #ddd;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--light);
    text-decoration: underline;
}

.btn-outline:hover {
    background: var(--light);
    color: var(--dark);
}
.contact-info {
    text-align: center;
    line-height: 2;
    font-size: 18px;
}

.contacto {
    padding-bottom: 120px;
}
