/* === HERO SECTION === */
.hero-section {
    position: relative;
    min-height: 85vh;
    background-image: url("../img/business.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    text-align: center;
    color: white;
}

.slogan {
    margin-top: 10px;
    font-size: 1.25rem;
    font-style: italic;
    opacity: 0.9;
}

/* Capa oscura */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(15, 25, 55, 0.9),
            rgba(15, 25, 55, 0.75));
}

/* Contenido */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    padding: 80px 0;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 60px;
    opacity: 0.95;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Botones */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.btn-primary,
.btn-secondary,
.btn-outline {
    padding: 18px 40px;
}

.btn-primary {
    background: #f44040;
    padding: 16px 35px;
    border-radius: 50px;
    border: none;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    font-size: 1.10rem;
}

.btn-primary:hover {
    background: #d93333;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    padding: 16px 35px;
    border-radius: 50px;
    border: none;
    color: white;
    cursor: pointer;
    transition: 0.3s;
    font-size: 1.10rem;

}

.btn-secondary:hover {
    background: #25d366;
}

.btn-outline {
    border: 2px solid white;
    padding: 16px 35px;
    border-radius: 50px;
    background: transparent;
    color: white;
    cursor: pointer;
    transition: 0.3s;
    font-size: 1.10rem;
}

.btn-outline:hover {
    background: white;
    color: #2c3e50;
}

.btn-whatsapp {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-whatsapp:hover {
    background-color: #25d366;
    border-color: #25d366;
    color: white;
}



/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

}