body {
    padding: 0;
    margin: 0;
    font-family: 'Manrope', sans-serif;
    background-color: #f4f4f4;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Raleway', sans-serif;
}

p,
li,
body {
    font-family: 'Roboto', sans-serif;
}

nav {
    background-color: #d63e18;
    padding: 30px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1000;
}

.nav-list {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    font-family: "Manrope", sans-serif;
}

.nav-list li {
    margin: 0 15px;
}

.nav-list li a {
    text-decoration: none;
    color: #FFFFFF;
    font-weight: bold;
    padding: 5px 10px;
    transition: background-color 0.3s;
}

.nav-list li a:hover {
    background-color: #800020;
    border-radius: 5px;
}

nav img {
    height: 60px;
    width: auto;
    border-radius: 10px;
}

.menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    color: #FFFFFF;
    font-size: 35px;
    cursor: pointer;
}

/* REDES SOCIALES Y BOTON DE WHATSAPP */
.social {
    position: fixed;
    left: 0;
    top: 200px;
    z-index: 2000;
}

.social ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.social ul li a {
    display: inline-block;
    color: #fff;
    background: #000;
    padding: 10px 15px;
    text-decoration: none;
    transition: all 500ms ease;
}

.social ul li .bg-facebook {
    background: #3b5998;
}

.social ul li .bg-twitter {
    background: #00abf0;
}

.social ul li .bg-whatsapp {
    background: #25D366;
}

.social ul li .bg-instagram {
    background: #d95232;
}

.social ul li a:hover {
    padding: 10px 30px;
}

.social ul li a i {
    font-size: 24px;
    vertical-align: middle;
}

/* SLIDER Y CONTENIDO */
.slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.slider-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-item {
    min-width: 100%;
}

.carousel-item img {
    width: 100%;
    height: 800px;
    display: block;
    object-fit: cover;
}

.slider-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px;
    cursor: pointer;
    border-radius: 25%;
    user-select: none;
    font-size: 24px;
}

.slider-control.left {
    left: 10px;
}

.slider-control.right {
    right: 10px;
}

.slider-control:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.about-container {
    border-radius: 10px;
    padding: 60px 0;
    background-color: #f8f9fa;
}

.about-us {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
    align-items: center;
    gap: 30px;
}

.about-text {
    flex: 1.2;
}

.about-text h1,
.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333333;
    position: relative;
    padding-bottom: 20px;
}

.about-text h1::after,
.about-text h2::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2.5px;
    background: linear-gradient(to right, rgba(128, 0, 32, 0) 0%, #F0911B 50%, rgba(128, 0, 32, 0) 100%);
    border-radius: 3px;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 20px;
}

.about-img {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    overflow: hidden;
}

.about-img img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.button {
    cursor: pointer;
    position: relative;
    padding: 10px 24px;
    font-size: 18px;
    color: #F0911B;
    border: 2px solid #F0911B;
    border-radius: 34px;
    background-color: transparent;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
    overflow: hidden;
}

.button a {
    text-decoration: none;
    color: inherit;
}

.button::before {
    content: '';
    position: absolute;
    inset: 0;
    margin: auto;
    width: 60px;
    height: 50px;
    border-radius: inherit;
    scale: 0;
    z-index: -1;
    background-color: #F0911B;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.320, 1);
}

.button:hover::before {
    scale: 3;
}

.button:hover {
    color: #FFFFFF;
    scale: 1.1;
    box-shadow: 0 0px 20px rgba(193, 163, 98, 0.4);
}

.button:active {
    scale: 1;
}

.cards-container {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}

.card-title {
    text-align: center;
    margin-bottom: 30px;
    font-family: 'Raleway', sans-serif;
}

.cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.cards img {
    width: 100%;
    height: 400px;
    margin-bottom: 15px;
    border-radius: 10px;
    object-fit: cover;
}

.card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    width: 300px;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* FOOTER */
.site-footer {
    background-color: #ffffff;
    padding: 60px 20px 40px;
    border-top: 1px solid #eaeaea;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.brand-column p {
    color: #666;
    line-height: 1.6;
    margin-top: 15px;
    font-size: 0.95rem;
}

.footer-logo img {
    height: 60px;
    border-radius: 10px;
}

.footer-column h3 {
    color: #333;
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-family: 'Raleway', sans-serif;
    position: relative;
    padding-bottom: 15px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: #F0911B;
    border-radius: 2px;
}

.links-grid {
    display: flex;
    gap: 40px;
}

.links-grid ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.links-grid li {
    margin-bottom: 12px;
}

.links-grid a {
    color: #666;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.links-grid a:hover {
    color: #d63e18;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: #666;
    font-size: 0.95rem;
}

/* RESPONSIVIDAD (MÓVILES) */
@media (max-width: 768px) {
    nav {
        flex-direction: row;
        justify-content: space-between;
        flex-wrap: wrap;
        padding: 15px;
        align-items: center;
    }

    .menu-icon {
        display: block;
    }

    .nav-list {
        width: 100%;
        background: #d63e18;
        flex-direction: column;
        align-items: center;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
    }

    .nav-list li {
        margin: 15px 0;
    }

    .menu-toggle:checked+.menu-icon+.nav-list {
        max-height: 300px;
    }

    /* BOTÓN FLOTANTE WHATSAPP CELULAR */
    .social {
        top: auto;
        bottom: 20px;
        right: 20px;
        left: auto;
    }

    .social ul li {
        display: none;
    }

    .social ul li:last-child {
        display: block;
    }

    .social ul li a.bg-whatsapp {
        border-radius: 50%;
        padding: 15px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .social ul li a.bg-whatsapp:hover {
        padding: 15px;
    }

    .social ul li a.bg-whatsapp i {
        font-size: 35px;
        margin: 0;
    }

    .carousel-item img {
        height: 300px;
        object-fit: cover;
    }

    .about-us {
        flex-direction: column-reverse;
        padding: 30px 15px;
        text-align: center;
    }

    .about-text h1,
    .about-text h2 {
        font-size: 2rem;
    }

    .about-text p {
        font-size: 1.1rem;
    }

    .cards-container {
        margin: 30px auto;
    }

    .card {
        width: 100%;
        max-width: 320px;
    }
}