.page {
    width: 100%;            /* La página ocupa el 100% del ancho disponible */
    max-width: 1200px;       /* El ancho máximo de la página */
    margin: 0 auto;          /* Centrar la página horizontalmente */
    padding: 10px;           /* Espacio interno */
    background-color: #fff;  /* Color de fondo blanco */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Sombra suave para dar relieve */
}

/* Seccion 1 */
.soporte-section {
    background-image: url('images/banner 1.webp'); /* Sustituye esta URL con tu imagen */
      background-size: cover;
      background-position: center;
      height: 650px;
      display: flex;
      justify-content: flex-end;
      color: black;
      text-align: center;
	  position: relative;
}
.content 
        h1 {
            font-size: 50px;
            color: #d32f2f;
			text-align: center;
        }
        h1 span {
            color: #d32f2f;
        }
		 

		
		
.highlight6 {
        
    font-size: 25px;
    color: #444;
    text-align: center;
    background-color: #ffffff; /* Fondo blanco */
    border-top: 2px solid #cccccc; /* Borde superior gris */
    border-bottom: 2px solid #cccccc; /* Borde inferior gris */
    width: 1180px; /* Ancho de 1200px */
	margin-bottom: 40px;
}

       
				
.highlight1 {
    font-size: 18px;
    color: #444;
    text-align:left;
	padding-left: 600px; /* Agrega espacio a la izquierda */
}
.soporte-section {
    background-image: url('images/banner 1.webp'); /* Sustituye esta URL con tu imagen */
    background-size: cover;
    background-position: center;
    height: 650px;
    display: flex;
    justify-content: flex-end;
    color: black;
    text-align: center;
    position: relative;
}

.content h1 {
    font-size: 50px;
    color: #d32f2f;
    text-align: center;
}

h1 span {
    color: #d32f2f;
}

.highlight6 {
    font-size: 25px;
    color: #444;
    text-align: center;
    background-color: #ffffff; /* Fondo blanco */
    border-top: 2px solid #cccccc; /* Borde superior gris */
    border-bottom: 2px solid #cccccc; /* Borde inferior gris */
    width: 1180px;
    max-width: 100%; /* Se ajusta al ancho de la pantalla en dispositivos pequeños */
    margin-bottom: 40px;
    padding: 10px;
}

.highlight1 {
    font-size: 18px;
    color: #444;
    text-align: left;
    padding-left: 600px; /* Espacio a la izquierda */
}

/* Estilos responsivos */
@media screen and (max-width: 1024px) {
    .soporte-section {
        height: 500px; /* Ajuste de altura */
    }

    .content h1 {
        font-size: 40px;
    }

    .highlight1 {
        padding-left: 300px; /* Reduce el espacio en pantallas medianas */
    }
}

@media screen and (max-width: 768px) {
    .soporte-section {
        height: 350px; /* Altura reducida en móviles */
        justify-content: center; /* Centra el contenido */
		background-position: bottom;
    }

    .content h1 {
        font-size: 20px;
    }

    .highlight6 {
        font-size: 10px;
        padding: 8px;
    }

    .highlight1 {
        font-size: 12px;
        padding-left: 20px; /* Reduce el padding en móviles */
        text-align: center;
    }
}

/* Sección 2 */
.banner {
            width: 100%;
            max-height: auto; /* Ajusta la altura según necesidad */
            overflow: hidden;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .banner img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }

/* Responsividad */
@media screen and (max-width: 1024px) {
  section.banner {
    min-height: 280px;
    justify-content: center;
    background-size: cover;
  }
  .banner-content {
    max-width: 90%;
  }
}

@media screen and (max-width: 768px) {
  section.banner {
    min-height: 220px;
    padding: 15px;
  }
  .banner-content {
    font-size: 14px;
  }
}

@media screen and (max-width: 480px) {
  section.banner {
    min-height: 180px;
    padding: 10px;
    text-align: center;
    justify-content: center;
  }
  .banner-content {
    font-size: 12px;
    max-width: 100%;
  }
}


/* section3 */
.servicios {
    text-align: center;
    background-image: url('images/fondo.webp'); /* Sustituye esta URL con tu imagen */
    background-size: cover;
    background-position: center;
    color: white;
    padding: 50px;
}

.resaltado {
    color: #E22;
}

.contenedor-servicios {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columnas fijas */
    gap: 50px;
    margin-top: 50px;
    justify-content: center;
    font-size: 16px;
}

.servicio {
    background: #222;
    padding: 20px;
    border-radius: 100px;
}

.servicio img {
    width: 250px;
    margin-bottom: 10px;
}

h2, h3 {
    font-weight: bold;
}

.highlight2 {
    color: black;
    font-weight: bold;
    font-size: 23px;
}

.highlight5 {
    color: white;
    font-weight: bold;
    font-size: 20px;
}

/* Estilos responsivos */
@media (max-width: 768px) {
    .contenedor-servicios {
        grid-template-columns: 1fr; /* 1 columna en pantallas pequeñas */
        gap: 30px;
    }

    .servicio img {
        width: 200px; /* Ajusta el tamaño de la imagen */
    }

    .servicios {
        padding: 30px; /* Reduce el padding general */
    }
}

@media (max-width: 480px) {
    .servicio img {
        width: 150px; /* Más pequeño en pantallas muy pequeñas */
    }

    .highlight2, .highlight5 {
        font-size: 18px; /* Ajusta el tamaño del texto */
    }

    .servicios {
        padding: 20px; /* Más compacto en pantallas pequeñas */
    }
}


