.category-container {
            position: relative;
            overflow: hidden;
            margin-bottom: 20px;
        }

        .custom-alert-close {
        position: absolute;
        top: 12px;
        right: 12px;
        width: 30px;
        height: 30px;
        line-height: 28px;
        text-align: center;
        background: rgba(255,255,255,0.95);
        border: 1px solid rgba(0,0,0,0.08);
        border-radius: 50%;
        color: #222;
        opacity: 0.85;
        transition: all 0.2s ease-in-out;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    }

    .custom-alert-close:hover,
    .custom-alert-close:focus {
        opacity: 1;
        transform: scale(1.05);
        background: rgba(255,255,255,1);
        color: #111;
    }

    .alert-dismissible {
        padding-right: 50px;
    }

        /* Estilo para los cuadros blancos superpuestos */
        .overlay-box {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background-color: rgba(255, 255, 255, 0.8);
            padding: 20px 40px;
            text-align: center;
            width: 80%;
            border: 1px solid #ddd;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }

        .category-container:hover .overlay-box {
            background-color: rgba(255, 255, 255, 0.95);
            transform: translate(-50%, -50%) scale(1.05);
        }

        .category-title {
            font-size: 1.8rem;
            font-weight: 400;
            letter-spacing: 2px;
            margin: 0;
            text-transform: uppercase;
        }

        .brand-subtitle {
            font-size: 0.7rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            border-top: 1px solid #000;
            display: inline-block;
            margin-top: 5px;
            padding-top: 5px;
        }

        /* Estilo para la variante con texto abajo (Middle) */
        .text-below {
            margin-top: 15px;
            text-align: center;
        }

        .img-fluid-custom {
            width: 100%;
            height: auto;
            object-fit: cover;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .img-fluid-custom:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }


/* Colores personalizados */
    .bg-black {
        background-color: #000000;
    }

    /* Estilo del texto para que coincida con la imagen */
    .about-text-container {
        text-align: center;
        max-width: 600px;
        margin: 0 auto;
    }

    .lead-text {
        font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
        font-size: 1.3rem;
        font-weight: 300;
        line-height: 1.8;
        letter-spacing: 0.5px;
        color: #ffffff;
    }

    /* Estilos de tipografía */
    .mission-text {
        font-family: 'Segoe UI', Arial, sans-serif;
        font-size: 1.3rem;
        font-weight: 300;
        line-height: 1.6;
        color: #333;
        max-width: 450px;
        margin: 0 auto;
    }

    .section-title {
        font-family: 'Segoe UI', Arial, sans-serif;
        font-size: 3rem; /* Tamaño grande para el título */
        font-weight: 300;
        letter-spacing: 4px;
        color: #999; /* Color gris claro como en la imagen */
        margin-top: 20px;
    }

  
    /* Estilo para el texto descriptivo */
    .description-text {
        font-family: 'Segoe UI', Roboto, Arial, sans-serif;
         line-height: 1.8;
        color: #333333;
        font-weight: 300;
        text-align: left;
    }

    /* Resalte para los nombres de los cortes */
    .description-text strong {
        font-weight: 700;
        letter-spacing: 0.5px;
    }

    /* Ajuste para que la imagen no se vea gigante en desktop */
    .img-fluid {
        width: 100%;
        max-width: 450px;
        display: block;
        margin: 0 auto;
    }


       .description-text {
            font-family: 'Segoe UI', Roboto, Arial, sans-serif;
            font-size: 1.4rem;
            line-height: 1.8;
            color: #333;
            font-weight: 300;
        }

        .description-text strong {
            font-weight: 700;
        }

        @media (max-width: 768px) {
            .lead-text {
                font-size: 1rem;
                line-height: 1.6;
            }
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 2.2rem;
            }
            .mission-text {
                font-size: 1rem;
            }
        }

        @media (max-width: 768px) {
            .text-md-end {
                text-align: center; /* Centrado en móviles */
            }
            .description-text {
                font-size: 1rem;
                line-height: 1.6;
            }
        }

        @media (max-width: 768px) {
            .description-text {
                text-align: center;
                font-size: 1rem;
                line-height: 1.6;
            }
        }

