

/* CINTILLO */
.cintillo {

    max-width: 1300px;
    height: 190px;
    margin: 40px auto;
    padding: 20px 40px;

    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 60px;
    color: white;
    background: url('../img/banner.png') center/cover no-repeat;
    overflow: hidden;
}

/* Overlay elegante */
.cintillo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.9), rgba(0,0,0,0.5));
}

/* CONTENIDO */
.cintillo-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

/* LOGO */
.logo {
    width: 140px;
    margin-bottom: 10px;
}

/* TEXTO */
.cintillo h2 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
}

.cintillo p {
    margin: 8px 0 0;
    font-size: 1rem;
    color: white;
}

/* BOTÓN */
.btn {
    position: relative;
    z-index: 2;
    background: #2f7f5f;
    color: white;
    padding: 10px 26px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.btn:hover {
    background: #3fa77a;
    transform: translateY(-2px);
}

/* ANIMACIÓN */
.cintillo-content {
    animation: fadeUp 1s ease;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .cintillo {
        flex-direction: column;
        height: auto;
        text-align: center;
        padding: 30px 20px;
        gap: 15px;
    }

    .logo {
        width: 120px;
    }

    .cintillo h2 {
        font-size: 1.4rem;
    }

    .cintillo p {
        font-size: 0.95rem;
    }
}