/* industria.css */

/* Hero: imagen al ras del menú, ancho completo, sin espacios */
.ind-hero-wrapper {
    width: 100%;
    padding: 0;
    margin: 0;
    line-height: 0;
}

.ind-hero-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.ind-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

/* Grid horizontal: texto izquierda, imagen derecha */
.ind-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ind-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #334155;
}

.ind-text p {
    margin-bottom: 18px;
}

.ind-text ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.ind-text ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: #334155;
    font-weight: 600;
}

.ind-text ul li::before {
    content: "💧";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1rem;
}

.container-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.ind-info-section {
    padding: 100px 20px;
    background-color: #fdface; /* Light yellow background */
}

.ind-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.ind-info-col h3 {
    color: #1e3a8a;
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 25px;
    margin-top: 40px;
    text-transform: uppercase;
    line-height: 1.3;
}

.ind-info-col h3:first-child {
    margin-top: 0;
}

.ind-info-col p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.ind-info-col ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 25px;
}

.ind-info-col ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 15px;
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.8;
}

.ind-info-col ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #475569;
    font-weight: 800;
    font-size: 1.5rem;
    line-height: 1.2;
}

.ind-info-col ul li strong {
    color: #334155;
    font-weight: 700;
}

.ind-img-col {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ind-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    display: block;
    object-fit: contain;
}

.ind-cta-blue {
    background-color: #1e3a8a; /* Color entero azul */
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.ind-cta-blue h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.ind-cta-blue p {
    font-size: 1.3rem;
    color: #bfdbfe;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.ind-btn {
    background-color: #ffffff;
    color: #1e3a8a;
    padding: 18px 50px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.ind-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.2);
}

/* Floating calc button */
.floating-calc-ind {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #1e3a8a;
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    cursor: pointer;
    z-index: 1000;
    border: none;
    transition: transform 0.3s;
}
.floating-calc-ind:hover {
    transform: scale(1.1);
}

@media (max-width: 900px) {
    .ind-grid {
        grid-template-columns: 1fr;
    }
}
