/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #6f4f4b; /* Rojo café */
    color: white;
    text-align: center;
    padding: 20px;
}

/* Título */
.title {
    color: #f5a623; /* Naranja pálido */
    font-size: 4.5rem;
    margin-bottom: 20px;
}

/* Contenedor principal */
.container {
    width: 80%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Imagen de la funcionalidad */
.feature-image-container {
    margin-top: 30px;
}

.feature-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Sección de características */
.feature {
    margin-top: 40px;
}

.feature-item {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    border: 2px solid white;
    border-radius: 12px;
    padding: 15px;
    background-color: rgba(255, 255, 255, 0.1);
}

.feature-item-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 20px;
}

.feature-item-text {
    text-align: left;
}

.feature-item h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.feature-item p {
    font-size: 1rem;
    line-height: 1.5;
}

.feature-item-image {
  max-width: 100%;   /* Limita el ancho de la imagen al 100% del contenedor */
  max-height: 250px; /* Establece un alto máximo de 250px */
  width: auto;       /* El ancho se ajusta automáticamente para mantener la proporción */
  height: auto;      /* La altura se ajusta automáticamente para mantener la proporción */
  object-fit: contain; /* Asegura que la imagen no se distorsione, sino que se ajuste dentro del contenedor */
}
