.sectors-row {
    margin-top: 50px;
    margin-bottom: 50px;
}

.card-sector {
    background: #fff;
    border: 1px solid #eef2f6;
    border-radius: 18px;
    padding: 40px 25px;
    text-align: center; /* Centramos el contenido como en la imagen */
    transition: all 0.3s ease;
}

.card-sector:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    border-color: #0074b3;
}

/* Caja del Icono */
.icon-sector-box {
    background-color: #0074b3; /* Azul corporativo */
    width: 65px;
    height: 65px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto; /* Centrado horizontal */
}

.icon-sector-box i {
    color: #fff;
    font-size: 28px;
}

/* Títulos y Párrafos */
.card-sector h3 {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.3;
    min-height: 48px; /* Mantiene alineados los textos si el título es de 2 líneas */
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-sector p {
    font-size: 14px !important;
    color: #666;
    line-height: 1.6 !important;
    margin-bottom: 0;
}

/* Ajuste para pantallas pequeñas */
@media (max-width: 768px) {
    .card-sector {
        padding: 30px 20px;
    }
}
/* Botones de Filtro superiores */
.btn-filter {
    background-color: #e9f2f9;
    color: #2d70b1;
    border: none;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.btn-filter.active, .btn-filter:hover {
    background-color: #2d70b1;
    color: #fff;
}

/* Tarjeta de Producto */
.card-producto {
    background: #fff;
    border: 1px solid #eef2f6;
    border-radius: 15px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.card-producto:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.card-product-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 15px;
}

.card-producto h3 {
    font-size: 19px !important;
    font-weight: 700 !important;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.product-subtitle {
    font-size: 13px;
    color: #888;
    display: block;
}

/* Etiquetas (Tags) de Categoría */
.product-tag {
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    white-space: nowrap;
}

.tag-blue { background: #eef7ff; color: #0074b3; }
.tag-green { background: #effff4; color: #28a745; }
.tag-cyan { background: #e0faff; color: #00a8cc; }
.tag-darkgreen { background: #f0fff0; color: #1e7e34; }

.card-producto p {
    font-size: 14.5px !important;
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1; /* Empuja el botón de cotizar al fondo */
}

/* Enlace de Cotización */
.btn-cotizar-link {
    color: #0074b3;
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.2s;
}

.btn-cotizar-link:hover {
    color: #0056b3;
    gap: 12px;
}
.states-row {
    margin-top: 40px;
    margin-bottom: 60px;
}

.card-estado {
    background: #fff;
    border: 1px solid #eef2f6;
    border-radius: 12px;
    padding: 25px;
    text-align: left;
    transition: all 0.3s ease;
}

.card-estado:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    border-color: #dbe4ed;
}

.state-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.state-header i {
    color: #0074b3; /* Azul representativo */
    font-size: 18px;
}

.state-header h3 {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #1a1a1a;
    margin: 0;
}

.card-estado p {
    font-size: 14px !important;
    color: #666;
    line-height: 1.5 !important;
    margin: 0;
}

/* Ajuste para que siempre se vea bien en tablets */
@media (max-width: 991px) {
    .card-estado {
        padding: 20px;
    }
}
/* Ajuste para que quepan 5 columnas en pantallas grandes */
@media (min-width: 992px) {
    .col-lg-2-4 {
        flex: 0 0 auto;
        width: 20%;
    }
}

.icon-box:before{
    content:none !important;
}

.process-row {
    margin-top: 50px;
    margin-bottom: 50px;
}

.card-paso {
    background: #fff;
    border: 1px solid #eef2f6;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
}

.card-paso:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border-color: #dbe4ed;
}

/* El cuadro del icono */
.icon-box {
    background-color: #0074b3; /* Azul de tu imagen */
    width: 55px;
    height: 55px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.icon-box i {
    color: #fff;
    font-size: 24px;
}

/* Textos */
.step-number {
    display: block;
    color: #0074b3;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.card-paso h3 {
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
    text-transform: none !important; /* Quitamos mayúsculas si no las quieres */
}

.card-paso p {
    font-size: 14px !important;
    color: #777;
    line-height: 1.6 !important;
}

/* Línea conectora (opcional, solo pantallas grandes) */
@media (min-width: 992px) {
    .card-paso:not(:last-child)::after {
        content: "";
        position: absolute;
        top: 50%;
        right: -15px;
        width: 30px;
        height: 1px;
        background-color: #e0e6ed;
        z-index: 1;
    }
}   
    /* Estenedor de Tarjetas */
.card-servicio {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
    transition: transform 0.3s ease;
    border: 1px solid #f0f0f0;
}

.ccard-servicio:hover {
    transform: translateY(-5px);
}

/* Contenedor de Imagen y Badge */
.card-img-container {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.card-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: transparent;
    color: #fff;
    padding: 8px 15px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-badge i {
    color: #fff; 
}

/* Cuerpo de la Tarjeta */
.card-body-custom {
    padding: 25px;
}

.card-body-custom p {
    font-size: 14.5px !important;
    color: #666;
    line-height: 1.6 !important;
    margin-bottom: 20px;
}

/* Barra de Material Recomendado */
.material-rec {
    background-color: #e4f2ff;
    color: #2d70b1;
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 500;
}

.material-rec strong {
    font-weight: 700;
}
.icon-badge{
    background-color:#2d70b1;
    padding:5px 10px;
    border-radius:10px;
    color:#fff;
}
/* Ajustes Responsive */
@media (max-width: 768px) {
    .card-img-container {
        height: 180px;
    }
    .card-body-custom {
        padding: 20px;
    }
}
    /* Contenedor de la tarjeta flotante */
.stats-floating-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    z-index: 10;
    margin-top: 20px;
    margin-bottom: -60px; /* Esto hace que sobresalga del banner */
    border: 1px solid #f0f0f0;
}

/* Estilo de cada bloque de estadística */
.stats-item {
    border-right: 1px solid #eee;
}

.stats-item:last-child {
    border-right: none;
}

.stats-item i {
    font-size: 24px;
    color: #2d70b1; /* Azul corporativo */
    margin-bottom: 10px;
}

.stats-num {
    font-size: 22px;
    font-weight: 800;
    color: #333;
    line-height: 1;
}

.stats-text {
    font-size: 11px;
    text-transform: uppercase;
    color: #888;
    margin-top: 5px;
    font-weight: 600;
}

/* Ajuste para móviles */
@media (max-width: 768px) {
    .stats-floating-card {
        margin-bottom: -100px;
        padding: 20px 10px;
    }
    .stats-item {
        border-right: none;
        border-bottom: 1px solid #eee;
        padding: 10px 0;
    }
    .stats-item:last-child {
        border-bottom: none;
    }
}
	h1{
		line-height:1.4;
	}
	.me_it{
		padding:0px 3px;
	}
    /* Contenedor principal sin bordes generales */
    #faqPEAD {
        background: transparent;
    }

    /* Cada ítem como una tarjeta separada */
    #faqPEAD .accordion-item {
        border: none; /* Quitamos el borde estándar */
        margin-bottom: 15px; /* Separación entre preguntas */
        background-color: #ffffff;
        border-radius: 15px !important; /* Esquinas muy redondeadas */
        box-shadow: 0 4px 12px rgba(0,0,0,0.05); /* Sombra suave */
        transition: all 0.3s ease;
    }

    /* Efecto al pasar el mouse por la tarjeta */
    #faqPEAD .accordion-item:hover {
        box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    }

    /* Botón de la pregunta */
    #faqPEAD .accordion-button {
        padding: 1.5rem;
        font-weight: 600;
        color: #333;
        background-color: transparent;
        border-radius: 15px !important;
        box-shadow: none;
    }

    /* Quitar el color azul predeterminado de Bootstrap al hacer clic */
    #faqPEAD .accordion-button:focus {
        box-shadow: none;
        border-color: rgba(0,0,0,0.1);
    }

    /* Estilo cuando la pregunta está abierta */
    #faqPEAD .accordion-button:not(.collapsed) {
        color: #00b140; /* Color verde para resaltar la pregunta activa */
        background-color: transparent;
        border-bottom: 1px solid #f0f0f0; /* Línea divisoria interna */
        border-bottom-left-radius: 0 !important;
        border-bottom-right-radius: 0 !important;
    }

    /* Ajuste del icono de la flecha */
    #faqPEAD .accordion-button::after {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        background-size: 1.2rem;
    }

    /* Cuerpo de la respuesta */
    #faqPEAD .accordion-body {
        padding: 1.5rem;
        color: #666;
        line-height: 1.7;
        font-size: 0.95rem;
    }


	.imagen-precio{
		width:90%;
	}
    .medidas-container {
        display: flex;
        flex-wrap: wrap;
        gap: 10px; /* Espacio entre botones */
        justify-content: center;
        padding-top: 20px;
        font-family: sans-serif;
    }

    .medida-item {
        width: 65px;
        height: 55px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: #f1f4f7; /* Color gris claro de fondo */
        color: #4a5568; /* Color de texto suave */
        border-radius: 8px;
        font-weight: bold;
        font-size: 18px;
        cursor: pointer;
        transition: all 0.3s ease;
        border: none;
        box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    }

    /* Efecto cuando pasas el mouse */
    .medida-item:hover {
        background-color: #e2e8f0;
        transform: translateY(-2px);
    }

    /* Clase para el botón seleccionado (Verde como el de 36") */
    .medida-item.active {
        background-color: #5cb85c; /* Verde de tu imagen */
        color: white;
        box-shadow: 0 4px 10px rgba(92, 184, 92, 0.4);
    }


    .tabla-especificaciones {
        width: 100%;
       
        margin: 20px auto;
        border-collapse: separate;
        border-spacing: 0;
        border: 1px solid #e0e6ed;
        border-radius: 12px;
        overflow: hidden; /* Para que los bordes redondeados funcionen */
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    }

    .tabla-especificaciones thead tr {
        background-color:rgb(0 116 179); /* Azul de la imagen */
        color: #ffffff;
        text-align: left;
    }

    .tabla-especificaciones th, 
    .tabla-especificaciones td {
        padding: 12px 20px;
        border-bottom: 1px solid #f0f3f7;
		
    }

	.tabla-especificaciones td {
       
		
    }

    /* Estilo para las filas alternadas (Cebreado) */
    .tabla-especificaciones tbody tr:nth-of-type(even) {
        background-color: #f8fafc;
    }

    /* Quitar el borde a la última fila */
    .tabla-especificaciones tbody tr:last-of-type td {
        border-bottom: none;
    }

    .tabla-especificaciones th {
        font-weight: 600;
        font-size: 18px;
    }

    .tabla-especificaciones td {
        font-size: 14px;
        color: #555;
    }

    /* Columna de valores con color un poco más oscuro o azulado opcional */
    .tabla-especificaciones td:last-child {
        color: #666;
    }


	
	@media (min-width: 1400px){
.container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1100px;
		}
	}
	#content  p{
		font-size:19px;
	}
	thead{
		background-color:rgb(0 116 179);
		color:#fff;
	}
	#content ul{
		font-size:19px;
	}
	#content a{
		font-size:19px;
	}
	h1, h2{
		font-size:30px;
		font-weight:600;
		text-transform: uppercase;
	}
	h3{
		text-transform: uppercase;
	}
	.btn-landing{
		margin-top:20px;color:white;background-color:#77c983;padding:14px 35px;font-size:20px;font-family: 'Metropolis';
	}
	.btn-custom:hover{
			background-color:#66b972 !important;
			color:#fff !important;
		}
		.accordion-item, .accordion-button{
			
		}
		.accordion-item {
    	border: none;
		}
	/* Opcionalmente, si hay algún borde interno que deseas eliminar */
