    body {
        margin: 0;
        font-family: Arial, sans-serif;
        line-height: 1.6;
    }

    .container {
        width: 90%;
        max-width: 1000px;
        margin: auto;
        padding: 40px 0;
    }

    h1, h2 {
        color :#003263;
        margin-bottom: 20px;
    }
    p {
        color :#003263;
        font-size: 18px;
        
    }

    .titulo-principal {
        text-align: center;
        color :#003263;
        font-size: 2rem;
        margin-bottom: 40px;
    }

    /* SECCIÓN 2 COLUMNAS */
    .dos-columnas {
        display: flex;
        gap: 40px;
        align-items: center;
        margin-bottom: 60px;
    }

    .columna {
        flex: 1;
    }

    .dos-columnas img {
        width: 90%;
        border-radius: 10px;
    }

    /* SECCIÓN UNA COLUMNA */
    .una-columna {
        text-align: justify;
        font-size: 18px;
        max-width: 1000px;
        margin: auto;
        margin-bottom: 60px;
    }

    /* TABS */
    .tabs {
        text-align: center;
        margin-bottom: 30px;
    }

    .tab-button {
      color: white;
        padding: 12px 25px;
        border: none;
        cursor: pointer;
        font-size: 16px;
        background: #003263;
        margin: 0 5px;
        border-radius: 5px;
        transition: 0.3s;
        margin-bottom: 5px;
    }
    .tab-button:hover{
      background: #00a886;
    }
    .tab-button.active {
        background: #ff5722;
        color: white;
    }

    .tab-content {
        display: none;
    }

    .tab-content.active {
        display: block;
    }

    /* GRID */
    .grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .card {
      color :#003263;
        background: #f4f4f4;    
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        transition: 0.3s;
         
    }
    .card p {
      text-align: left;
      font-size: 18px;
         
    }

    .card:hover {
        transform: translateY(-5px);
    }
/* ===== SECCIÓN INFO TABS ===== */

.info-tabs {
    text-align: center;
    margin-bottom: 60px;
}

.titulo-seccion {
    margin-bottom: 25px;
}

/* Botones */
.tab-btn-info {
   color: white;
        padding: 12px 25px;
        border: none;
        cursor: pointer;
        font-size: 16px;
        background: #003263;
        margin: 0 5px;
        border-radius: 5px;
        transition: 0.3s;
}

.tab-btn-info:hover {
    background: #00a886;
  
}

.tab-btn-info.active {
     background: #ff5722;
        color: white;
}

/* Contenido */
.tab-content-info {
    display: none;
    margin-top: 30px;
}

.tab-content-info.active {
    display: block;
}

/* Tarjeta */
.card-info {
    max-width: 1000px;
    margin: auto;
    color :#003263;
    background: #f4f4f4;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    text-align: left;
}
.contacto {
    background:white; /* Cambia este color si quieres */
    color: #003263;
    padding: 20px 20px;
}

.contacto-container {
    max-width: 1000px;

    margin: auto;
    text-align: center;
}

.contacto-titulo {
    margin-bottom: 18px;
}

.contacto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 30px;
}

.contacto-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
    transition: 0.3s;
}

.contacto-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.contacto-card h3 {
    margin-bottom: 15px;
}
/*cintillo*/
.beneficios-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.beneficios-titulo {
    font-size: 18px;
    letter-spacing: 1px;
    font-weight: 600;
    color: #0b3c6d;
    margin-bottom: 30px;
}

.beneficios-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap; /* Para que sea responsivo */
}

.beneficio-card {
  /*  flex: 1;*/
    flex: 0 0 250px;   /* ancho fijo */ 
    min-width: 200px;
    display: flex;
    align-items: center;
    background: #ffffff;
    padding: 18px 10px;
    border-radius: 14px;
    border-top: 4px solid #00a886;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.beneficio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 22px #ff5722;
}

.icono-circulo {
    width: 50px;
    height: 50px;
    background-color: #f4f6fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.icono-circulo img {
    width: 90px;
    height: auto;
    object-fit:contain;
}

.beneficio-card span {
    font-size: 18px;
    font-weight: 500;
    color: #0b3c6d;
}




    /* RESPONSIVE */
    @media (max-width: 768px) {
        .dos-columnas {
            flex-direction: column;
        }
        .tab-button {
      margin-bottom: 5px;
        }

        .tab-btn-info {
            margin-bottom: 5px;
        }
       
    }
