body {
    font-family: Arial, sans-serif;
    background-color: #fffaf3;
}

/* NAVBAR */
.custom-navbar {
    /*background: linear-gradient(90deg, #ed8b00, #ffca80);*/
    background: #ed8b00;
}

/* CARRUSEL */
.carousel-image {
    width: 100%;
    height: 700px;
    object-fit: cover;
    object-position: center 35%;
}

/* .carousel-image {
    height: 100vh;
    object-fit: cover;
    filter: brightness(0.7);
} */

.carousel-caption {
    bottom: 30%;
}

.carousel-caption h1 {
    font-size: 4rem;
    font-weight: bold;
}

.carousel-caption p {
    font-size: 1.5rem;
}

/* SECCIONES */
.section-light {
    background-color: #ffca80;
}

.section-title {
    color: #ed8b00;
    font-weight: bold;
    font-size: 2.5rem;
}

/* CARDS */
.custom-card {
    border: none;
    border-radius: 20px;
    overflow: hidden;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.custom-card:hover {
    transform: translateY(-5px);
}

.cat-card-img {
    height: 300px;
    object-fit: cover;
}

/* HELP BOX */
.help-box {
    background-color: white;
    padding: 30px;
    border-radius: 20px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

/* FORM */
.contact-form .form-control {
    border-radius: 12px;
    padding: 15px;
    border: 1px solid #ffd54f;
}

/* FOOTER */
.footer-custom {
    background: linear-gradient(90deg, #ed8b00, #ffca80);
    color: white;
}

.social-link {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.social-link:hover {
    color: #ffca80;
}