/* Sección de inicio */
#inicio {
    padding: 4em 2em;
    text-align: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
}

#inicio h1 {
    font-size: 2.5em;
    margin-bottom: 1em;
    color: #000000;
    position: relative;
    display: inline-block;
}

#inicio h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #33bd37;
}

/* Sección de servicios */
.servicios {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2em;
    padding: 4em 2em;
    background-color: #ffffff;
}
/* Media Queries */
@media (max-width: 768px) {

    #inicio h1 {
        font-size: 2em;
    }

    .servicios {
        padding: 2em 1em;
        gap: 1.5em;
    }

}

/*IMAGENES*/
/* Sección de Servicios Principal */
#servicios {
    padding: 50px 20px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

#servicios h1 {
    font-size: 2.2em;
    margin-bottom: 40px;
    color: #000000;
    position: relative;
    padding-bottom: 10px;
}

#servicios h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #33bd37;
}

.contenedor-servicios {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.servicio {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.servicio:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.servicio img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.servicio h3 {
    margin: 20px 0 15px;
    color: #33bd37;
    font-size: 1.4em;
    padding: 0 15px;
}

.servicio p {
    padding: 0 20px 20px;
    text-align: left;
    margin: 0;
    flex-grow: 1;
}

.contenedor-servicios a.ref {
    text-decoration: none;
    color: inherit;
}

/* Secciones de servicios individuales */
.modelo-casa
{
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.modelo-intro{
    text-align: center;
    margin-bottom: 40px;
}

.modelo-intro h1{
    font-size: 2em;
    color: #33bd37;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #33bd37;
    display: inline-block;
}

.modelo-intro h3{
    font-size: 1.4em;
    color: #555;
    margin-bottom: 20px;
}

.modelo-intro p{
    text-align: justify;
    max-width: 800px;
    margin: 0 auto 20px;
    line-height: 1.7;
}
/* Highlight sections */
.highlight {
    background-color: #f0f8ff;
    padding: 30px;
    border-radius: 10px;
    margin: 40px auto;
    max-width: 900px;
    text-align: left;
}

.highlight h3 {
    color: #33bd37;
    margin-top: 0;
    text-align: center;
    font-size: 1.5em;
}

.highlight ul {
    padding-left: 0;
    max-width: 800px;
    margin: 0 auto;
}

.highlight li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    list-style: none;
}

.highlight li::before {
    content: "•";
    color: #33bd37;
    font-size: 24px;
    position: absolute;
    left: 0;
    top: -3px;
}

.highlight li strong {
    color: #33bd37;
}

.imagen {
    margin: 30px auto;
    max-width: 800px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.imagen img {
    width: 100%;
    height: auto;
    display: block;
}
