/* Estilos generales */
body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    color: #000000;
}



/* Barra superior - Azul corporativo */
.top-bar {
    background-color: #000000;
    color: white;
    padding: 10px 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}



/* Contenedor contacto (teléfono + correo) */
.contact-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}



/* Teléfono y correo */
.phone-number, .correo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.phone-number {
    font-weight: bold;
}

.correo a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.correo a:hover {
    opacity: 0.8;
}



/* Redes sociales */
.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: white;
    font-size: 18px;
    transition: opacity 0.3s;
}

.social-icons a:hover {
    opacity: 0.7;
}



/* Menú principal */
.menu {
    display: flex;
    justify-content: space-between; /* Separa menú y logo */
    align-items: center;
    background-color: white;
    padding: 15px 20px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.menu > ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding: 0;
}



/* logo principal */
.menu-logo {
    margin-right: 60px;
}

.menu-logo .logo-img {
    height: 70px; /* Ajusta según tu logo */
    width: auto;
    transition: all 0.3s ease;
}

.menu-logo .logo-img:hover {
    transform: scale(1.5);
}




/* Estilo base del menú */
.menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.menu li {
    position: relative;
}

.menu a {
    color: #000000;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 15px;
    display: block;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-align: center;
}




/* Estilo para el botón activo */
.menu li a.active,
.menu li.active > a {
    background-color: #FF6B00;
    color: white !important;
}

.menu a:hover {
    background-color: #000000;
    color: white;
}




/* Submenú */
.submenu {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    z-index: 100;
    border-radius: 0 0 4px 4px;
}

.submenu li a {
    display: block;
    padding: 10px 16px;
    color: #2C3E50;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}

.submenu li a:hover {
    background-color: #FF6B00;
    color: white;
}

.dropdown.active .submenu {
    display: block !important;
}




/* Flecha del dropdown */
.dropdown-btn i {
    margin-left: 5px;
    transition: transform 0.3s;
}

.dropdown.active .dropdown-btn i {
    transform: rotate(180deg);
}




/* Efecto para la página actual en submenús */
.submenu li a.active {
    background-color: #FF6B00;
    color: white !important;
    font-weight: bold;
}




/* WhatsApp Chat Button */
.whatsapp-chat {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.whatsapp-btn {
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    position: relative;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

.whatsapp-tooltip {
    background-color: #000000;
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 14px;
    margin-bottom: 15px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: absolute;
    right: 70px;
    width: max-content;
    text-align: center;
    line-height: 1.4;
}

.whatsapp-btn:hover + .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.whatsapp-btn::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgba(37, 211, 102, 0.4);
    z-index: -1;
    animation: pulse 2s infinite;
}

.back-to-top {
    position: fixed;
    bottom: 90px; /* Ajusta para que no choque con el botón de WhatsApp */
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #000000;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998; /* Un nivel menos que el botón de WhatsApp */
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #FF6B00;
    transform: translateY(-3px);
}






/* Estilos base del carrusel */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 80vh;
    max-height: 800px;
    overflow: hidden;
    margin: 0 auto;
}

.carousel-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:rgba(0, 0, 0, 0.4); /* negro corporativo con transparencia */
    z-index: 1;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    width: 80%;
    max-width: 800px;
}

.slide-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease;
}

.slide-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1.2s ease;
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #FF6B00; /* Rojo corporativo */
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    animation: fadeInUp 1.4s ease;
    border: 2px solid #FF6B00;
}

.cta-button:hover {
    background-color: transparent;
    color: white;
    border-color: white;
}



/* Controles del carrusel */
.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.3);
    color: white;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    padding: 15px;
    z-index: 3;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-control:hover {
    background-color: #000000; /* Azul corporativo */
}

.carousel-control.prev {
    left: 20px;
}

.carousel-control.next {
    right: 20px;
}



/* Indicadores */
.carousel-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.indicator {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background-color: #FF6B00; /* Rojo corporativo */
    transform: scale(1.2);
}

/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}






/* Sección NOSOTROS */
.about-us {
    padding: 80px 0;
    background-color: #fff;
    position: relative;
}

.about-us .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title span {
    letter-spacing: 5px;
    color: #000000;
    font-size: 1.8rem;
    display: block;
    margin-bottom: 15px;
}

.about-us h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
}

.about-us h1 span {
    color: #FF6B00;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-image {
    flex: 1;
    min-width: 300px;
    position: relative;
    text-align: center;
}

.about-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 5px solid white;
    outline: 2px solid #FF6B00;
}

.lead {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px dashed #eee;
}

.feature {
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature:hover {
    background: #f9f9f9;
    transform: translateY(-5px);
}

.feature i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
}

.feature h3 {
    color: #000000;
    font-size: 1.4rem;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.feature h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: #FF6B00;
}

.feature p {
    color: #666;
    line-height: 1.7;
}


/* Cotactanos */
.calculator-cta {
    margin-top: 30px;
}

.calc-button {
    display: inline-block;
    padding: 12px 25px;
    background-color: #000000;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.calc-button:hover {
    background-color: #FF6B00;
    transform: scale(1.05);
}

.calc-button i {
    margin-right: 10px;
}





/* Sección Servicios Destacados */
#servicios-destacados {
    padding: 80px 0;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 50px;
    font-size: 1.2rem;
}

.servicios-destacados-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.servicio-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.servicio-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.servicio-img {
    height: 220px;
    overflow: hidden;
}

.servicio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.servicio-card:hover .servicio-img img {
    transform: scale(1.05);
}

.servicio-content {
    padding: 25px;
}

.servicio-content h3 {
    color: #000000;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.highlight-text {
    color: #FF6B00;
}

