/*=============== VARIABLES CSS ===============*/
:root {
    --header-height: 5rem;

    /*========== Colors ==========*/
    /* Color mode HSL(hue, saturation, lightness) */
    --first-color: hsl(153, 71%, 15%);      /* Verde oscuro principal */
    --first-color-alt: hsl(153, 71%, 10%);  /* Verde más oscuro */
    --first-color-light: hsl(153, 40%, 40%); /* Verde más claro para texto */
    --second-color: hsl(44, 98%, 50%);      /* Dorado */
    --title-color: hsl(153, 71%, 15%);      /* Títulos en verde oscuro */
    --text-color: hsl(153, 71%, 15%);       /* Texto en verde oscuro */
    --text-color-light: hsl(153, 40%, 60%); /* Texto más claro */
    --body-color: #ffffff;                  /* Fondo blanco */
    --container-color: #ffffff;             /* Color de contenedor blanco */

    /*========== Font and typography ==========*/
    --body-font: 'Poppins', sans-serif;

    /* .5rem = 8px, 1rem = 16px ... */
    --big-font-size: 2rem;
    --h1-font-size: 1.5rem;
    --h2-font-size: 1.25rem;
    --h3-font-size: 1.125rem;
    --normal-font-size: .938rem;
    --small-font-size: .813rem;
    --smaller-font-size: .75rem;

    /*========== Font weight ==========*/
    --font-medium: 500;
    --font-semi-bold: 600;

    /*========== Margenes Bottom ==========*/
    --mb-0-25: .25rem;
    --mb-0-5: .5rem;
    --mb-0-75: .75rem;
    --mb-1: 1rem;
    --mb-1-5: 1.5rem;
    --mb-2: 2rem;
    --mb-2-5: 2.5rem;
    --mb-3: 3rem;

    /*========== z index ==========*/
    --z-tooltip: 10;
    --z-fixed: 100;
    --z-modal: 1000;

    /* Añadir variable RGB para el color principal */
    --first-color-rgb: 23, 74, 25;  /* Equivalente RGB del color verde principal */
}

/* Responsive typography */
@media screen and (min-width: 968px) {
    :root {
        --big-font-size: 3rem;
        --h1-font-size: 2.25rem;
        --h2-font-size: 1.5rem;
        --h3-font-size: 1.25rem;
        --normal-font-size: 1rem;
        --small-font-size: .875rem;
        --smaller-font-size: .813rem;
    }
}

/*=============== BASE ===============*/
* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    background-color: var(--body-color);
    color: var(--text-color);
    padding-top: 0 !important;
    margin-top: 0 !important;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    color: var(--title-color);
    font-weight: var(--font-semi-bold);
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
}

/*=============== REUSABLE CSS CLASSES ===============*/
.section {
    padding: 2rem 0 4rem;
}

.section__title {
    font-size: var(--h1-font-size);
    color: var(--title-color);
    text-align: center;
    margin-bottom: var(--mb-3);
}

.container {
    max-width: 968px;
    margin-left: var(--mb-1-5);
    margin-right: var(--mb-1-5);
}