/* Seccion4 */
.servicios {
    text-align: center;
    background-image: url('images/fondo.webp'); /* Sustituye esta URL con tu imagen */
    background-size: cover;
    background-position: center;
    color: white;
    padding: 50px;
}

.resaltado {
    color: #E22;
}

.contenedor-servicios {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columnas fijas */
    gap: 50px;
    margin-top: 50px;
    justify-content: center;
    font-size: 16px;
}

.servicio {
    background: #222;
    padding: 20px;
    border-radius: 100px;
}

.servicio img {
    width: 250px;
    margin-bottom: 10px;
}

h2, h3 {
    font-weight: bold;
}

.highlight2 {
    color: black;
    font-weight: bold;
    font-size: 23px;
}

.highlight5 {
    color: white;
    font-weight: bold;
    font-size: 20px;
}

/* Estilos responsivos */
@media (max-width: 768px) {
    .contenedor-servicios {
        grid-template-columns: 1fr; /* 1 columna en pantallas pequeñas */
        gap: 30px;
    }

    .servicio img {
        width: 200px; /* Ajusta el tamaño de la imagen */
    }

    .servicios {
        padding: 30px; /* Reduce el padding general */
    }
}

@media (max-width: 480px) {
    .servicio img {
        width: 150px; /* Más pequeño en pantallas muy pequeñas */
    }

    .highlight2, .highlight5 {
        font-size: 18px; /* Ajusta el tamaño del texto */
    }

    .servicios {
        padding: 20px; /* Más compacto en pantallas pequeñas */
    }
}

/* Nuevos estilos */
.container {
    padding: 50px 20px;
    background-image: url('images/fondo negro.webp'); /* Reemplaza con la ruta de tu imagen */
    background-size: cover; /* Ajusta la imagen para que cubra todo el contenedor */
    background-position: center; /* Centra la imagen en el contenedor */
    background-repeat: no-repeat; /* Evita que la imagen se repita */
}

.highlight3 {
    color: #E53935;
    margin-bottom: 10px;
    text-align: center;
    font-size: 40px; /* Reducido para ajustarse */
}

.underline {
    width: 80%;
    height: 7px;
    background-color: #E53935;
    margin: 0 auto 40px auto;
    border-radius: 5px;
}

.benefits {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 100px;
}

.benefit {
    position: relative;
    width: var(--circle-size, 450px);
    height: var(--circle-size, 450px);
    background-color: black;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px;
    box-shadow: 10px 10px 0 #E53935;
    text-align: center;
    overflow: hidden; /* Evita el desbordamiento */
    box-sizing: border-box; /* Asegura que el padding no aumente el tamaño */
}

.benefit img {
    max-width: 100%;
    max-height: 150px;
    object-fit: contain; /* Ajusta la imagen dentro del contenedor */
}

.benefit .highlight {
    color: #E53935;
    font-weight: bold;
    font-size: 18px; /* Reducido para que no desborde */
    word-wrap: break-word; /* Rompe el texto si es muy largo */
}

.highlight4 {
    color: white;
    font-weight: bold;
    font-size: 14px; /* Reducido para ajustarse */
}

/* Estilos responsivos para beneficios */
@media (max-width: 768px) {
    .benefit {
        width: var(--circle-size, 400px);
        height: var(--circle-size, 400px);
        padding: 20px;
    }

    .benefit img {
        max-height: 40px;
    }

    .highlight3 {
        font-size: 30px;
    }

    .benefit .highlight {
        font-size: 10px; /* Más pequeño en pantallas medianas */
    }

    .highlight4 {
        font-size: 8px;
    }
}

@media (max-width: 480px) {
    .benefit {
        width: var(--circle-size, 320px);
        height: var(--circle-size, 320px);
        padding: 20px;
    }

    .benefit img {
        max-height: 60px;
    }

    .highlight3 {
        font-size: 24px;
    }

    .underline {
        height: 5px;
    }

    .benefit .highlight {
        font-size: 12px; /* Más pequeño en pantallas pequeñas */
    }

    .highlight4 {
        font-size: 12px; /* Ajustado para pantallas muy pequeñas */
    }
}

/* SECCION_5 */

.poliza-beneficios {
    background: #fff;
}

.container_ben {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.content_ben {
    max-width: 600px;
    width: 50%; /* Ocupa el 50% del ancho */
    margin-left: auto; /* Alinea el contenido a la derecha */
    margin-top: 15%;
}

h2 {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    position: relative; /* Necesario para la línea */
}

h2::after {
    content: "";
    display: block;
    width: 100%;
    height: 8px; /* Grosor de la línea */
    background-color: #e03a3e; /* Color rojo */
    margin-top: 10px; /* Espaciado entre el texto y la línea */
    border-radius: 10px;
}

.highlight_ben {
    color: #e03a3e;
}

p {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #333;
    font-weight: normal;
}

.image_ben {
    text-align: left;
    background-image: url('images/Ingeniero banner.webp'); /* Sustituye esta URL con tu imagen */
    background-size: cover;
    background-position: center;
    height: 625px;
}

/* Diseño responsivo: Imagen debajo del texto en pantallas pequeñas */
@media (max-width: 768px) {
    .container_ben {
        flex-direction: column; /* Apila los elementos verticalmente */
		padding:15px;
    }

    .content_ben {
        width: 100%; /* Ocupa todo el ancho */
        margin-left: 0; /* Elimina la alineación derecha */
        margin-top: 0; /* Ajusta el margen superior */
    }

    .image_ben {
        width: 100%; /* Ocupa todo el ancho */
        height: 850px; /* Ajusta la altura de la imagen */
        background-image: url('images/Ingeniero banner_mov.webp'); /* Nuevo fondo en modo responsivo */
    }
}