.servicio-content p {
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.servicio-link {
    color: #000000;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s;
}

.servicio-link i {
    margin-left: 8px;
    transition: transform 0.3s;
}

.servicio-link:hover {
    color: #FF6B00;
}

.servicio-link:hover i {
    transform: translateX(5px);
}





/* Sección Productos - Versión mejorada */
#productos {
    padding: 80px 0;
    background: #f8f9fa;
}

#productos .container > h2 {
    text-align: center;
    color: #000000; /* Azul corporativo */
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
}

#productos .container > h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: #FF6B00; /* Rojo corporativo */
    margin: 15px auto 0;
}

.productos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.producto-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 350px;
}

.producto-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.producto-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0; /* Ahora ocupa toda la altura */
    background: rgba(0, 0, 0, 0.85); /* Azul con 85% de opacidad */
    color: white;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Alinea el contenido abajo */
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.producto-card:hover .producto-info {
    transform: translateY(0);
}

.producto-card:hover img {
    transform: scale(1.05);
}

.producto-info h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: white;
}

.producto-info p {
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 1rem;
}

.btn-producto {
    display: inline-flex;
    align-items: center;
    background: #FF6B00;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    width: fit-content;
    transition: all 0.3s;
}

.btn-producto i {
    margin-left: 8px;
    transition: transform 0.3s;
}

.btn-producto:hover {
    background: #FF6B00;
}

.btn-producto:hover i {
    transform: translateX(5px);
}


/* Línea divisoria */
.producto-info p:after {
    content: "";
    display: block;
    width: 50px;
    height: 2px;
    background: #FF6B00;
    margin: 15px 0;
}

/* Sección de Videos */
.video-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.video-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #000000; /* Azul corporativo */
}

.section-title span {
    color: #FF6B00; /* Rojo corporativo */
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 40px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.video-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.video-item:hover {
    transform: translateY(-10px);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-item h3 {
    padding: 20px 20px 10px;
    color: #000000;
    font-size: 1.3rem;
}

.video-item p {
    padding: 0 20px 20px;
    color: #666;
    line-height: 1.5;
}

.video-item:hover h3 {
    color: #FF6B00; /* Verde corporativo al hacer hover */
}





/* Carrusel Infinito */
.clientes-logos-section {
    padding: 60px 0;
    background: #f5f5f5;
    overflow: hidden;
    position: relative;
}

.clientes-container {
    width: 100%;
    overflow: hidden;
}

.clientes-carousel {
    display: flex;
    width: max-content;
    animation: scroll 30s linear infinite;
}

.cliente-logo {
    flex: 0 0 auto;
    margin: 0 25px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.cliente-logo img {
    height: 60px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0s ease;
}

.cliente-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(30, 33, 109, 0.1);
}

.cliente-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Pausa al interactuar */
.clientes-carousel:hover {
    animation-play-state: paused;
}






/* Footer - Rioja Construmix */
.site-footer {
    background: #000000;
    color: white;
    padding: 60px 0 0;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 0 20px;
}

.footer-brand {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-weight: 700;
}

.footer-brand span {
    color: #FF6B00;
}

.footer-about {
    opacity: 0.9;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.footer-contact i {
    margin-right: 12px;
    color: #FF6B00;
    margin-top: 3px;
}

.footer-title {
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: #FF6B00;
}

.footer-services li, .footer-links li {
    margin-bottom: 12px;
    list-style: none;
}

.footer-services li {
    display: flex;
    align-items: center;
}

.footer-services i {
    margin-right: 10px;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: all 0.3s;
    display: flex;
    align-items: center;
}

.footer-links a:hover {
    color: #FF6B00;
    transform: translateX(5px);
}

.footer-links i {
    margin-right: 8px;
    font-size: 0.8rem;
}

.footer-cta {
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 25px;
}

.footer-cta p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-btn {
    display: inline-block;
    background: #FF6B00;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.footer-btn:hover {
    background: #FF6B00;
    transform: translateY(-3px);
}

.social-links p {
    margin-bottom: 15px;
    font-weight: 600;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: white;
    background: rgba(255,255,255,0.15);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: #FF6B00;
    transform: translateY(-3px);
}

.footer-bottom {
    background: #141414;
    padding: 20px 0;
    margin-top: 60px;
    text-align: center;
    font-size: 0.9rem;
}

.legal-links {
    margin-top: 10px;
}

.legal-links a {
    color: #ddd;
    margin: 0 8px;
    text-decoration: none;
    transition: all 0.3s;
}

.legal-links a:hover {
    color: #FF6B00;
}





/* Estilos para página Quiénes Somos */
.about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), 
                url('../img/quienes-somos.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 20px;
    text-align: center;
}
/* estadisticas*/
        /* Contenedor de ancho completo para el fondo */
        .stats-wrapper {
            width: 100%;
            position: relative;
            padding: 60px 0;
            overflow: hidden;
            background: radial-gradient(circle, rgba(255,107,0,0.05) 0%, rgba(255,255,255,0) 70%);
            margin: 40px 0;
        }
        
        .stats-section {
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
            padding: 40px 20px;
            max-width: 1200px;
            width: 95%;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
            border: 1px solid #f0f0f0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 40px;
            position: relative;
            z-index: 2;
        }
        
        .section-title h1 {
            color: #333;
            font-size: 2.5rem;
            margin-bottom: 10px;
            letter-spacing: 1px;
        }
        
        .section-title p {
            color: #666;
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
            line-height: 1.6;
        }
        
        .stats-container {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 30px;
            position: relative;
            z-index: 2;
        }
        
        .stat-item {
            text-align: center;
            width: 260px;
            padding: 35px 25px;
            background: white;
            border-radius: 12px;
            transition: all 0.3s ease;
            cursor: pointer;
            border: 1px solid #f0f0f0;
            box-shadow: 0 3px 15px rgba(0, 0, 0, 0.07);
        }
        
        .stat-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: #FF6B00;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }
        
        .stat-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(255, 107, 0, 0.15);
            border-color: #FF6B00;
        }
        
        .stat-item:hover::before {
            transform: scaleX(1);
        }
        
        .stat-item i {
            font-size: 3rem;
            color: #FF6B00;
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }
        
        .stat-item:hover i {
            transform: scale(1.15);
            color: #ff8c42;
        }
        
        .stat-item h2 {
            font-size: 3rem;
            color: #333;
            margin-bottom: 15px;
            transition: all 0.3s ease;
            font-weight: 700;
        }
        
        .stat-item:hover h2 {
            color: #FF6B00;
        }
        
        .stat-item p {
            color: #666;
            font-size: 1.2rem;
            font-weight: 500;
            letter-spacing: 0.8px;
            transition: all 0.3s ease;
        }
        
        .stat-item:hover p {
            color: #222;
            transform: scale(1.03);
        }
        
        .counter {
            display: inline-block;
            position: relative;
        }
        
        .counter::after {
            content: '+';
            position: absolute;
            right: -22px;
            top: 0;
            color: #FF6B00;
            font-size: 2.5rem;
        }
        
        .highlight {
            position: absolute;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(255,107,0,0.1) 0%, rgba(255,255,255,0) 70%);
            border-radius: 50%;
            z-index: 1;
        }
        
        .highlight:nth-child(1) {
            top: 15%;
            left: 10%;
            animation: float 10s infinite ease-in-out;
        }
        
        .highlight:nth-child(2) {
            bottom: 20%;
            right: 10%;
            animation: float 12s infinite ease-in-out reverse;
        }
        
        @keyframes float {
            0%, 100% { transform: translate(0, 0); }
            25% { transform: translate(15px, 15px); }
            50% { transform: translate(0, 20px); }
            75% { transform: translate(-15px, 10px); }
        }
        
        .footer {
            text-align: center;
            margin-top: 30px;
            color: #999;
            font-size: 0.9rem;
            position: relative;
            z-index: 2;
        }
        
        /* Responsive Design */
        @media (max-width: 1000px) {
            .stats-container {
                justify-content: center;
            }
            
            .stat-item {
                width: 45%;
                max-width: 300px;
            }
        }
        
        @media (max-width: 700px) {
            .stat-item {
                width: 100%;
                max-width: 350px;
            }
            
            .section-title h1 {
                font-size: 2rem;
            }
            
            .section-title p {
                font-size: 1.1rem;
            }
        }
        
        @media (max-width: 480px) {
            .stats-wrapper {
                padding: 40px 0;
            }
            
            .stat-item {
                padding: 25px 15px;
            }
            
            .stat-item h2 {
                font-size: 2.5rem;
            }
            
            .stat-item p {
                font-size: 1.1rem;
            }
        }