/* Animaciones adicionales para dinamismo */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.img-fluid-custom {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.4s ease, box-shadow 0.4s ease, filter 0.4s ease;
    animation: float 5s ease-in-out infinite;
    border-radius: 10px;
}

.img-fluid-custom:hover {
    transform: scale(1.08) rotate(1deg);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    filter: brightness(1.1);
    animation-play-state: paused;
}

/* Gradientes y sombras para secciones */
.cuts-section {
    background: linear-gradient(135deg, #e0e0e0 0%, #cccccc 50%, #b0b0b0 100%);
    box-shadow: inset 0 0 200px rgba(0,0,0,0.1), 0 10px 30px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

.cuts-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/img/textil/texture.png') repeat;
    opacity: 0.05;
    z-index: 0;
}

.cuts-section .container {
    position: relative;
    z-index: 1;
}

.cuts-section-alt {
    background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 50%, #e8e8e8 100%);
    box-shadow: inset 0 0 200px rgba(255,255,255,0.5), 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
}

.cuts-section-alt::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(85,85,85,0.05) 50%, transparent 70%);
    z-index: 0;
}

.cuts-section-alt .container {
    position: relative;
    z-index: 1;
}

/* Efectos para texto */
.description-text strong {
    color: #555555;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    position: relative;
}

.description-text strong::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #555555;
    transition: width 0.3s ease;
}

.description-text strong:hover::after {
    width: 100%;
}

.description-text strong:hover {
    color: #222222;
    text-shadow: 2px 2px 5px rgba(0,0,0,0.3);
}

/* Estilos para sección de información de contacto */
.contact-info-section {
    background: linear-gradient(135deg, #f0f0f0 0%, #e8e8e8 100%);
    padding: 60px 0 !important;
}

.contact-info-box {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 250px;
    border: 2px solid transparent;
}

.contact-info-box:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    border-color: #555555;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
}

.contact-info-box .info-icon {
    font-size: 3.5rem;
    color: #555555;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.contact-info-box:hover .info-icon {
    color: #333333;
    transform: scale(1.2) rotate(10deg);
}

.contact-info-box .info-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin: 15px 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-info-box .info-content p {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.contact-info-box:hover .info-content p {
    color: #555555;
}

.contact-info-box .info-content a {
    color: #555555;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-info-box .info-content a:hover {
    color: #333333;
    text-decoration: underline;
}

/* Estilos para el subtítulo y descripción del formulario */
.section-subtitle {
    font-size: 2.2rem;
    font-weight: 300;
    color: #333;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.section-description {
    font-size: 1rem;
    color: #666;
    margin-bottom: 30px;
    font-weight: 300;
}

/* Mejoras al formulario */
.noru-contact {
    background: white;
    padding: 60px 0;
}

.noru-contact form {
    background: linear-gradient(135deg, #f8f8f8 0%, #f0f0f0 100%);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.noru-contact .form-control {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.noru-contact .form-control:focus {
    border-color: #555555;
    box-shadow: 0 0 0 0.2rem rgba(85,85,85,0.25);
    background: white;
}

.noru-contact .form-control:hover {
    border-color: #555555;
}

.noru-contact .l-contact {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    display: block;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.noru-contact .l-contact em {
    color: #ff4444;
}

.btn-send {
    background: linear-gradient(135deg, #555555 0%, #333333 100%) !important;
    color: white !important;
    border: none !important;
    padding: 15px 50px !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    border-radius: 8px !important;
    cursor: pointer;
    transition: all 0.3s ease !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 20px;
}

.btn-send:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(85,85,85,0.4) !important;
    background: linear-gradient(135deg, #333333 0%, #1a1a1a 100%) !important;
}

.btn-send:active {
    transform: translateY(0);
}

.last-cart-con {
    text-align: center;
    margin-top: 30px;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-info-box {
        min-height: 200px;
        padding: 30px 20px;
    }

    .contact-info-box .info-icon {
        font-size: 2.5rem;
    }

    .section-subtitle {
        font-size: 1.8rem;
    }

    .noru-contact form {
        padding: 30px 20px;
    }
}
