/* =========================================
   VARIABLES
========================================= */

:root {
    --teal-dark: #005b69;
    --teal: #009da8;
    --teal-light: #38b7b3;

    --green: #64ae69;
    --yellow: #f5c62e;
    --coral: #ef705d;
    --red: #e65f51;

    --dark: #06485a;
    --text: #29464d;
    --light: #fdfbf4;
    --white: #ffffff;
    --gray: #edf0ee;

    --container: 1240px;

    --shadow: 0 5px 20px rgba(0, 70, 80, 0.10);

    --radius: 10px;
}


/* =========================================
   RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    /* Compensación de espacio para que la cabecera fija no tape el inicio */
    padding-top: 154px;
}

img {
    width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button,
input,
textarea {
    font-family: inherit;
}


/* =========================================
   CONTENEDOR
========================================= */

.container {
    width: min(92%, var(--container));
    margin: 0 auto;
}


/* =========================================
   BARRA SUPERIOR (TOPBAR)
========================================= */

.topbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 42px;
    z-index: 10001;
    background: var(--teal-dark);
    color: var(--white);
    display: flex;
    align-items: center;
}

.topbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 28px;
    font-size: 13px;
    font-weight: 600;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-info i {
    font-size: 13px;
}

.social-top {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-top a {
    font-size: 14px;
    transition: 0.3s;
}

.social-top a:hover {
    color: var(--yellow);
}


/* =========================================
   MENÚ PRINCIPAL (HEADER)
========================================= */

.header {
    position: fixed;
    top: 42px; /* Se posiciona justo debajo de la topbar (42px) */
    left: 0;
    width: 100%;
    z-index: 10000;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar {
    min-height: 112px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    width: 220px;
    flex-shrink: 0;
}

.logo img {
    max-height: 85px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.main-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex: 1;
}

.main-menu a {
    color: var(--dark);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 15px 0;
    position: relative;
    white-space: nowrap;
}

.main-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 4px;
    width: 0;
    height: 3px;
    background: var(--yellow);
    transition: 0.3s;
}

.main-menu a:hover::after,
.main-menu a.active::after {
    width: 100%;
}

.donate-button,
.primary-button,
.secondary-button,
.donation-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 800;
    transition: 0.3s;
}

.donate-button {
    background: var(--coral);
    color: var(--white);
    padding: 14px 24px;
    white-space: nowrap;
}

.donate-button:hover {
    background: var(--red);
    transform: translateY(-2px);
}


/* =========================================
   HERO
========================================= */

