@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;700&family=Source+Sans+Pro:wght@400;600&display=swap');


/* ===== Base Styles ===== */
:root {
    --color-primary: #037da5;
    --color-secondary: #FA9140;
    --color-accent: #91ced3;
    --color-white: #ffffff;
    --color-light: #f8f9fa;
    --color-dark: #343a40;
    --shadow-small: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-large: 0 10px 15px rgba(0, 0, 0, 0.1);

    --font-primary: 'Source Sans Pro', sans-serif;
    --font-heading: 'Poppins', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    color: var(--color-dark);
    line-height: 1.5;
    background-color: var(--color-white);
    padding-top: 100px;
    overflow-x: hidden;
    font-size: 16px;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.5rem;
}

h3 {
    font-size: 1.25rem;
}

.paragraph,
p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Responsive: Mobile */
@media only screen and (max-width: 420px) {
    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.25rem; }
    h3 { font-size: 1.1rem; }
    .paragraph, p { font-size: 0.85rem; }
    li { font-size: 0.9rem; }
    .plan-title-img {
        margin: auto;
        height: 35px;
    }
}

/* Responsive: Tablets y escritorios */
@media only screen and (min-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.7rem; }
    h3 { font-size: 1.3rem; }
    .paragraph, p { font-size: 1rem; }
    li { font-size: 1rem; }
}

/* Responsive: Escritorios grandes */
@media only screen and (min-width: 1000px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 1.9rem; }
    h3 { font-size: 1.5rem; }
    .paragraph, p { font-size: 1rem; }
}


/* --- Buttons --- */
.btn {
    display: inline-block;
    cursor: pointer;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-darken {
    color: var(--color-primary);
    background-color: var(--color-light);
    border: 2px solid var(--color-primary);
}

.btn-darken:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

/* --- Lists --- */
.smile-list {
    list-style: none;
    position: relative;
    padding-left: 30px;
    text-align: left;
  }
  
  .smile-list::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 25px;
    height: 25px;
    background: url('/New_try/img/bullet-smile.png') no-repeat center/contain;
  }












  .container {
    width: 100%;
    /* Set a max-width for your design on large screens */
    max-width: 1200px; 
    /* Center the container horizontally */
    margin-left: auto;
    margin-right: auto;
    /* Add safe-area padding for mobile screens */
    padding-left: 20px;
    padding-right: 20px;
}

/* ======================================================= */
/* ===== ESTILOS ESPECÍFICOS PARA LA PÁGINA "NOSOTROS" ===== */
/* ======================================================= */

.section-identity, .section-marca, .section-commitments{
    margin-top: 5%;
}

/* =========== SECCIÓN 1: HERO / NOSOTROS =========== */

.section-us .container {
    display: flex;
    flex-direction: column; 
    align-items: center;
    /* gap: 1rem; */
  }

.section-us img{
    width: 50%;
    min-width: 350px;
}

.section-us h1 {
    background-color: var(--color-white);
    color: var(--color-primary);
    padding: 1.5rem 5rem;
    border-radius: 20px;
    display: inline-block;
    box-shadow: var(--shadow-medium);
    text-align: center;
}



/* =========== SECCIÓN 2: MISIÓN, VISIÓN Y VALORES =========== */
.section-mision {
    padding-top: 2rem;
}

.section-mision .container {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    text-align: center;
}

.section-mision article {
    flex: 1;
    padding: 0 1rem;
}

.section-mision h2 {
    color: var(--color-dark-text);
    font-weight: 700;
}

/* Bordes verticales */
.vision-column {
    padding-left: 20%;
    padding-right: 20%;
    border-left: 3px solid var(--color-secondary);
    border-right: 3px solid var(--color-secondary);
}


/* =========== SECCIÓN 3: MARCA GUANAJUATO =========== */
/* .section-marca {
    background-color: var(--color-light);
} */

.section-marca .container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
}

.marca-logo img {
    max-width: 180px;
}

.marca-text h2 {
    color: var(--color-logo-gto);
    font-size: 2.2rem;
    margin-bottom: 0.25rem;
}

.marca-text .subtitulo-marca {
    color: var(--color-primary-nosotros);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0;
}

/* =========== SECCIÓN 4: QUIÉNES SOMOS =========== */
.section-identity .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
}

.section-identity h1 {
    color: var(--color-secondary);
    font-weight: 700;
    margin-bottom: 20px;
}

.features-icons {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 3rem;
    gap: 1rem;
}

.feature {
    text-align: center;
}

.feature img {
    height: 90px;
    width: auto;
    max-width: 100%;
}

.feature span {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-primary-nosotros);
}

.contenido-imagen img {
    width: 100%;
    border-radius: 20px;
    display: block;
}


/* =========== SECCIÓN 5: NUESTROS COMPROMISOS =========== */
.section-commitments {
    margin-bottom: 8%;
}

.section-commitments h1 {
    text-align: center;
    color: var(--color-accent);
    margin-bottom: 3rem;
}

.commitments-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.commitment-card {
    background-color: var(--color-accent);
    border-radius: 15px;
    box-shadow: var(--shadow-small);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.commitment-card p {
    background-color: var(--color-primary-nosotros);
    color: var(--color-white);
    padding: 1.5rem 1rem;
    margin: 0;
    text-align: center;
    flex-grow: 1; /* Asegura que todos los textos tengan la misma altura */
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.commitment-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}


/* ======================================================= */
/* ===== ESTILOS RESPONSIVE (MEDIA QUERIES) ===== */
/* ======================================================= */

/* --- Tablets (hasta 992px) --- */
@media (max-width: 992px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.7rem; }

    .section-identity .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contenido-imagen {
        order: -1; /* Mueve la imagen arriba en móvil */
        /* margin-bottom: 2rem; */
    }

    .commitments-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- Móviles (hasta 768px) --- */
@media (max-width: 768px) {
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }
    /* section { padding: 3rem 0; } */
    .section-marca{
        margin-bottom: 0;
    }
    .section-identity, .section-marca, .section-commitments{
        margin-top: 20%;
    }
    

    .section-us {
        height: 300px;
        padding: 0;
    }

    .section-us h1 {
        padding: 1rem 2rem;
        font-size: 1.5rem;
    }

    .section-mision {
        padding-top: 3rem;
    }
    
    .section-mision h2{
        color: var(--color-secondary);
    }
    .section-mision .container {
        flex-direction: column;
        gap: 1rem;
    }

    .vision-column {
        border-left: none;
        border-right: none;
        border-top: 2px solid var(--color-secondary-nosotros);
        border-bottom: 2px solid var(--color-secondary-nosotros);
        padding: 2rem 0;
    }
    
    .section-marca .container {
        flex-direction: column;
        text-align: center;
        /* margin-top: 0; */
    }

    .features-icons {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .commitments-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}