   /* General Styles */
    body {
        font-family: 'Nunito', sans-serif;
        color: #0a2035;
        background-color: #dbe3e9;
        overflow-x: hidden;
    }

    /* Carousel Styles */
    .carousel-item {
        height: 70vh;
        background-size: cover;
        background-position: left;
        background-attachment: fixed;
        position: relative;
    }

    /* Overlay para añadir opacidad al carousel */
    .carousel-item::before,
    .carousel-video-wrapper::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.45); /* Color negro con 45% de opacidad */
        z-index: 1;
    }

    .carousel-caption {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        text-align: left;
        /*padding-left: 10%;*/
        z-index: 2; /* Asegurar que el contenido esté por encima del overlay */
        color: #e5c3a1;
    }

    .carousel__titulo {
        font-size: 33px;
        font-weight: 600;
        /*margin-bottom: 1rem;*/
        color: #e5c3a1; /* Cambiado a amarillo para mantener consistencia con el diseño */
        text-shadow: 1px 1px 8px #0a2035;
    }

    .carousel__descripcion {
        font-size: 1.2rem;
        color: #fff; /* Cambiado a blanco para mejor contraste con el overlay */
        max-width: 80%;
   
        /*padding: 0.5rem 1rem;*/
        border-radius: 6px;
    }

    .btn__white {
        background-color: #e5c3a1;
        color: #0a2035 !important; /* Texto negro para contraste */
        font-weight: 600;
        border-radius: 30px;
        padding: 0.5rem 1.5rem;
        z-index: 3; /* Asegurar que el botón está por encima de todo */
        border: 2px solid #e5c3a1;
        transition: all 0.3s ease;
        box-shadow: 0 2px 8px rgba(10,32,53,0.08);
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .btn__white:hover {
        background-color: #0a2035;
        color: #e5c3a1 !important;
        border-color: #0a2035;
    }

    .service-icons {
        position: absolute;
        bottom: -50px;
        left: 0;
        right: 0;
        width: 50%;
        margin: 0 auto;
        background-color: rgba(255, 255, 255, 0.9);
        padding: 1.5rem 2rem;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        z-index: 10;
    }
    /* Service Icons */
    .service-icon {
        margin-bottom: 1.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        height: 100%;
    }

    .service-icon img {
        max-width: 60px;
        margin-bottom: 1rem;  /* Ajustar a 1rem para espaciado consistente */
        flex-shrink: 0;
    }

    .service-icon p {
        font-family: 'Nunito';
        font-weight: 400;
        font-size: 16px;
        line-height: 1.3;  /* Ajustar a line-height para mejor lectura */
        letter-spacing: 0%;
        text-align: center;
        margin: 0;  /* Quitar márgenes por defecto */
    }

    label{
        font-family: 'Nunito';
        font-weight: 400;
        font-size: 20px;
        line-height: 100%;
        letter-spacing: 0%;

    }

    .form-text{
        font-family: 'Nunito';
    font-weight: 400;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    }


    .sections-empresa {
        background: linear-gradient(120deg, #dbe3e9 60%, #e5c3a1 100%);
        border-radius: 12px;
        box-shadow: 0 4px 24px rgba(10,32,53,0.07);
    }
    .sections-empresa h1 {
        color: #0a2035;
        font-size: 2.2rem;
        font-weight: 700;
        letter-spacing: 1px;
    }
    .sections-empresa p {
        color: #0a2035;
    }

    /* Servicios */
    .industrial-coatings {
        background: #dbe3e9;
        border-radius: 12px;
        box-shadow: 0 4px 24px rgba(10,32,53,0.07);
    }
    .coating-item {
        background: #fff;
        border-radius: 16px;
        box-shadow: 0 2px 12px rgba(10,32,53,0.08);
        border: 2px solid #e5c3a1;
        transition: transform 0.3s, box-shadow 0.3s;
        min-height: 340px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }
    .coating-item h4 {
        color: #0a2035;
        font-size: 1.3rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }
    .coating-item ul {
        color: #0a2035;
        font-size: 1rem;
        font-family: 'Nunito', sans-serif;
        padding-left: 1.2rem;
    }
    .coating-item li {
        margin-bottom: 0.5rem;
    }
    .coating-item:hover {
        transform: translateY(-8px) scale(1.03);
        box-shadow: 0 8px 32px rgba(10,32,53,0.15);
        border-color: #0a2035;
        background: #e5c3a1;
    }
    .coating-item:hover h4,
    .coating-item:hover ul {
        color: #0a2035;
    }

    /* Projects */
    .project-item {
        position: relative;
        overflow: hidden;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .project-item img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

    .project-item:hover img {
        transform: scale(1.05);
    }

    

    /* Final Banner */
    .final-banner {
        background-size: cover;
        background-position: center;
        position: relative;
        height: 400px;
        background-color: #0a2035;
        border-radius: 12px;
    }
    .final-banner h2, .final-banner h3 {
        color: #e5c3a1;
        text-shadow: 1px 1px 8px #0a2035;
    }
    .final-banner .btn.btn-warning {
        background: #e5c3a1;
        color: #0a2035;
        border: none;
        font-weight: 700;
        border-radius: 30px;
        padding: 0.5rem 2rem;
        transition: background 0.2s;
    }
    .final-banner .btn.btn-warning:hover {
        background: #0a2035;
        color: #e5c3a1;
    }

    /* Section Styles */
    .section-title {
        font-weight: 700;
        margin-bottom: 1.5rem;
        color: #333;
    }

        /* Form Section */
    .form-section {
        background: #e5c3a1;
        border: 2px solid #0a2035;
        border-radius: 12px;
    }
    .form-section h2 {
        color: #0a2035;
    }
    .form-control, .form-select {
        border-radius: 8px;
        border: 1.5px solid #0a2035;
    }
    .btn-contacto {
        background: #e5c3a1;
        color: #0a2035;
        border-radius: 30px;
        padding: 0.5rem 2rem;
        font-weight: 700;
        border: none;
        transition: background 0.2s;
    }
    .btn-contacto:hover {
        background: #0a2035;
        color: #e5c3a1;
    }

    /* Responsive */
    @media (max-width: 768px) {
        .carousel-caption{
            padding-left: 0;
            top:50px;
        }
        .carousel-item, .carousel-video-wrapper {
          
        }
        
        .carousel__titulo {
            font-size: 18px;
        }
        .carousel__descripcion {
            font-size: 12px;
            max-width: 100%;
        }

        /* sacar el position  */
        .service-icons {
            position: static;
            margin-top: 1rem;
            width: 100%;
            padding: 1rem;
            box-shadow: none;
        }
        
    }
























      .experience-counter {
            background-color: #fff;
            padding: 60px 0;
            border-radius: 12px;
            margin: 30px 0;
        }
        .experience-item {
            padding: 20px;
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 4px 15px rgba(10,32,53,0.1);
            height: 100%;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .experience-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 25px rgba(10,32,53,0.2);
        }
        .experience-item i {
            font-size: 36px;
            color: #0a2035;
            margin-bottom: 15px;
            transition: all 0.3s ease;
        }
        .experience-item:hover i {
            color: #0a2035;
            transform: scale(1.2);
        }
        .counter-number {
            font-size: 42px;
            font-weight: 700;
            color: #0a2035;
            margin-bottom: 0;
            font-family: 'Nunito', sans-serif;
        }
        .counter-years {
            font-size: 16px;
            color: #0a2035;
            margin-bottom: 10px;
            font-weight: 600;
        }
        .counter-title {
            font-size: 16px;
            font-weight: 600;
            color: #0a2035;
            margin-bottom: 0;
        }