button.accordion-button{
	

}
.accordion-header {
    border-bottom: none;
}
/* Establecer el color de fondo deseado cuando el acordeón está activo */
.accordion-item.active {
    background-color: #1abc9c !important; /* Reemplaza #ffffff por el color de fondo deseado */
}

/* Eliminar el resaltado azul en el acordeón activo */
.accordion-item.active:focus, 
.accordion-item.active:hover {
    background-color: #1abc9c !important; /* Reemplaza #ffffff por el color de fondo deseado */
    box-shadow: none;
    border-color: transparent;
}
/* Anula el resaltado azul en el acordeón activo */
.accordion-item.active > .accordion-header > .accordion-button:focus, 
.accordion-item.active > .accordion-header > .accordion-button:hover {
    background-color: #1abc9c; /* Color de fondo deseado */
    box-shadow: none;
    border-color: transparent;
}
.promo-principal{
	background-color:#f0f6f0 !important;
}
.bcheader{
	background-color:#e4ecf3;
	font-size:0.75rem;
	font-weight:bold;
	padding:5px 10px;
	color:#589ac7;
	border-radius:90px;
}
.green_color{
	color:rgb(77 174 80) !important;
}
.blue_color{
	color:#2d70b1;
}
p{
	line-height:1.5 !important;
}
h2{
	font-size:24px;
}
.caja_blanca{
	background-color:#fff;
	padding:20px;
}

@media (max-width: 768px) {
	.main_title{
		font-size:32px !important;
	}
	.container.clearfix{
		width:90%;
		margin:0 auto;
	}	.imagen-precio{
		width:100%;
	}
	.bcheader{
		display:initial;
	background-color:#e4ecf3;
	font-size:0.75rem;
	font-weight:bold;
	padding:5px 10px;
	color:#589ac7;
	border-radius:90px;
	}
	.btn-mobile{
		margin-top:80px !important;
		margin-bottom:10px !important;
	}
	.texto-mobile{
		margin-top:60px;
	}
	.normas-container{
		flex-direction: column;
	}
	.badge-norma {
            /* Cada elemento ocupa todo el ancho disponible */
            width: 100%; 
            justify-content: flex-start; /* Alinea el texto a la izquierda */
            font-size: 12px;
            padding: 10px;
        }
		.principal_mobile{
			padding-top:20px !important;
		}
		.badge-diameter{
			bottom:-20% !important;
		}
}	


