/* HERO */
.hero {
    background: linear-gradient(135deg, #4F9DFF 0%, #1E88E5 100%);
    color: white;
    padding: 100px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 20px;
    margin-bottom: 30px;
}

/* SOBRE NOSOTROS */
.about {
    background-color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

.about h2 {
    font-size: 36px;
    color: #2D3436;
    margin-bottom: 20px;
}

.about p {
    font-size: 18px;
    color: #7B8A8B;
}

/* SERVICIOS DESTACADOS */
.services {
    background-color: #F4F6F8;
    padding: 80px 20px;
    text-align: center;
}

.services h2 {
    font-size: 36px;
    color: #2D3436;
    margin-bottom: 20px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.service-list li {
    font-size: 18px;
    color: #4B5563;
    margin-bottom: 15px;
}

/* CTA FINAL */
.cta {
    background-color: #4F9DFF;
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

/* CONTAINER GENERAL */
.container {
    max-width: 1100px;
    margin: 0 auto;
}

/* HERO */
.hero {
    background: linear-gradient(135deg, #4F9DFF 0%, #1E88E5 100%);
    color: white;
    padding: 30px 10px;
    text-align: center;
    width: 100%;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap; /* Para que en móvil se acomode */
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.hero-text h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 20px;
    margin-bottom: 30px;
    color: #ffffff;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px; /* opcional para que se vea más suave */
}


/* SOBRE NOSOTROS */
.about {
    background-color: #ffffff;
    padding: 80px 20px;
    width: 100%;
    display: flex; /* Flexbox para poner imagen y texto lado a lado */
    align-items: center;
    justify-content: center;
    flex-wrap: wrap; /* Para que en móvil se acomode */
}

.about-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
    padding: 20px;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px; /* Opcional para suavizar bordes */
}

.about .container {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    text-align: left;
}

.about h2 {
    font-size: 36px;
    color: #2D3436;
    margin-bottom: 20px;
}

.about p {
    font-size: 18px;
    color: #7B8A8B;
}


/* SERVICIOS */
.services {
    background-color: #F4F6F8;
    padding: 80px 20px;
    text-align: center;
    width: 100%;
}

.services h2 {
    font-size: 36px;
    color: #2D3436;
    margin-bottom: 20px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.service-list li {
    font-size: 18px;
    color: #4B5563;
    margin-bottom: 15px;
}

/* CTA FINAL */
.cta {
    background-color: #4F9DFF;
    color: white;
    padding: 80px 20px;
    text-align: center;
    width: 100%;
}

.cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

/* CONTAINER GENERAL */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}