/*=============== HEADER & NAV ===============*/
.header {
    background-color: var(--body-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    width: 100%;
    z-index: var(--z-fixed);
}

.nav__logo-img {
    width: 3.5rem;
    height: 3.5rem;
    object-fit: cover;
    border-radius: 50%;
}

.navbar-nav .nav-link {
    color: var(--text-color);
    font-weight: var(--font-medium);
    transition: color 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--first-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 50%;
}

.navbar-nav .nav-link:hover {
    color: var(--first-color);
}

/* Ajuste para el contenido principal debido al header fijo */
.main {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* Estilos para el botón del menú móvil */
.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: none;
    position: relative;
    width: 24px;
    height: 24px;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background-color: var(--first-color);
    transition: all 0.3s ease;
    left: 0;
}

.navbar-toggler-icon::before {
    top: 8px;
}

.navbar-toggler-icon::after {
    bottom: 8px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
    transform: rotate(45deg);
    top: 11px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
    transform: rotate(-45deg);
    bottom: 11px;
}

/* Estilos para el menú móvil */
@media screen and (max-width: 991px) {
    .navbar-collapse {
        position: fixed;
        top: 70px; /* Altura del navbar */
        left: 0;
        right: 0;
        background-color: #181818;
        padding: 1rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .navbar-collapse.show {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .navbar-nav {
        padding: 1rem 0;
    }

    .nav-item {
        margin: 0.5rem 0;
    }

    .nav-link {
        color: #fff !important;
        font-size: 1rem !important;
        padding: 0.75rem 1rem !important;
        text-align: center;
        border-radius: 0.5rem;
        transition: background-color 0.3s ease;
    }

    .nav-link:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }

    .navbar-toggler {
        padding: 0.5rem;
        border: none;
        background: transparent !important;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }

    .navbar-toggler-icon {
        background-image: none;
        position: relative;
        width: 24px;
        height: 2px;
        background-color: #fff;
        display: block;
        transition: all 0.3s ease;
    }

    .navbar-toggler-icon::before,
    .navbar-toggler-icon::after {
        content: '';
        position: absolute;
        width: 24px;
        height: 2px;
        background-color: #fff;
        transition: all 0.3s ease;
    }

    .navbar-toggler-icon::before {
        top: -8px;
    }

    .navbar-toggler-icon::after {
        bottom: -8px;
    }

    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
        background-color: transparent;
    }

    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::before {
        transform: rotate(45deg);
        top: 0;
    }

    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon::after {
        transform: rotate(-45deg);
        bottom: 0;
    }

    /* Ajustes generales */
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }

    /* Ajustes para la sección hero */
    .custom-hero-section {
        min-height: 60vh;
        padding-top: 70px;
    }

    .hero__title {
        font-size: 2rem !important;
        margin-bottom: 1rem;
    }

    .hero__description {
        font-size: 1.1rem !important;
        margin-bottom: 1.5rem;
    }

    /* Ajustes para la sección about */
    .about__list {
        gap: 1rem;
    }

    .about__item {
        margin-bottom: 1rem;
    }

    .about__description {
        font-size: 1rem;
        text-align: center;
        padding: 0 1rem;
    }

    /* Ajustes para la sección vision */
    .vision__content {
        flex-direction: column;
    }

    .vision__description {
        font-size: 1rem;
        text-align: center;
        padding: 0 1rem;
        margin-bottom: 2rem;
    }

    .vision__content img {
        max-width: 100%;
        height: auto;
        margin: 0 auto;
    }

    /* Ajustes para la sección objective */
    .objective__content {
        flex-direction: column;
    }

    .objective__description {
        font-size: 1rem;
        text-align: center;
        padding: 0 1rem;
        margin-bottom: 2rem;
    }

    .objective__content img {
        max-width: 100%;
        height: auto;
        margin: 0 auto;
    }

    /* Ajustes para la sección contact */
    .contact .card {
        margin-bottom: 1rem;
    }

    .contact .btn {
        width: 100%;
        margin-top: 0.5rem;
    }

    .contact .social-buttons {
        gap: 0.5rem;
    }

    .contact .social-buttons .btn {
        width: 40px;
        height: 40px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Estilos para el menú en desktop */
@media screen and (min-width: 992px) {
    .navbar-nav {
        gap: 0.5rem;
    }

    .nav-link {
        color: #fff !important;
        font-size: 0.9rem !important;
        padding: 0.5rem 1rem !important;
        position: relative;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: 0;
        left: 50%;
        background-color: #fff;
        transition: all 0.3s ease;
        transform: translateX(-50%);
    }

    .nav-link:hover::after {
        width: 50%;
    }
}

/*=============== HOME ===============*/
.hero {
    padding-top: 5.5rem;
    padding-bottom: 2.5rem;
    background: linear-gradient(160deg, var(--first-color-light) 0%, var(--first-color) 100%);
}

.hero__container {
    text-align: center;
    row-gap: 2.5rem;
}

.hero__title {
    font-size: var(--big-font-size);
    color: var(--container-color);
    margin-bottom: var(--mb-0-75);
}

.hero__description {
    color: var(--container-color);
    margin-bottom: var(--mb-2);
}

/*=============== BUTTONS ===============*/
.button {
    display: inline-block;
    background-color: var(--first-color);
    color: var(--container-color);
    padding: 1rem 1.75rem;
    border-radius: .5rem;
    font-weight: var(--font-medium);
    transition: .3s;
}

.button:hover {
    background-color: var(--first-color-alt);
}

.button--flex {
    display: inline-flex;
    align-items: center;
    column-gap: .5rem;
}

.button__icon {
    font-size: 1.25rem;
}

/*=============== CONTACT ===============*/
.contact__container {
    row-gap: 3.5rem;
}

.contact__content {
    display: grid;
    row-gap: 2rem;
}

.contact__form {
    display: grid;
    row-gap: 2rem;
}

.contact__inputs {
    display: grid;
    row-gap: 2rem;
}

.contact__content {
    position: relative;
    height: 3rem;
    border-bottom: 1px solid var(--text-color-light);
}

.contact__input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 1rem 1rem 1rem 0;
    background: none;
    color: var(--text-color);
    border: none;
    outline: none;
    z-index: 1;
}

.contact__label {
    position: absolute;
    top: .75rem;
    width: 100%;
    font-size: var(--small-font-size);
    color: var(--text-color-light);
    transition: .3s;
}

.contact__input:focus + .contact__label {
    top: -.75rem;
    left: 0;
    font-size: var(--smaller-font-size);
    z-index: 10;
    color: var(--first-color);
}

/*=============== FOOTER ===============*/
.footer {
    padding-top: 2rem;
    background-color: var(--first-color-light);
}

.footer__container {
    row-gap: 3.5rem;
    padding-bottom: 2rem;
}

.footer__title {
    font-size: var(--h2-font-size);
    margin-bottom: var(--mb-1-5);
}

.footer__social {
    display: flex;
    justify-content: center;
    column-gap: 1.5rem;
}

.footer__social-link {
    display: inline-flex;
    background-color: var(--first-color);
    color: var(--container-color);
    padding: .5rem;
    border-radius: .5rem;
    font-size: 1.25rem;
    transition: .3s;
}

.footer__social-link:hover {
    background-color: var(--first-color-alt);
}

/*=============== WHATSAPP BUTTON ===============*/
.whatsapp-button {
    position: fixed;
    bottom: 2.5rem;
    right: 2.5rem;
    background-color: #25D366;
    color: var(--container-color);
    padding: 1rem;
    border-radius: 50%;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
    z-index: var(--z-tooltip);
}

.whatsapp-button:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

/*=============== ABOUT ===============*/
.about__text {
    margin-bottom: var(--mb-3);
}

.about__description {
    color: var(--text-color);
}

.about__item {
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: var(--body-color);
}

.about__item:hover {
    transform: translateY(-5px);
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15)!important;
}

