body {
    background-color: #162d3f;
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}
.profile-container {
    width: 100%;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.profile-header {


    color: white;
    text-align: center;
    padding: 25px 15px 0 15px;

}
.profile-header h1 {
    font-size: 36px;
    margin: 0;
    font-weight: 600;
}
.profile-header p {
    font-size: 16px;
    margin-top: 10px;
}
.profile-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 20px auto;
    border: 5px solid #ff4040;
}
.contact-info {
    text-align: center;
    background-color: #ff4040;
    color: white;
    padding: 25px 20px;
    border-radius: 8px;
    margin-top: 30px;
}
.contact-info h2 {
    margin: 0;
    font-size: 24px;
    font-weight: bold;
}
.contact-info p {
    font-size: 16px;
    margin-top: 8px;
}
.services {
    padding: 20px 10px;

    background-color: #f9f9f9;
    text-align: center;
    border-radius: 10px;
}
.services h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
}
.service-item {
    display: inline-block;
    width: 30%;
    margin: 15px;
    padding: 20px;
    background-color:rgba(209, 209, 209, 0.208);
    border-radius: 8px;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.306);
    text-align: center;
    /*transition: transform 0.3s ease, box-shadow 0.3s ease;*/
}
.service-item h3 {
    color: #ff4040;
    font-size: 20px;
    margin-top: 10px;
}
.service-item p {
    font-size: 14px;
    color: #555;
    margin-top: 10px;
}
.service-item i {
    font-size: 35px;
    color: #ff4040;
    margin-bottom: 10px;
}
/*.service-item:hover {*/
/*    transform: scale(1.05);*/
/*    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);*/
/*}*/

.lightbox {

position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.8);
display: none;
justify-content: center;
align-items: center;
z-index: 1000;

}



/* Imagen del Lightbox */

.lightbox-img {

max-width: 90%;
max-height: 90%;
object-fit: contain;
margin: 0 auto;

}



/* Botón de cerrar */

.close {

position: absolute;
top: 10px;
right: 20px;
color: white;
font-size: 40px;
cursor: pointer;
z-index: 11;

}


/* Responsiveness */
@media (max-width: 768px) {
    .service-item {
        width: 90%;
        margin: 0;
        display: block;
        margin-bottom: 20px;
    }
    .profile-header h1 {
        font-size: 32px;
    }
    .profile-header p {
        font-size: 14px;
    }
    .contact-info h2 {
        font-size: 20px;
    }
    .contact-info p {
        font-size: 14px;
    }
}

/* Call Button */
.button-contact {
    background-color: #ff4040;
    color: white;
    font-size: 18px;
    padding: 15px 25px;
    border-radius: 30px;
    text-decoration: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}
.button-contact:hover {
    background-color: #ff3333;
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
}

/* Footer */
footer {
    background-color: #162d3f;
    color: white;
    text-align: center;
    padding: 20px 0;
    position: relative;
    bottom: 0;
    width: 100%;
    font-size: 14px;
}
footer p {
    margin: 5px 0;
}
.tittle{

}
.nav{
    display: flex;
    justify-content: start;
    align-items: end;
    background-color: rgba(255, 0, 0, 0);
    padding: 10px;
}
a{
    color: white;
    text-decoration: none;
}