.hero {
    min-height: 560px;
    background-image: url("img/fondo1.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 76, 91, 0.96) 0%,
        rgba(0, 76, 91, 0.82) 38%,
        rgba(0, 76, 91, 0.10) 72%,
        rgba(0, 76, 91, 0.05) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-text {
    width: 560px;
    max-width: 100%;
    color: var(--white);
}

.hero-script {
    font-size: 42px;
    line-height: 1.1;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 0;
}

.hero h1 {
    color: var(--yellow);
    font-size: 56px;
    line-height: 1.05;
    margin-bottom: 18px;
    font-weight: 900;
}

.hero-description {
    font-size: 17px;
    max-width: 550px;
    margin-bottom: 28px;
}

.primary-button {
    background: var(--coral);
    color: var(--white);
    padding: 15px 24px;
    border: none;
}

.primary-button:hover {
    background: var(--red);
    transform: translateY(-2px);
}

.hero-wave {
    position: absolute;
    left: -5%;
    bottom: -80px;
    width: 110%;
    height: 150px;
    background: var(--light);
    border-radius: 50% 50% 0 0;
    transform: rotate(-2deg);
    z-index: 3;
}


/* =========================================
   ÁREAS
========================================= */

.areas {
    background: var(--light);
    padding: 35px 0 55px;
    position: relative;
    z-index: 4;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

.area-card {
    text-align: center;
    padding: 10px 28px 20px;
    border-right: 1px solid #d7d7d0;
}

.area-card:last-child {
    border-right: none;
}

.area-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 12px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 25px;
}

.turquoise {
    background: var(--teal);
}

.green {
    background: var(--green);
}

.yellow {
    background: var(--yellow);
}

.coral {
    background: var(--coral);
}

.area-card h3 {
    color: var(--dark);
    font-size: 18px;
    line-height: 1.15;
    margin-bottom: 10px;
}

.area-card p {
    font-size: 13px;
    line-height: 1.5;
    color: #555;
}

.area-line {
    width: 45px;
    height: 4px;
    display: block;
    margin: 13px auto 0;
    border-radius: 5px;
}

.turquoise-line {
    background: var(--teal);
}

.green-line {
    background: var(--green);
}

.yellow-line {
    background: var(--yellow);
}

.coral-line {
    background: var(--coral);
}


/* =========================================
   SECCIONES GENERALES
========================================= */

.section {
    padding: 80px 0;
}

.section-label {
    display: block;
    color: var(--dark);
    font-size: 32px;
    font-weight: 900;
    line-height: 1.15;
}

.yellow-underline {
    width: 80px;
    height: 5px;
    background: var(--yellow);
    display: block;
    margin: 12px 0 28px;
    border-radius: 20px;
}

.section-heading {
    margin-bottom: 35px;
}

.section-heading p {
    max-width: 700px;
    color: #5b6467;
}


/* =========================================
   QUIENES SOMOS
========================================= */

.about {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 65px;
}

.about-text p {
    margin-bottom: 18px;
    font-size: 16px;
    color: #4c5b5f;
}

.secondary-button {
    background: var(--teal);
    color: var(--white);
    padding: 14px 22px;
    margin-top: 12px;
}

.secondary-button:hover {
    background: var(--teal-dark);
    transform: translateY(-2px);
}

.about-image {
    position: relative;
}

.about-image img {
    height: 370px;
    object-fit: cover;
    border-radius: 18px;
    position: relative;
    z-index: 2;
}

.image-decoration {
    position: absolute;
    width: 90%;
    height: 80%;
    right: -15px;
    bottom: -18px;
    border: 8px solid var(--yellow);
    border-radius: 20px;
}


/* =========================================
   ESTADÍSTICAS
========================================= */

.stats {
    padding: 40px 0;
    background: var(--light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.stat i {
    width: 54px;
    height: 54px;
    border: 2px solid var(--yellow);
    color: var(--yellow);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
}

.stat strong {
    display: block;
    color: var(--dark);
    font-size: 25px;
}

.stat span {
    display: block;
    font-size: 12px;
    color: #666;
}


/* =========================================
   PROYECTOS
========================================= */

.projects {
    background: var(--white);
}

.category-menu,
.gallery-menu {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.category-menu a,
.gallery-menu a {
    padding: 7px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: var(--dark);
    background: #f3f3ee;
}

.category-menu a:hover,
.category-menu .category-active,
.gallery-menu a:hover,
.gallery-menu .active {
    color: var(--white);
    background: var(--teal);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.project-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid #eeeeea;
}

.project-image {
    height: 205px;
    position: relative;
    overflow: hidden;
}

.project-image img {
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

.project-card:hover .project-image img {
    transform: scale(1.06);
}

.project-tag {
    position: absolute;
    left: 12px;
    bottom: 10px;
    background: var(--teal);
    color: var(--white);
    padding: 4px 9px;
    border-radius: 15px;
    font-size: 9px;
    font-weight: 800;
}

.green-tag {
    background: var(--green);
}

.coral-tag {
    background: var(--coral);
}

.red-tag {
    background: var(--red);
}

.project-content {
    padding: 18px;
}

.project-content h3 {
    color: var(--dark);
    font-size: 17px;
    line-height: 1.2;
    margin-bottom: 10px;
}

.project-content p {
    font-size: 13px;
    color: #687073;
    margin-bottom: 12px;
}

.project-content a,
.news-content a,
.document-card a {
    color: var(--dark);
    font-size: 12px;
    font-weight: 800;
}

.project-content a:hover,
.news-content a:hover,
.document-card a:hover {
    color: var(--coral);
}


/* =========================================
   PROYECTO DESTACADO
========================================= */

.featured-project {
    background: var(--light);
    padding: 70px 0;
}

.featured-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 55px;
    align-items: center;
}

.featured-image {
    position: relative;
}

.featured-image img {
    height: 470px;
    object-fit: cover;
    border-radius: 18px;
}

.featured-content .small-label {
    color: var(--coral);
    font-size: 12px;
    font-weight: 900;
}

.featured-content h2 {
    font-size: 38px;
    color: var(--dark);
    margin: 8px 0 15px;
}

.featured-content > p {
    color: #5d686b;
    margin-bottom: 25px;
}

.project-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.project-info div {
    display: flex;
    flex-direction: column;
}

.project-info i {
    color: var(--teal);
    font-size: 18px;
    margin-bottom: 5px;
}

.project-info strong {
    font-size: 11px;
    color: var(--dark);
}

.project-info span {
    font-size: 11px;
    color: #666;
}

.featured-content h4 {
    color: var(--dark);
    margin-bottom: 10px;
}

.check-list {
    list-style: none;
    margin-bottom: 20px;
}

.check-list li {
    font-size: 13px;
    margin-bottom: 5px;
}

.check-list i {
    color: var(--green);
    margin-right: 8px;
}


/* =========================================
   NOTICIAS
========================================= */

.news {
    background: var(--white);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.news-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #ececea;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.news-card > img {
    height: 180px;
    object-fit: cover;
}

.news-content {
    padding: 15px;
}

.date {
    color: var(--coral);
    font-size: 11px;
    font-weight: 800;
}

.news-content h3 {
    color: var(--dark);
    font-size: 16px;
    line-height: 1.3;
    margin: 7px 0 12px;
}

.center-button {
    text-align: center;
    margin-top: 35px;
}


/* =========================================
   GALERÍA
========================================= */

.gallery {
    background: var(--light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 190px;
    gap: 5px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 4px;
}

.gallery-item.large {
    grid-row: span 2;
}

.gallery-item img {
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

.gallery-item:hover img {
    transform: scale(1.07);
}


/* =========================================
   TRANSPARENCIA
========================================= */

.transparency {
    background: var(--white);
}

.transparency-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
    gap: 50px;
    margin-bottom: 40px;
}

.transparency-text p {
    max-width: 550px;
    color: #5c686b;
}

.transparency-image img {
    height: 260px;
    object-fit: cover;
    border-radius: 20px;
}

.documents-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.document-card {
    background: var(--light);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #eee;
}

.document-card > i {
    color: var(--teal);
    font-size: 28px;
    margin-bottom: 12px;
}

.document-card h3 {
    color: var(--dark);
    font-size: 16px;
    margin-bottom: 8px;
}

.document-card p {
    color: #687073;
    font-size: 12px;
    margin-bottom: 15px;
}


/* =========================================
   SALUD
========================================= */

.health-section {
    min-height: 430px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(
            rgba(0, 83, 98, 0.87),
            rgba(0, 83, 98, 0.87)
        ),
        url("img/salud.jpg");

    background-size: cover;
    background-position: center;
    color: var(--white);
}

.health-content {
    display: flex;
    align-items: center;
}

.white-label {
    color: var(--white);
}

.health-content h2 {
    font-size: 42px;
    max-width: 650px;
    margin-bottom: 15px;
}

.health-content p {
    max-width: 650px;
    margin-bottom: 25px;
}


/* =========================================
   DONACIÓN
========================================= */

.donation {
    background: var(--teal-dark);
    color: var(--white);
    padding: 32px 0;
}

.donation-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.donation-title {
    display: flex;
    align-items: center;
    gap: 18px;
}

.donation-title > i {
    color: var(--coral);
    font-size: 55px;
}

.donation-title h2 {
    font-size: 24px;
    font-style: italic;
}

.donation-title p {
    font-size: 12px;
}

.donation-actions {
    display: flex;
    align-items: center;
    gap: 25px;
}

.donation-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.donation-item > i {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.15);
    color: var(--yellow);
}

.donation-item strong,
.donation-item span {
    display: block;
}

.donation-item strong {
    font-size: 11px;
}

.donation-item span {
    font-size: 10px;
    color: #d9e8e9;
    max-width: 100px;
}

.donation-button {
    background: var(--coral);
    color: var(--white);
    padding: 13px 18px;
}

.donation-button:hover {
    background: var(--red);
}


/* =========================================
   CONTACTO
========================================= */

.contact {
    background: var(--light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1fr 1fr;
    gap: 45px;
    align-items: center;
}

.contact-detail {
    display: flex;
    gap: 13px;
    margin-bottom: 18px;
}

.contact-detail > i {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--green);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-detail strong {
    display: block;
    color: var(--dark);
    font-size: 13px;
}

.contact-detail p {
    font-size: 12px;
}

.contact-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.contact-social a {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--dark);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.contact-social a:hover {
    background: var(--coral);
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid #ddd;
    background: var(--white);
    padding: 13px 15px;
    outline: none;
    border-radius: 4px;
    font-size: 13px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--teal);
}

.contact-form button {
    border: none;
    cursor: pointer;
    align-self: flex-start;
    background: var(--coral);
    color: var(--white);
    padding: 14px 22px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 800;
}

.contact-form button:hover {
    background: var(--red);
}

.contact-image img {
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
}


/* =========================================
   FOOTER
========================================= */

.footer {
    background: var(--teal-dark);
    color: var(--white);
}

.footer-grid {
    padding: 55px 0;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-brand img {
    width: 180px;
    max-height: 90px;
    object-fit: contain;
    object-position: left center;
    margin-bottom: 15px;
}

.footer-brand p {
    font-size: 12px;
    max-width: 270px;
    color: #d5e8e9;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-column h4 {
    color: var(--yellow);
    margin-bottom: 10px;
    font-size: 15px;
}

.footer-column a {
    font-size: 12px;
    color: #d8e8e9;
    transition: 0.3s;
}

.footer-column a:hover {
    color: var(--yellow);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
}

.footer-bottom .container {
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom p,
.footer-bottom a {
    font-size: 11px;
    color: #cbdfe1;
}

.footer-bottom div {
    display: flex;
    gap: 20px;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

    body {
        padding-top: 137px;
    }

    .navbar {
        min-height: 95px;
    }

    .logo {
        width: 170px;
    }

    .main-menu {
        gap: 15px;
    }

    .main-menu a {
        font-size: 10px;
    }

    .donate-button {
        padding: 11px 15px;
        font-size: 10px;
    }

    .hero {
        min-height: 500px;
    }

    .hero-script {
        font-size: 35px;
    }

    .hero h1 {
        font-size: 47px;
    }

    .projects-grid,
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .donation-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .donation-actions {
        width: 100%;
        justify-content: space-between;
    }

    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-image {
        grid-column: 1 / -1;
    }

    .contact-image img {
        height: 300px;
    }
}


/* =========================================
   MÓVILES
========================================= */

@media (max-width: 800px) {

    .topbar {
        position: relative;
        height: auto;
        padding: 8px 0;
    }

    .topbar-content {
        flex-direction: column;
    }

    .header {
        position: fixed;
        top: 0;
    }

    body {
        padding-top: 100px;
    }

    .contact-info {
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px 15px;
        font-size: 11px;
    }

    .social-top {
        display: none;
    }

    .navbar {
        min-height: auto;
        padding: 10px 0;
        flex-wrap: wrap;
        justify-content: center;
    }

    .logo {
        width: 180px;
    }

    .main-menu {
        order: 3;
        width: 100%;
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: 5px;
        gap: 20px;
    }

    .main-menu a {
        font-size: 10px;
    }

    .donate-button {
        display: none;
    }

    .hero {
        min-height: 600px;
        background-position: 62% center;
    }

    .hero-overlay {
        background: linear-gradient(
            90deg,
            rgba(0, 76, 91, 0.95),
            rgba(0, 76, 91, 0.70)
        );
    }

    .hero-text {
        width: 100%;
    }

    .hero-script {
        font-size: 30px;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero-description {
        font-size: 15px;
    }

    .areas {
        padding-top: 20px;
    }

    .areas-grid {
        grid-template-columns: 1fr;
    }

    .area-card {
        border-right: none;
        border-bottom: 1px solid #ddd;
        padding: 25px 20px;
    }

    .area-card:last-child {
        border-bottom: none;
    }

    .section {
        padding: 55px 0;
    }

    .section-label {
        font-size: 27px;
    }

    .about-grid,
    .featured-grid,
    .transparency-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .about-image img {
        height: 300px;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

    .projects-grid,
    .news-grid {
        grid-template-columns: 1fr;
    }

    .featured-image img {
        height: 350px;
    }

    .featured-content h2 {
        font-size: 32px;
    }

    .project-info {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 170px;
    }

    .gallery-item.large {
        grid-row: span 1;
    }

    .documents-grid {
        grid-template-columns: 1fr 1fr;
    }

    .health-section {
        min-height: 400px;
    }

    .health-content h2 {
        font-size: 32px;
    }

    .donation-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-image {
        grid-column: auto;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom .container {
        flex-direction: column;
        justify-content: center;
        padding: 18px 0;
        text-align: center;
    }

}


/* =========================================
   MÓVILES PEQUEÑOS
========================================= */

@media (max-width: 500px) {

    .contact-info span:nth-child(2),
    .contact-info span:nth-child(3) {
        display: none;
    }

    .hero {
        min-height: 570px;
    }

    .hero-script {
        font-size: 27px;
    }

    .hero h1 {
        font-size: 37px;
    }

    .hero-description {
        font-size: 14px;
    }

    .primary-button,
    .secondary-button {
        font-size: 11px;
        padding: 13px 17px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 230px;
    }

    .documents-grid {
        grid-template-columns: 1fr;
    }

    .donation-title {
        align-items: flex-start;
    }

    .donation-title > i {
        font-size: 40px;
    }

    .donation-title h2 {
        font-size: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom div {
        flex-direction: column;
        gap: 5px;
    }

}