.about__icon-wrapper {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(var(--first-color-rgb), 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.about__icon-wrapper i {
    font-size: 1.5rem;
    color: var(--first-color);
}

.card-title {
    color: var(--title-color);
    font-weight: var(--font-semi-bold);
    margin-bottom: 0.5rem;
}

.card-text {
    color: var(--text-color);
    line-height: 1.6;
}

.custom-tooltip {
    visibility: hidden;
    opacity: 0;
    background: var(--first-color);
    color: #fff;
    border-radius: 4px;
    padding: 4px 10px;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
    font-size: 0.9rem;
    transition: opacity 0.2s;
    pointer-events: none;
    white-space: nowrap;
}

.about__item:hover .custom-tooltip {
    visibility: visible;
    opacity: 1;
}

/* Mejora visual para la imagen del logo de Dinero Latam en la sección about */
.about__icon-wrapper img {
    border-radius: 50%;
    border: 2px solid var(--first-color-light);
    box-shadow: 0 4px 16px rgba(23, 74, 25, 0.15);
    transition: transform 0.3s, box-shadow 0.3s;
    background: #fff;
    padding: 4px;
}

.about__item:hover .about__icon-wrapper img {
    transform: scale(1.12) rotate(-6deg);
    box-shadow: 0 8px 24px rgba(23, 74, 25, 0.25);
    border-color: var(--second-color);
}

/*=============== BREAKPOINTS ===============*/
/* Para dispositivos pequeños */
@media screen and (max-width: 350px) {
    .container {
        margin-left: var(--mb-1);
        margin-right: var(--mb-1);
    }

    .nav__menu {
        padding: 2rem .25rem 4rem;
    }

    .nav__list {
        column-gap: 0;
    }

    .hero__title {
        font-size: var(--h1-font-size);
    }
}

/* Para dispositivos medianos */
@media screen and (min-width: 568px) {
    .hero__container {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact__inputs {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (min-width: 768px) {
    .container {
        margin-left: auto;
        margin-right: auto;
    }

    body {
        margin: 0;
    }

    .section {
        padding: 6rem 0 2rem;
    }

    .nav {
        height: calc(var(--header-height) + 1.5rem);
    }

    .nav__list {
        flex-direction: row;
        column-gap: 2.5rem;
    }

    .nav__toggle,
    .nav__close {
        display: none;
    }

    .nav__menu {
        margin-left: auto;
    }

    .hero__container {
        padding-top: 5rem;
    }

    .footer__container {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Para dispositivos grandes */
@media screen and (min-width: 1024px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .hero__container {
        column-gap: 5rem;
    }
}

/* ========== MEJORAS RESPONSIVE PARA MOVILES Y TABLETS ========== */
@media screen and (max-width: 575px) {
    /* Ajustes generales */
    .section {
        padding: 2rem 0;
    }

    .section__title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    /* Ajustes para la sección hero */
    .custom-hero-section {
        min-height: 50vh;
    }

    .hero__title {
        font-size: 1.75rem !important;
    }

    .hero__description {
        font-size: 1rem !important;
    }

    /* Ajustes para las cards */
    .card {
        margin-bottom: 1rem;
    }

    .card-body {
        padding: 1rem;
    }

    /* Ajustes para los botones */
    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    /* Ajustes para las imágenes */
    img {
        max-width: 100%;
        height: auto;
    }

    /* Ajustes para el footer */
    .footer {
        padding: 1rem 0;
    }

    .footer__container {
        text-align: center;
    }
}

/* Ajustes para evitar desbordamiento horizontal */
html, body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* Ajustes para mejorar la legibilidad en móviles */
body {
    font-size: 16px;
    line-height: 1.5;
}

/* Ajustes para mejorar el espaciado en móviles */
.row {
    margin-left: -0.5rem;
    margin-right: -0.5rem;
}

.col, [class*="col-"] {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

/* Ajustes para mejorar la interacción táctil */
.btn, 
.nav-link,
.card {
    touch-action: manipulation;
}

/* Ajustes para mejorar el rendimiento en móviles */
* {
    -webkit-tap-highlight-color: transparent;
}

/* Unificación de menú móvil */
@media (max-width: 991.98px) {
  .navbar-collapse, .nav__menu {
    width: 100vw !important;
    left: 0 !important;
    right: 0 !important;
    border-radius: 0 !important;
    margin: 0 !important;
  }
  .navbar-nav, .nav__list {
    width: 100%;
    text-align: center;
  }
}

/* --- Helios Navbar --- */
.helios-navbar {
    background: transparent !important;
    box-shadow: none;
    border: none;
}
.helios-navbar .navbar-nav .nav-link {
    color: #fff !important;
    font-size: 1.1rem;
    font-weight: 400;
    transition: color 0.2s;
}
.helios-navbar .navbar-nav .nav-link.active,
.helios-navbar .navbar-nav .nav-link:hover {
    color: #e57373 !important;
}
.helios-navbar-lines {
    flex: 1;
    border-top: 1px solid rgba(255,255,255,0.3);
    height: 0;
    margin: 0 1.5rem;
}

/* --- Helios Hero Section --- */
.helios-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../img/f_g.png') center center/cover no-repeat;
    overflow: hidden;
    /* padding-top: 0; */
    /* margin-top: 0; */
}
.helios-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(60, 40, 80, 0.6);
    backdrop-filter: blur(6px);
    z-index: 1;
}
.helios-title {
    color: #fff;
    font-size: 4rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
    z-index: 2;
}
.helios-divider {
    border: none;
    border-top: 2px solid rgba(255,255,255,0.3);
    width: 40%;
    margin: 1.5rem auto;
}
.helios-subtitle {
    color: #fff;
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 2.5rem;
    z-index: 2;
}
.helios-btn {
    display: inline-block;
    background: #e57373;
    color: #fff;
    border-radius: 50%;
    width: 90px;
    height: 90px;
    line-height: 90px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 4px 24px rgba(0,0,0,0.15);
    transition: background 0.2s, color 0.2s;
    z-index: 2;
}
.helios-btn:hover {
    background: #fff;
    color: #e57373;
}

/* Ajustes para visibilidad del menú sobre el fondo */
.header.fixed-top {
    background: transparent !important;
}

/* --- Custom Navbar estilo Dinero Latam --- */
.custom-navbar {
    background: #181818 !important;
    box-shadow: none;
    border: none;
}
.custom-navbar .navbar {
    background: #181818 !important;
}
.custom-navbar .navbar-brand img {
    max-height: 40px;
    width: auto;
}
.custom-navbar .navbar-nav .nav-link {
    color: #fff !important;
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 0.2rem;
    transition: color 0.2s;
}
.custom-navbar .navbar-nav .nav-link:hover,
.custom-navbar .navbar-nav .nav-link.active {
    color: #fff !important;
}
.custom-navbar .navbar-nav .nav-link.active::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    margin: 0.2rem auto 0 auto;
}

/* --- Custom Hero Section estilo Dinero Latam --- */
.custom-hero-section {
    position: relative;
    min-height: 80vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    margin-top: 0 !important;
    padding-top: 0 !important;
}
.custom-hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.7);
    z-index: 0;
}
.custom-hero-section .container {
    z-index: 2;
    position: relative;
}
.custom-hero-section h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.custom-hero-section p {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 2rem;
}
.custom-hero-btn {
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
    border-radius: 0;
    padding: 0.75rem 2.2rem;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    transition: background 0.2s, color 0.2s;
}
.custom-hero-btn:hover {
    background: #fff;
    color: #181818;
    text-decoration: none;
}

/* Ajustes para centrado en móviles */
@media screen and (max-width: 991px) {
    /* Ajustes generales de contenedor */
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }

    /* Centrado de secciones */
    .section {
        text-align: center;
        padding: 2rem 1rem;
    }

    /* Centrado de títulos y descripciones */
    .section__title,
    .hero__title,
    .hero__description,
    .about__description,
    .vision__description,
    .objective__description {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }

    /* Centrado de cards y elementos */
    .about__list,
    .vision__content,
    .objective__content,
    .contact .row {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1rem;
    }

    .about__item,
    .card,
    .col-md-6,
    .col-md-3 {
        width: 100%;
        max-width: 100%;
        margin: 0 auto 1rem;
    }

    /* Centrado de imágenes */
    .vision__content img,
    .objective__content img,
    .about__icon-wrapper img {
        display: block;
        margin: 0 auto;
        max-width: 100%;
        height: auto;
    }

    /* Centrado de botones */
    .btn {
        display: inline-block;
        margin: 0.5rem auto;
    }

    /* Centrado de elementos de contacto */
    .contact .card-body {
        text-align: center;
    }

    .contact .social-buttons {
        justify-content: center;
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
    }

    /* Ajustes específicos para la sección hero */
    .custom-hero-section {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 4rem 1rem;
    }

    .hero__container {
        width: 100%;
        max-width: 100%;
        padding: 0 1rem;
    }

    /* Ajustes para la sección about */
    .about__list {
        padding: 0;
    }

    .about__item {
        text-align: center;
    }

    .about__icon-wrapper {
        margin: 0 auto 1rem;
    }

    /* Ajustes para la sección vision y objective */
    .vision__content,
    .objective__content {
        text-align: center;
    }

    .vision__description,
    .objective__description {
        max-width: 100%;
        padding: 0 1rem;
    }
}

/* Ajustes adicionales para pantallas muy pequeñas */
@media screen and (max-width: 575px) {
    .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    .section {
        padding: 1.5rem 0.75rem;
    }

    /* Ajuste de márgenes para elementos en móvil */
    .row {
        margin-left: 0;
        margin-right: 0;
    }

    .col, [class*="col-"] {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }

    /* Centrado de elementos específicos */
    .about__item .card-body,
    .contact .card-body,
    .vision__content > div,
    .objective__content > div {
        padding: 1rem;
        text-align: center;
    }

    /* Ajuste de espaciado para botones */
    .btn {
        width: auto;
        min-width: 200px;
        margin: 0.5rem auto;
    }
}

/* Ajustes generales para asegurar centrado */
.section {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section__title {
    width: 100%;
    text-align: center;
}

.row {
    width: 100%;
    margin: 0 auto;
} 