/* estadisticas end */
.stat-item {
    text-align: center;
}

.stat-item h2 {
    font-size: 3rem;
    color: #000000;
    margin-bottom: 10px;
}

.about-content {
    display: flex;
    padding: 60px 5%;
    gap: 40px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.mission-vision {
    display: flex;
    gap: 20px;
    margin: 30px 0;
}

.mission, .vision {
    flex: 1;
    padding: 20px;
    border-radius: 8px;
}

.mission {
    background-color: rgba(232, 41, 20, 0.1);
    border-left: 4px solid #FF6B00;
}

.vision {
    background-color: rgba(30, 33, 109, 0.1);
    border-left: 4px solid #000000;
}

.values-section {
    padding: 60px 5%;
    background-color: #f9f9f9;
    text-align: center;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}



/* Estilos para página Servicios */

.hero-servicios {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../img/servicioss.jpg') center/cover;
    color: white;
    text-align: center;
    padding: 100px 20px;
    margin-bottom: 50px;
}
        
        .hero-servicios h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .servicio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            padding: 0 20px;
            max-width: 1200px;
            margin: 0 auto 50px;
        }
        
        .servicio-card {
            border: 1px solid #ddd;
            border-radius: 8px;
            overflow: hidden;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .servicio-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        .servicio-img {
            height: 200px;
            overflow: hidden;
        }
        
        .servicio-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .servicio-card:hover .servicio-img img {
            transform: scale(1.1);
        }
        
        .servicio-content {
            padding: 20px;
        }
        
        .servicio-content h3 {
            color: #000000;
            margin-bottom: 15px;
            font-size: 1.5rem;
        }
        
        .servicio-content p {
            color: #555;
            margin-bottom: 15px;
            line-height: 1.6;
        }
        
        .btn-servicio {
            display: inline-block;
            background-color: #FF6B00;
            color: white;
            padding: 10px 20px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        
        .btn-servicio:hover {
            background-color: #FF6B00;
        }
        
        .beneficios {
            background-color: #f9f9f9;
            padding: 50px 20px;
            text-align: center;
            margin-bottom: 50px;
        }
        
        .beneficios h2 {
            color: #000000;
            margin-bottom: 30px;
            font-size: 2rem;
        }
        
        .beneficios-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .beneficio-item {
            padding: 20px;
        }
        
        .beneficio-item i {
            font-size: 2.5rem;
            color: #FF6B00;
            margin-bottom: 15px;
            display: block;
        }
        
        .beneficio-item h3 {
            color: #000000;
            margin-bottom: 15px;
        }



    
/* Estilos para página Nosotros */
.hero-blog {
            background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url('../img/noticias.jpg') center/cover;
            color: white;
            text-align: center;
            padding: 100px 20px;
            margin-bottom: 50px;
        }
        
        .hero-blog h1 {
            font-size: 3rem;
            letter-spacing: 3px;
            margin-bottom: 20px;
            text-transform: uppercase;
        }
        
        .hero-blog p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .blog-container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px 50px;
        }
        
        .section-title {
            text-align: center;
            color: #000000;
            margin-bottom: 40px;
            font-size: 2rem;
            position: relative;
        }
        
        .section-title:after {
            content: "";
            display: block;
            width: 80px;
            height: 4px;
            background: #FF6B00;
            margin: 15px auto 0;
        }
        
        .articulo {
            border-bottom: 1px solid #eee;
            padding: 30px 0;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
        }
        
        .articulo:last-child {
            border-bottom: none;
        }
        
        .articulo-imagen {
            flex: 0 0 300px;
            height: 200px;
            overflow: hidden;
            border-radius: 5px;
        }
        
        .articulo-imagen img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .articulo:hover .articulo-imagen img {
            transform: scale(1.05);
        }
        
        .articulo-contenido {
            flex: 1;
            padding: 0 30px;
        }
        
        .articulo h3 {
            color: #000000;
            font-size: 1.5rem;
            margin-bottom: 15px;
        }
        
        .articulo p {
            color: #555;
            line-height: 1.6;
            margin-bottom: 15px;
        }
        
        .articulo-meta {
            display: flex;
            align-items: center;
            color: #777;
            font-size: 0.9rem;
            margin-bottom: 15px;
        }
        
        .articulo-meta span {
            margin-right: 20px;
            display: flex;
            align-items: center;
        }
        
        .articulo-meta i {
            margin-right: 5px;
            color: #FF6B00;
        }
        
        .btn-leer {
            display: inline-block;
            color: #FF6B00;
            font-weight: bold;
            text-decoration: none;
            border-bottom: 2px solid #FF6B00;
            padding-bottom: 3px;
            transition: all 0.3s;
        }
        
        .btn-leer:hover {
            color: #000000;
            border-bottom-color: #000000;
        }
        
        .btn-leer:after {
            content: "→";
            margin-left: 5px;
            transition: margin-left 0.3s;
        }
        
        .btn-leer:hover:after {
            margin-left: 10px;
        }



/* Estilos específicos para contacto.html */
        .hero-contacto {
            background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url('../img/asesoria-tecnica.jpg') center/cover;
            color: white;
            text-align: center;
            padding: 100px 20px;
            margin-bottom: 50px;
        }
        
        .hero-contacto h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .contacto-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            max-width: 1200px;
            margin: 0 auto 50px;
            padding: 0 20px;
        }
        
        .contacto-info {
            background-color: #f9f9f9;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .contacto-info h2 {
            color: #000000;
            margin-bottom: 20px;
            font-size: 1.8rem;
            position: relative;
            padding-bottom: 10px;
        }
        
        .contacto-info h2:after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 60px;
            height: 3px;
            background-color: #FF6B00;
        }
        
        .info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }
        
        .info-item i {
            color: #FF6B00;
            font-size: 1.5rem;
            margin-right: 15px;
            margin-top: 3px;
        }
        
        .info-content h3 {
            color: #000000;
            margin-bottom: 5px;
            font-size: 1.2rem;
        }
        
        .info-content p, .info-content a {
            color: #555;
            line-height: 1.6;
        }
        
        .info-content a {
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .info-content a:hover {
            color: #FF6B00;
        }
        
        .contacto-form {
            background-color: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .contacto-form h2 {
            color: #000000;
            margin-bottom: 20px;
            font-size: 1.8rem;
            position: relative;
            padding-bottom: 10px;
        }
        
        .contacto-form h2:after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 60px;
            height: 3px;
            background-color: #FF6B00;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #000000;
            font-weight: bold;
        }
        
        .form-control {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
            transition: border-color 0.3s;
        }
        
        .form-control:focus {
            border-color: #000000;
            outline: none;
        }
        
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        
        .btn-enviar {
            background-color: #FF6B00;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 5px;
            font-size: 1rem;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s;
        }
        
        .btn-enviar:hover {
            background-color: #FF6B00;
        }
        
        .mapa-container {
            grid-column: 1 / -1;
            height: 400px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .mapa-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        


/* Estilos específicos para productos */
        .product-hero {
            background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url('../img/quienes-somos.jpg') center/cover;
            color: white;
            text-align: center;
            padding: 100px 20px;
            margin-bottom: 50px;
        }
        
        .breadcrumb {
            max-width: 1200px;
            margin: 0 auto 20px;
            padding: 0 20px;
            font-size: 0.9rem;
            color: #777;
        }
        
        .breadcrumb a {
            color: #000000;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .breadcrumb a:hover {
            color: #FF6B00;
            text-decoration: underline;
        }
        
        .breadcrumb span {
            margin: 0 5px;
            color: #FF6B00;
        }
        
        .product-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px 50px;
            display: grid;
            grid-template-columns: 250px 1fr;
            gap: 40px;
        }
        
        .product-sidebar {
            background-color: #f9f9f9;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            height: fit-content;
        }
        
        .product-sidebar h3 {
            color: #000000;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #FF6B00;
        }
        
        .product-menu {
            list-style: none;
            padding: 0;
        }
        
        .product-menu li {
            margin-bottom: 10px;
        }
        
        .product-menu a {
            display: block;
            padding: 8px 10px;
            color: #333;
            text-decoration: none;
            border-left: 3px solid transparent;
            transition: all 0.3s;
        }
        
        .product-menu a:hover, .product-menu a.active {
            background-color: rgba(30, 33, 109, 0.1);
            border-left: 3px solid #FF6B00;
            color: #000000;
        }
        
        .product-menu a.active {
            font-weight: bold;
        }
        
        .product-content h2 {
            color: #000000;
            margin-bottom: 20px;
            font-size: 2rem;
        }
        
        .product-content p {
            color: #555;
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        .product-features {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        
        .feature-card {
            background-color: white;
            border: 1px solid #ddd;
            border-radius: 8px;
            padding: 20px;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            border-color: #000000;
        }
        
        .feature-card h4 {
            color: #000000;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        
        .feature-card h4:before {
            content: "✓";
            color: #FF6B00;
            margin-right: 10px;
            font-size: 1.2rem;
        }
        
        .feature-card p {
            color: #666;
            font-size: 0.95rem;
        }
        
        .fiber-types {
            background-color: #f5f5ff;
            padding: 30px;
            border-radius: 8px;
            margin: 30px 0;
        }
        
        .fiber-types h3 {
            color: #000000;
            margin-bottom: 20px;
            text-align: center;
        }
        
        .fiber-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .fiber-item {
            background-color: white;
            padding: 20px;
            border-radius: 5px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }
        
        .fiber-item h4 {
            color: #FF6B00;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }
        
        .fiber-item h4:before {
            content: "•";
            color: #000000;
            font-size: 1.5rem;
            margin-right: 10px;
        }
        
        .benefits-list {
            columns: 2;
            margin: 20px 0;
        }
        
        .benefits-list li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 25px;
        }
        
        .benefits-list li:before {
            content: "→";
            color: #FF6B00;
            position: absolute;
            left: 0;
        }





 /* Estilos específicos para productos */
        .product-hero {
            background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url('../img/quienes-somos.jpg') center/cover;
            color: white;
            text-align: center;
            padding: 100px 20px;
            margin-bottom: 50px;
        }
        
        .breadcrumb {
            max-width: 1200px;
            margin: 0 auto 20px;
            padding: 0 20px;
            font-size: 0.9rem;
            color: #777;
        }
        
        .breadcrumb a {
            color: #000000;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .breadcrumb a:hover {
            color: #FF6B00;
            text-decoration: underline;
        }
        
        .breadcrumb span {
            margin: 0 5px;
            color: #FF6B00;
        }
        
        .product-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px 50px;
            display: grid;
            grid-template-columns: 250px 1fr;
            gap: 40px;
        }
        
        .product-sidebar {
            background-color: #f9f9f9;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            height: fit-content;
        }
        
        .product-sidebar h3 {
            color: #000000;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #FF6B00;
        }
        
        .product-menu {
            list-style: none;
            padding: 0;
        }
        
        .product-menu li {
            margin-bottom: 10px;
        }
        
        .product-menu a {
            display: block;
            padding: 8px 10px;
            color: #333;
            text-decoration: none;
            border-left: 3px solid transparent;
            transition: all 0.3s;
        }
        
        .product-menu a:hover, .product-menu a.active {
            background-color: rgba(30, 33, 109, 0.1);
            border-left: 3px solid #FF6B00;
            color: #000000;
        }
        
        .product-menu a.active {
            font-weight: bold;
        }
        
        .product-content h2 {
            color: #000000;
            margin-bottom: 20px;
            font-size: 2rem;
        }
        
        .product-content p {
            color: #555;
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        .product-features {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        
        .feature-card {
            background-color: white;
            border: 1px solid #ddd;
            border-radius: 8px;
            padding: 20px;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            border-color: #000000;
        }
        
        .feature-card h4 {
            color: #000000;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        
        .feature-card h4:before {
            content: "✓";
            color: #FF6B00;
            margin-right: 10px;
            font-size: 1.2rem;
        }
        
        .feature-card p {
            color: #666;
            font-size: 0.95rem;
        }
        
        .mortero-types {
            background-color: #fff9f0;
            padding: 30px;
            border-radius: 8px;
            margin: 30px 0;
        }
        
        .mortero-types h3 {
            color: #000000;
            margin-bottom: 20px;
            text-align: center;
        }
        
        .mortero-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .mortero-item {
            background-color: white;
            padding: 20px;
            border-radius: 5px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            border-left: 4px solid #FF6B00;
        }
        
        .mortero-item h4 {
            color: #FF6B00;
            margin-bottom: 10px;
        }
        
        .benefits-list {
            columns: 2;
            margin: 20px 0;
        }
        
        .benefits-list li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 25px;
        }
        
        .benefits-list li:before {
            content: "•";
            color: #FF6B00;
            font-size: 1.5rem;
            position: absolute;
            left: 0;
            top: -5px;
        }
        
        .specs-table {
            width: 100%;
            border-collapse: collapse;
            margin: 25px 0;
        }
        
        .specs-table th {
            background-color: #000000;
            color: white;
            padding: 12px;
            text-align: left;
        }
        
        .specs-table td {
            padding: 12px;
            border-bottom: 1px solid #ddd;
        }
        
        .specs-table tr:nth-child(even) {
            background-color: #f9f9f9;
        }




/* Estilos específicos para productos */
        .product-hero {
            background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url('../img/quienes-somos.jpg') center/cover;
            color: white;
            text-align: center;
            padding: 100px 20px;
            margin-bottom: 50px;
        }
        
        .breadcrumb {
            max-width: 1200px;
            margin: 0 auto 20px;
            padding: 0 20px;
            font-size: 0.9rem;
            color: #777;
        }
        
        .breadcrumb a {
            color: #000000;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .breadcrumb a:hover {
            color: #FF6B00;
            text-decoration: underline;
        }
        
        .breadcrumb span {
            margin: 0 5px;
            color: #FF6B00;
        }
        
        .product-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px 50px;
            display: grid;
            grid-template-columns: 250px 1fr;
            gap: 40px;
        }
        
        .product-sidebar {
            background-color: #f9f9f9;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            height: fit-content;
        }
        
        .product-sidebar h3 {
            color: #000000;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #FF6B00;
        }
        
        .product-menu {
            list-style: none;
            padding: 0;
        }
        
        .product-menu li {
            margin-bottom: 10px;
        }
        
        .product-menu a {
            display: block;
            padding: 8px 10px;
            color: #333;
            text-decoration: none;
            border-left: 3px solid transparent;
            transition: all 0.3s;
        }
        
        .product-menu a:hover, .product-menu a.active {
            background-color: rgba(30, 33, 109, 0.1);
            border-left: 3px solid #FF6B00;
            color: #000000;
        }
        
        .product-menu a.active {
            font-weight: bold;
        }
        
        .product-content h2 {
            color: #000000;
            margin-bottom: 20px;
            font-size: 2rem;
        }
        
        .product-content p {
            color: #555;
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        .product-features {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        
        .feature-card {
            background-color: white;
            border: 1px solid #ddd;
            border-radius: 8px;
            padding: 20px;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            border-color: #000000;
        }
        
        .feature-card h4 {
            color: #000000;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        
        .feature-card h4:before {
            content: "⚡";
            color: #FF6B00;
            margin-right: 10px;
            font-size: 1.2rem;
        }
        
        .feature-card p {
            color: #666;
            font-size: 0.95rem;
        }
        
        .accelerant-types {
            background-color: #fff0f0;
            padding: 30px;
            border-radius: 8px;
            margin: 30px 0;
        }
        
        .accelerant-types h3 {
            color: #000000;
            margin-bottom: 20px;
            text-align: center;
        }
        
        .accelerant-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .accelerant-item {
            background-color: white;
            padding: 20px;
            border-radius: 5px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            border-top: 3px solid #FF6B00;
        }
        
        .accelerant-item h4 {
            color: #FF6B00;
            margin-bottom: 10px;
        }
        
        .time-comparison {
            display: flex;
            justify-content: space-around;
            margin: 30px 0;
            text-align: center;
        }
        
        .time-card {
            background-color: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            flex: 1;
            margin: 0 10px;
            max-width: 300px;
        }
        
        .time-card h4 {
            color: #000000;
            margin-bottom: 15px;
        }
        
        .time-value {
            font-size: 2rem;
            font-weight: bold;
            color: #FF6B00;
            margin: 10px 0;
        }
        
        .time-card.normal {
            border-top: 5px solid #000000;
        }
        
        .time-card.accelerated {
            border-top: 5px solid #FF6B00;
        }
        
        .benefits-list {
            columns: 2;
            margin: 20px 0;
        }
        
        .benefits-list li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 25px;
        }
        
        .benefits-list li:before {
            content: "→";
            color: #FF6B00;
            position: absolute;
            left: 0;
        }





/* Estilos específicos para productos */
        .product-hero {
            background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url('../img/quienes-somos.jpg') center/cover;
            color: white;
            text-align: center;
            padding: 100px 20px;
            margin-bottom: 50px;
        }
        
        .breadcrumb {
            max-width: 1200px;
            margin: 0 auto 20px;
            padding: 0 20px;
            font-size: 0.9rem;
            color: #777;
        }
        
        .breadcrumb a {
            color: #000000;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .breadcrumb a:hover {
            color: #FF6B00;
            text-decoration: underline;
        }
        
        .breadcrumb span {
            margin: 0 5px;
            color: #FF6B00;
        }
        
        .product-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px 50px;
            display: grid;
            grid-template-columns: 250px 1fr;
            gap: 40px;
        }
        
        .product-sidebar {
            background-color: #f9f9f9;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            height: fit-content;
        }
        
        .product-sidebar h3 {
            color: #000000;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #FF6B00;
        }
        
        .product-menu {
            list-style: none;
            padding: 0;
        }
        
        .product-menu li {
            margin-bottom: 10px;
        }
        
        .product-menu a {
            display: block;
            padding: 8px 10px;
            color: #333;
            text-decoration: none;
            border-left: 3px solid transparent;
            transition: all 0.3s;
        }
        
        .product-menu a:hover, .product-menu a.active {
            background-color: rgba(30, 33, 109, 0.1);
            border-left: 3px solid #FF6B00;
            color: #000000;
        }
        
        .product-menu a.active {
            font-weight: bold;
        }
        
        .product-content h2 {
            color: #000000;
            margin-bottom: 20px;
            font-size: 2rem;
        }
        
        .product-content p {
            color: #555;
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        .resistance-levels {
            display: flex;
            justify-content: space-between;
            margin: 30px 0;
            text-align: center;
        }
        
        .resistance-card {
            background-color: white;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            flex: 1;
            margin: 0 10px;
            max-width: 200px;
            border-top: 5px solid;
        }
        
        .resistance-card h4 {
            color: #000000;
            margin-bottom: 15px;
        }
        
        .resistance-value {
            font-size: 2rem;
            font-weight: bold;
            color: #FF6B00;
            margin: 10px 0;
        }
        
        .resistance-card.normal {
            border-top-color: #000000;
        }
        
        .resistance-card.high {
            border-top-color: #FF6B00;
        }
        
        .resistance-card.ultra {
            border-top-color: #FF6B00;
        }
        
        .product-features {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        
        .feature-card {
            background-color: white;
            border: 1px solid #ddd;
            border-radius: 8px;
            padding: 20px;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            border-color: #000000;
        }
        
        .feature-card h4 {
            color: #000000;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        
        .feature-card h4:before {
            content: "🏗️";
            margin-right: 10px;
            font-size: 1.2rem;
        }
        
        .feature-card p {
            color: #666;
            font-size: 0.95rem;
        }
        
        .composition {
            background-color: #f0f7ff;
            padding: 30px;
            border-radius: 8px;
            margin: 30px 0;
        }
        
        .composition h3 {
            color: #000000;
            margin-bottom: 20px;
            text-align: center;
        }
        
        .composition-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 20px;
        }
        
        .composition-item {
            background-color: white;
            padding: 15px;
            border-radius: 5px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
            text-align: center;
        }
        
        .composition-item h4 {
            color: #FF6B00;
            margin-bottom: 10px;
        }
        
        .benefits-list {
            columns: 2;
            margin: 20px 0;
        }
        
        .benefits-list li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 25px;
        }
        
        .benefits-list li:before {
            content: "→";
            color: #FF6B00;
            position: absolute;
            left: 0;
        }




.product-hero {
            background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url('../img/quienes-somos.jpg') center/cover;
            color: white;
            text-align: center;
            padding: 100px 20px;
            margin-bottom: 50px;
        }
        
        .breadcrumb {
            max-width: 1200px;
            margin: 0 auto 20px;
            padding: 0 20px;
            font-size: 0.9rem;
            color: #777;
        }
        
        .breadcrumb a {
            color: #000000;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .breadcrumb a:hover {
            color: #FF6B00;
            text-decoration: underline;
        }
        
        .breadcrumb span {
            margin: 0 5px;
            color: #FF6B00;
        }
        
        .product-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px 50px;
            display: grid;
            grid-template-columns: 250px 1fr;
            gap: 40px;
        }
        
        .product-sidebar {
            background-color: #f9f9f9;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
            height: fit-content;
        }
        
        .product-sidebar h3 {
            color: #000000;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #FF6B00;
        }
        
        .product-menu {
            list-style: none;
            padding: 0;
        }
        
        .product-menu li {
            margin-bottom: 10px;
        }
        
        .product-menu a {
            display: block;
            padding: 8px 10px;
            color: #333;
            text-decoration: none;
            border-left: 3px solid transparent;
            transition: all 0.3s;
        }
        
        .product-menu a:hover, .product-menu a.active {
            background-color: rgba(30, 33, 109, 0.1);
            border-left: 3px solid #FF6B00;
            color: #000000;
        }
        
        .product-menu a.active {
            font-weight: bold;
        }
        
        .product-content h2 {
            color: #000000;
            margin-bottom: 20px;
            font-size: 2rem;
        }
        
        .product-content p {
            color: #555;
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        .process-steps {
            display: flex;
            justify-content: space-between;
            margin: 40px 0;
            position: relative;
        }
        
        .process-steps:before {
            content: "";
            position: absolute;
            top: 30px;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(to right, #FF6B00, #000000, #FF6B00);
            z-index: 1;
        }
        
        .step {
            text-align: center;
            position: relative;
            z-index: 2;
            flex: 1;
        }
        
        .step-icon {
            width: 60px;
            height: 60px;
            background-color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border: 3px solid;
            font-size: 1.5rem;
        }
        
        .step-1 .step-icon {
            border-color: #000000;
            color: #000000;
        }
        
        .step-2 .step-icon {
            border-color: #FF6B00;
            color: #FF6B00;
        }
        
        .step-3 .step-icon {
            border-color: #000000;
            color: #000000;
        }
        
        .step h4 {
            color: #333;
            margin-bottom: 5px;
        }
        
        .step p {
            color: #666;
            font-size: 0.9rem;
        }
        
        .product-features {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 20px;
            margin: 30px 0;
        }
        
        .feature-card {
            background-color: white;
            border: 1px solid #ddd;
            border-radius: 8px;
            padding: 20px;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            border-color: #000000;
        }
        
        .feature-card h4 {
            color: #000000;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
        }
        
        .feature-card h4:before {
            content: "✓";
            color: #FF6B00;
            margin-right: 10px;
            font-size: 1.2rem;
        }
        
        .feature-card p {
            color: #666;
            font-size: 0.95rem;
        }
        
        .advantages {
            background-color: #f0f7ff;
            padding: 30px;
            border-radius: 8px;
            margin: 30px 0;
        }
        
        .advantages h3 {
            color: #000000;
            margin-bottom: 20px;
            text-align: center;
        }
        
        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .advantage-item {
            background-color: white;
            padding: 20px;
            border-radius: 5px;
            box-shadow: 0 3px 10px rgba(0,0,0,0.05);
        }
        
        .advantage-item h4 {
            color: #FF6B00;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }
        
        .advantage-item h4:before {
            content: "•";
            color: #000000;
            font-size: 1.5rem;
            margin-right: 10px;
        }
        
        .benefits-list {
            columns: 2;
            margin: 20px 0;
        }
        
        .benefits-list li {
            margin-bottom: 10px;
            position: relative;
            padding-left: 25px;
        }
        
        .benefits-list li:before {
            content: "→";
            color: #FF6B00;
            position: absolute;
            left: 0;
        }

/* Estilos específicos para equipos */
        .equipos-hero {
            background: linear-gradient(rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.9)), url('../img/equipos.jpg') center/cover;
            color: white;
            text-align: center;
            padding: 100px 20px;
            margin-bottom: 50px;
        }
        
        .equipos-hero h1 {
            font-size: 3rem;
            letter-spacing: 3px;
            margin-bottom: 20px;
            text-transform: uppercase;
        }
        
        .equipos-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px 50px;
        }
        
        .section-title {
            text-align: center;
            color: #000000;
            margin-bottom: 40px;
            font-size: 2rem;
            position: relative;
        }
        
        .section-title:after {
            content: "";
            display: block;
            width: 80px;
            height: 4px;
            background: #FF6B00;
            margin: 15px auto 0;
        }
        
        .equipos-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .equipo-card {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .equipo-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }
        
        .equipo-img {
            height: 250px;
            overflow: hidden;
        }
        
        .equipo-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .equipo-card:hover .equipo-img img {
            transform: scale(1.05);
        }
        
        .equipo-content {
            padding: 25px;
            background: white;
        }
        
        .equipo-content h3 {
            color: #000000;
            font-size: 1.5rem;
            margin-bottom: 15px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .equipo-content h3:after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 2px;
            background-color: #FF6B00;
        }
        
        .equipo-content p {
            color: #555;
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        .btn-equipo {
            display: inline-block;
            background-color: #FF6B00;
            color: white;
            padding: 10px 20px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        
        .btn-equipo:hover {
            background-color: #FF6B00;
        }












/* ---------------------------------- */
/* Media Queries para Responsive */
/* ---------------------------------- */

@media (max-width: 768px) {
    .top-bar {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
        padding: 15px 10px;
    }
    
    .contact-container {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 10px;
    }
    
    .menu ul {
        flex-direction: column;
        gap: 5px;
    }
    
    .menu a {
        padding: 12px 10px;
    }
    
    .submenu {
        position: static;
        width: 100%;
        box-shadow: none;
        border-radius: 0;
    }
    
    .dropdown.active .submenu {
        display: flex !important;
        flex-direction: column;
    }

    /* WhatsApp responsive */
    .whatsapp-chat {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-btn {
        width: 55px;
        height: 55px;
        font-size: 28px;
    }
    
    .whatsapp-tooltip {
        font-size: 13px;
        right: 65px;
        padding: 8px 12px;
    }

    .back-to-top {
        bottom: 80px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    .hero-carousel {
        height: 60vh;
    }
    
    .slide-content h2 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1.2rem;
    }
    
    .carousel-control {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .why-choose-us {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .reasons-grid {
        grid-template-columns: 1fr;
    }
    
    .reason-card {
        padding: 20px;
    }

        .about-content {
        flex-direction: column;
    }
    
    .about-image {
        order: -1;
        margin-bottom: 30px;
    }
    
    .about-us h1 {
        font-size: 2rem;
    }
    
    /* Sección Productos */
#productos {
    padding: 80px 0;
    background: #f8f9fa;
}

.productos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.producto-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 350px;
}

.producto-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.producto-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9); /* Azul corporativo con transparencia */
    color: white;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.producto-card:hover .producto-info {
    transform: translateY(0);
}

.producto-card:hover img {
    transform: scale(1.05);
}

.producto-desc {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.producto-card:hover .producto-desc {
    max-height: 200px;
}

.btn-producto {
    display: inline-flex;
    align-items: center;
    background: #FF6B00; /* Rojo corporativo */
    color: white;
    padding: 8px 20px;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 15px;
    font-size: 14px;
}

.btn-producto i {
    margin-left: 8px;
    transition: transform 0.3s;
}

.btn-producto:hover i {
    transform: translateX(5px);
}

/* Texto siempre visible */
.producto-info h3 {
    margin: 0 0 10px 0;
    font-size: 1.3rem;
}

.productos-grid {
        grid-template-columns: 1fr;
    }
    
    .producto-info {
        padding: 20px;
    }
    
    .producto-info h3 {
        font-size: 1.5rem;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }

    .cliente-logo {
        margin: 0 15px;
    }
    
    .cliente-logo img {
        height: 40px;
        max-width: 120px;
    }
    
    @keyframes scroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }

     .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-brand {
        font-size: 1.5rem;
    }

        .about-content {
        flex-direction: column;
    }
    
    .mission-vision {
        flex-direction: column;
    }

     .hero-servicios {
                padding: 60px 20px;
            }
            
            .hero-servicios h1 {
                font-size: 2rem;
            }
     .hero-blog {
                padding: 60px 20px;
            }
            
            .hero-blog h1 {
                font-size: 2rem;
            }
            
            .articulo {
                flex-direction: column;
            }
            
            .articulo-imagen {
                flex: 0 0 auto;
                width: 100%;
                margin-bottom: 20px;
            }
            
            .articulo-contenido {
                padding: 0;
            }

             .contacto-container {
                grid-template-columns: 1fr;
            }
            
            .hero-contacto {
                padding: 60px 20px;
            }

            .product-container {
                grid-template-columns: 1fr;
            }
            
            .product-hero {
                padding: 60px 20px;
            }
            
            .standards ul {
                columns: 1;
            }

            .product-container {
                grid-template-columns: 1fr;
            }
            
            .product-hero {
                padding: 60px 20px;
            }
            
            .benefits-list {
                columns: 1;
            }

             .product-container {
                grid-template-columns: 1fr;
            }
            
            .product-hero {
                padding: 60px 20px;
            }
            
            .benefits-list {
                columns: 1;
            }
            
            .mortero-grid {
                grid-template-columns: 1fr;
            }

            .product-container {
                grid-template-columns: 1fr;
            }
            
            .product-hero {
                padding: 60px 20px;
            }
            
            .benefits-list {
                columns: 1;
            }
            
            .time-comparison {
                flex-direction: column;
                align-items: center;
            }
            
            .time-card {
                margin: 10px 0;
                max-width: 100%;
            }

            .product-container {
                grid-template-columns: 1fr;
            }
            
            .product-hero {
                padding: 60px 20px;
            }
            
            .benefits-list {
                columns: 1;
            }
            
            .resistance-levels {
                flex-direction: column;
                align-items: center;
            }
            
            .resistance-card {
                margin: 10px 0;
                max-width: 100%;
            }

            .product-container {
                grid-template-columns: 1fr;
            }
            
            .product-hero {
                padding: 60px 20px;
            }
            
            .process-steps {
                flex-direction: column;
                align-items: center;
            }
            
            .step {
                margin-bottom: 30px;
                max-width: 250px;
            }
            
            .process-steps:before {
                display: none;
            }
            
            .benefits-list {
                columns: 1;
            }

            .equipos-hero {
                padding: 60px 20px;
            }
            
            .equipos-hero h1 {
                font-size: 2rem;
            }
            
            .equipos-grid {
                grid-template-columns: 1fr;
            }

}
/* derechos reservados */
.link-datanetzu {
    text-decoration: none;
    color: #FF6B00;
  }
  