.Structural_sec {
    width: 100%;
    padding: 90px 20px;
    font-family: 'Open Sans', sans-serif;
}

.StructuralWrapper {
    max-width: 1100px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
}

.StructuralText {
    flex: 1 1 50%;
    color: #333;
}

.StructuralText h2 {
    font-size: 35px;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 20px;
    font-weight: 400;
}

.StructuralText p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

.StructuralImage {
    flex: 1 1 45%;
}

.StructuralImage img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.Line {
    width: 100px;
    height: 2px;
    background-color: #ff9408;
    margin: 15px auto 40px auto;
    border-radius: 2px;
    margin-left: 60px;
}


/* Responsivo */
@media (max-width: 768px) {
    .StructuralWrapper {
        flex-direction: column;
        text-align: center;
    }

    .StructuralText,
    .StructuralImage {
        flex: 1 1 100%;
    }

    .StructuralText h2 {
        font-size: 32px;
    }
}

/* <<< Galería >>> */
.Gallery_sec {
    padding: 10px 0px 80px;
    text-align: center;
}

.Gallery_container h2 {
    font-size: 36px;
    font-family: 'Oswald', sans-serif;
    color: #222;
    font-weight: 400;
}

.line-divider {
    width: 80px;
    height: 4px;
    background: #ff9408;
    margin: 10px auto 30px;
}

.Gallery_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.Gallery_item {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.Gallery_item:hover {
    transform: scale(1.03);
}

.Gallery_item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    aspect-ratio: 4 / 3;
}

.Gallery_item p {
    margin: 10px;
    font-weight: 600;
    font-size: 15px;
    color: #333;
    text-align: center;
}

/* Modal */
.Gallery_modal {
    display: none;
    position: fixed;
    z-index: 999;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 30px 20px;
    text-align: center;
}

.Gallery_modal_img {
    max-width: 90%;
    max-height: 70vh;
    object-fit: contain;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    margin-bottom: 20px;
}

.Gallery_modal_desc {
    color: #fff;
    font-size: 1.2rem;
    max-width: 90%;
    word-wrap: break-word;
    line-height: 1.5;
}

.Gallery_close {
    position: absolute;
    top: 25px;
    right: 30px;
    color: #fff;
    font-size: 2.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.Gallery_close:hover {
    transform: rotate(90deg);
}

/* Responsive */
@media (max-width: 768px) {
    .Gallery_modal_img {
        max-width: 100%;
        max-height: 60vh;
    }

    .Gallery_modal_desc {
        font-size: 1rem;
    }

    .Gallery_close {
        font-size: 2rem;
        top: 15px;
        right: 20px;
    }
}

/* <<< Cotización >>> */
.Quote_sec {
    background: #1f1f1f;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
}

.Quote_wrapper {
    max-width: 1000px;
    margin: auto;
}

.Quote_text h2 {
    font-size: 36px;
    font-family: 'Oswald', sans-serif;
    margin-bottom: 15px;
    color: #ff9408;
}

.Quote_text p {
    font-size: 17px;
    margin-bottom: 30px;
    color: #ddd;
}

.quote-button {
    background-color: #ff9408;
    color: #000;
    font-weight: 700;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    transition: background 0.3s ease;
}

.quote-button:hover {
    background-color: #ffa733;
    color: #000;
}