.banner {
    width: 100%;
    height: 80svh;
    background-color: #afc2cd81;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}


#banner {
    position: relative;
    width: 100%;
    height: 80svh;
    background-image: url(/static/Img/Banner.png);  
    background-size: cover; 
    background-position: center;
}

.banner h1{
    font-size: 50px;
    font-weight: 700;
    color: #fe6800;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-align: center;
}

.banner p{
    font-size: 20px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 20px;
    text-align: center;
}

.wave {
    position: absolute;
    bottom: 20%;
    left: 0;
}

#info {
    background-color: fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;
    padding-top: 80px;
}

.info {
    width: 100%;
    height: 200px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    padding: 50px 0;
}

.info h2{
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    color: #fe6800;
    text-transform: uppercase;
    padding:  0 10px;
}

.info p {
    font-size: 15px;
    font-weight: 300;
    width: 100%;
    text-align: center;
    color: #000;
    padding:  0 10px;
}

#services{
    background-color: #fff;
    width: 100%;
    overflow: hidden;
}

.services{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 50px 0;
}

.services-gallery{
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    flex-direction: column;
}
.service {
    width: 100%;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    margin: 20px 0 20px 20px;
    padding: 0 0 0 20px;

}

.service img {
    width: 40%;
    height: 100%;
    border-radius: 5%;
    border-bottom: #fe6800 5px solid;
    border-left: #fe6800 5px solid;
    object-fit: cover;
}

.service.two img {
    border-right: #fe6800 5px solid;
}

.service.two {
    flex-direction: row-reverse;
    padding: 0 20px 0 0;
    margin: 20px 20px 20px 0;
}

.service-list {
    width: 60%;
    height: 100%;
    display: flex;
    justify-content:first baseline;
    align-items: center;
    flex-direction: column;
    padding: 20px;
}

.service-list h3 {
    margin-bottom: 20%;
    font-size: 24px;
    font-weight: 700;
    color: #000;
    text-transform: uppercase;
    border-bottom: #fe6800 2px solid;
}

.service-list ul {
    height: 70%;
    list-style: none;
    text-align: justify;
    padding: 0;
}

.service-list li::before{
    content: '>';
    color: #fe6800;
}

.service-list ul li {
    font-size: 15px;
    font-weight: 300;
    color: #000;
}   

#gallery {
    background-color: #afc2cd81;
    width: 100%;
    overflow: hidden;
    padding: 50px 0;
}

#gallery h2 {
    font-size: 30px;
    font-weight: 700;
    text-align: center;
    color: #fe6800;
    text-transform: uppercase;
    padding:  0 10px;
}

.gallery-container {
    display: flex;
    flex-wrap: wrap;

    justify-content: center;
    align-items: center;

    padding: 20px;
    margin: auto;    
}

.gallery-box {
    width: 30%;
    height: 500px;
    position: relative;
    margin: 10px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery-box:hover {
    transform: scale(1.02);
}

.gallery-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.gallery-hover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(6, 52, 83, 0.9);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 10px;
}

.gallery-box:hover .gallery-hover {
    opacity: 1;
}

.gallery-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fe6800;
    margin-bottom: 10px;
    text-align: center;
}

.gallery-desc {
    font-size: 0.9rem;
    margin-bottom: 10px;
    text-align: center;
    line-height: 1.4;
}

.gallery-date {
    font-size: 0.8rem;
    color: #ccc;
    text-align: center;
}

.gallery-more {
    background: linear-gradient(135deg, #063453 0%, #0a4a6b 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-more:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(254, 104, 0, 0.2);
}

.more-content {
    text-align: center;
    color: white;
    padding: 20px;
}

.more-content i {
    font-size: 3rem;
    color: #fe6800;
    margin-bottom: 15px;
    display: block;
}

.more-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fe6800;
}

.more-content p {
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.4;
}

.more-btn {
    background: linear-gradient(135deg, #fe6800 0%, #ff8533 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.more-btn:hover {
    background: linear-gradient(135deg, #e55a00 0%, #ff7a1a 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(254, 104, 0, 0.3);
}

.enf {
    width: 40%;
    height: 600px;
}

@media (width < 1000px) {
    #services {
        padding: 20px;
        background-color: #afc2cd81;
    }

    .service img {
        display: none;
    }

    .service-list {
        width: 100%;
    }

    .service-list h3 {
        margin-bottom: 10%;
        font-size: 20px;
    }

    .service {
        margin: 10px;
        padding: 5px;
        height: auto;
    }

    .service-list ul li {
        font-size: 13px;
        font-weight: 300;
        color: #000;
    }   

    #gallery {
        padding: 20px;
        background-color: #fff;
    }

    .gallery-box, .enf {
        height: 300px;
    }
}

@media (width < 768px) {
    .gallery-box, .enf {
        width: 100%;
    }
}

/* Estilos para el mensaje de no hay imágenes */
.no-images-message {
    width: 100%;
    max-width: 600px;
    text-align: center;
    padding: 60px 20px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(6,52,83,0.10);
    margin: 20px auto;
}

.no-images-message i {
    font-size: 4rem;
    color: #fe6800;
    margin-bottom: 20px;
    display: block;
}

.no-images-message h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #063453;
    margin-bottom: 15px;
}

.no-images-message p {
    font-size: 1rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* Responsive para el mensaje de no hay imágenes */
@media (max-width: 768px) {
    .no-images-message {
        padding: 40px 15px;
        margin: 10px;
    }
    
    .no-images-message i {
        font-size: 3rem;
    }
    
    .no-images-message h3 {
        font-size: 1.2rem;
    }
    
    .no-images-message p {
        font-size: 0.9rem;
    }
}