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

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


body {
  font-family: 'Poppins', Arial, sans-serif;
    background:
        linear-gradient(
            rgba(247,250,247,0.66),
            rgba(247,250,247,0.70)
        ),
        url("../images/mapa-lima.jpg") center center / cover fixed;
    background-size: cover;
  color: #2e6b45;
}
/* ============================================
   variables de diseño
   ============================================ */
:root {
    --color-heading: #2D5C3D;        
    --color-button: #457F4C;         
    --color-button-dark: #355F3A;    
    --color-primary-light: #CDE2C7;  
    --color-accent: #5C8059;         
    --color-text: #182921;           
    --color-text-muted: #3A6350;     
    --color-bg-section: #F4F4F4;     

    --font-heading: 'Poppins', sans-serif;
}

header {
    width: 100%;
    min-height: 78%;
    background-color: #ffffff;
    padding: 0 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 18px rgb(31, 41, 51, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}
/* barra de navegación */
.inicio-topbar {
    display: flex;
    align-items: center;

    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 8px;
}
.inicio-logo{
    margin-right:auto;
}

.inicio-logo img {
    height: 96px;
    width: auto;
    display: block;

}

.inicio-nav {
    display: flex;
    gap: 18px;
    padding: 8px 18px;
    border-radius: 999px;
    background-color: rgba(255, 255, 255, 0.9);
    margin-right: 20px;
}

.inicio-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    min-width: 78px;
    padding: 6px 10px;
    border-radius: 20px;
    text-decoration: none;
    color: var(--color-text-muted);
    font-size: 0.7rem;
    font-weight: 700;
}

.inicio-nav .nav-icon {
    width: 18px;
    height: 18px;
}

.inicio-nav a.active {
    background-color: var(--color-primary-light);
    color: var(--color-heading);
}

.inicio-profile {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--color-button);
    color: #ffffff;
    flex-shrink: 0;
}

.inicio-profile svg {
    width: 22px;
    height: 22px;
}


body {
    font-family: 'Poppins', Arial, sans-serif;
    background-color: #f5f8f3;
    color: #2e6b45;
}

/* ============================================
   sección: home
   ============================================ */
.inicio-section {
    position: relative;
    background-color: transparent;
    padding: 40px 24px 80px;
    overflow: hidden;
}

.inicio-section::before {
    width: 100vw;
    min-height: 100vh;
    margin-left: calc(50% - 50vw);
    padding: 28px 48px 80px;
    color: #16713a;

    content: "";
    position: absolute;
    top: 0;
    left: 0;

    background:
        linear-gradient(rgba(247, 250, 247, 0.66), rgba(247, 250, 247, 0.70)),
        url("../images/mapa-lima.jpg") center center / cover no-repeat,
        #eef4ef;
    background-attachment: fixed, fixed, scroll;

}

.inicio-section .container {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
}


/* contenido principal */
.inicio-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
    text-align: left;
}

.inicio-text {
    flex: 1;
    max-width: 480px;
}

.inicio-title {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--color-heading);
    margin-bottom: 24px;
}

.inicio-description {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 32px;
}

.download-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: var(--color-button);
    color: #ffffff;
    text-decoration: none;
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.2s ease;
}

.download-button:hover,
.download-button:focus-visible {
    background-color: var(--color-button-dark);
}

.inicio-caption {
    margin-top: 16px;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.inicio-phone {
    flex-shrink: 0;
}

.phone-frame {
    position: relative;
    width: 280px;
    padding: 16px 14px;
    background-color: #1a1a1a;
    border-radius: 36px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 6px;
    border-radius: 4px;
    background-color: #3a3a3a;
}

.phone-frame img {
    display: block;
    width: 100%;
    border-radius: 22px;
}





/* =========================
Sección Funcionalidades
========================= */

.features-section {
width: 100vw;
min-height: 100vh;
margin-left: calc(50% - 50vw);
padding: 25px 40px 75px;
color: #16713a;
background:transparent;
}

/* Barra superior */

.features-topbar {
width: 100%;
max-width: 1180px;
margin: 0 auto 10px;
display: flex;
align-items: flex-start;
justify-content: space-between;
}

.features-logo {
display: flex;
align-items: center;
justify-content: center;
text-decoration: none;
}

.features-logo img {
width: 95px;
height: auto;
display: block;
}


/* Contenido principal */

.features-container {
max-width: 1180px;
margin: 0 auto;
text-align: center;
}

.features-container h1 {
font-size: 44px;
font-weight: 900;
color: #247b3f;
margin-bottom: 8px;
}

.features-subtitle {
font-size: 17px;
color: #158244;
margin-bottom: 12px;
}

.features-description {
font-size: 15px;
color: #158244;
margin-bottom: 28px;
}

.features-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 58px 45px;
text-align: left;
}

.feature-card {
min-height: 150px;
padding: 22px 20px;
background-color: rgba(255, 255, 255, 0.94);
border: 1px solid #cfded0;
border-radius: 14px;
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
}

.feature-icon {
width: 48px;
height: 48px;
margin-bottom: 14px;
border-radius: 50%;
background-color: #d8efd7;
color: #1f7a3f;
display: flex;
justify-content: center;
align-items: center;
font-size: 23px;
}

.feature-card h3 {
font-size: 18px;
color: #16713a;
margin-bottom: 10px;
font-weight: 800;
}

.feature-card p {
font-size: 14px;
line-height: 1.7;
color: #16713a;
font-weight: 600;
}



/* ============================================
Sección: Cómo funciona
============================================ */

:root {
--color-heading: #2D5C3D;
--color-button: #457F4C;
--color-button-dark: #355F3A;
--color-primary-light: #CDE2C7;
--color-accent: #5C8059;
--color-text: #182921;
--color-text-muted: #3A6350;
--color-bg-section: #F4F4F4;
--font-heading: 'Poppins', sans-serif;
}

.how-it-works {
position: relative;
background-color: transparent;
padding: 80px 24px;
text-align: center;
overflow: hidden;
}



.how-it-works .container {
position: relative;
z-index: 1;
max-width: 1100px;
margin: 0 auto;
}

/* Cómo funciona */

.how-it-works .section-title {
font-family: var(--font-heading);
font-size: 2.25rem;
font-weight: 700;
color: var(--color-heading);
margin-bottom: 12px;
}

.how-it-works .section-subtitle {
font-size: 1.1rem;
color: var(--color-text-muted);
margin-bottom: 56px;
}

/* Pasos */

.steps {
position: relative;
display: flex;
justify-content: space-between;
gap: 32px;
margin-bottom: 56px;
}

.steps::before {
content: '';
position: absolute;
top: 40px;
left: 16%;
right: 16%;
border-top: 2px dashed var(--color-accent);
z-index: 0;
}

.step {
position: relative;
z-index: 1;
flex: 1;
display: flex;
flex-direction: column;
align-items: center;
}

.step-number {
width: 80px;
height: 80px;
border-radius: 50%;
background-color: var(--color-primary-light);
color: var(--color-text);
font-family: var(--font-heading);
font-size: 1.75rem;
font-weight: 700;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 24px;
}

.step-icon {
width: 40px;
height: 40px;
color: var(--color-accent);
margin-bottom: 16px;
}

.step-icon svg {
width: 100%;
height: 100%;
}

.step-text {
font-size: 0.95rem;
color: var(--color-text-muted);
max-width: 260px;
}

/* Botón */

.cta-button {
display: inline-flex;
align-items: center;
gap: 8px;
background-color: var(--color-button);
color: #ffffff;
text-decoration: none;
padding: 14px 32px;
border-radius: 50px;
font-weight: 600;
font-size: 1rem;
transition: background-color 0.2s ease;
}

.cta-button:hover,
.cta-button:focus-visible {
background-color: var(--color-button-dark);
}

.cta-button:focus-visible {
outline: 2px solid var(--color-button-dark);
outline-offset: 3px;
}



/* =========================
Sección Beneficios
========================= */

.benefits-section {
    width: 100vw;
    min-height: 100vh;
    margin-left: calc(50% - 50vw);
    padding: 28px 48px 80px;
    color: #16713a;
    background:transparent;
}


.benefits-container {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}

.benefits-container h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 54px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: #1f6b39;
    margin: 18px 0 30px;
}

.points-card {
    max-width: 700px;
    margin: 0 auto 46px;
    background: linear-gradient(135deg, #2e7d46 0%, #226639 100%);
    border-radius: 26px;
    padding: 30px 38px 34px;
    color: white;
    text-align: left;
    box-shadow: 0 16px 40px rgba(23, 112, 65, 0.22);
}

.points-card h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
    opacity: 0.97;
}

.points-display {
    display: flex;
    align-items: baseline;
    gap: 10px;
    justify-content: flex-start;
    margin-bottom: 22px;
}

.points-number {
    font-family: 'Poppins', sans-serif;
    font-size: 50px;
    font-weight: 800;
    line-height: 1;
    transition: transform 0.3s ease;
}

.points-label {
    font-size: 22px;
    font-weight: 500;
    opacity: 0.95;
}

.progress-bar {
    width: 100%;
    height: 12px;
    background-color: rgba(255, 255, 255, 0.32);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 12px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #FFC400 0%, #FFD83D 100%);
    border-radius: 10px;
    transition: width 0.5s ease;
}

.progress-text {
    font-size: 15px;
    opacity: 0.95;
    font-weight: 600;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-bottom: 36px;
}

.benefit-card {
    padding: 22px 22px 24px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 10px 26px rgba(31, 80, 45, 0.10);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.benefit-card.movilidad   { background: #bdd9a4; }
.benefit-card.reparaciones{ background: #d6e9c4; }
.benefit-card.transporte  { background: #c0e0c8; }
.benefit-card.bienestar   { background: #809a80; }
.benefit-card.alimentacion{ background: #cfe6bd; }
.benefit-card.fitness     { background: #c3ddc1; }

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 34px rgba(31, 80, 45, 0.18);
}

.benefit-card.hidden {
    display: none;
}

.benefit-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 21px;
    font-weight: 800;
    color: #16341c;
    margin-bottom: 14px;
}

.benefit-card.bienestar h3 {
    color: #14241a;
}

.benefit-icon {
    width: 66px;
    height: 66px;
    margin-bottom: 18px;
    border-radius: 50%;
    background-color: #ffffff;
    color: #16341c;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.benefit-icon svg {
    width: 32px;
    height: 32px;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.06);
}

.benefit-card p {
    width: 100%;
    text-align: left;
    font-size: 14.5px;
    line-height: 1.45;
    color: #18331d;
    font-weight: 600;
    margin-bottom: 14px;
    flex-grow: 1;
}

.benefit-card.bienestar p {
    color: #16261b;
}

.benefit-points {
    display: block;
    width: 100%;
    text-align: left;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
    margin-bottom: 14px;
}

.reclaim-btn {
    width: 100%;
    background-color: #ffffff;
    color: #16341c;
    border: none;
    padding: 12px 16px;
    border-radius: 14px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

.reclaim-btn svg {
    width: 18px;
    height: 18px;
}

.reclaim-btn:hover {
    background-color: #f3faf0;
    transform: translateY(-2px);
}

.reclaim-btn:active {
    transform: translateY(0);
}

.reclaim-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.see-all-benefits {
    text-align: center;
    padding: 26px 0 10px;
}

.see-all-btn {
    background-color: #4f8d5b;
    color: white;
    border: none;
    padding: 16px 42px;
    border-radius: 16px;
    font-family: 'Poppins', sans-serif;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 26px rgba(44, 105, 62, 0.25);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.see-all-btn:hover {
    background-color: #3f7a4c;
    transform: translateY(-3px);
    box-shadow: 0 14px 30px rgba(44, 105, 62, 0.32);
}

.see-all-btn:active {
    transform: translateY(-1px);
}

.see-all-star {
    font-size: 18px;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    max-width: 500px;
    position: relative;
    text-align: left;
    animation: slideUp 0.3s ease;
}

.modal-close {
    position: absolute;
    right: 20px;
    top: 16px;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #999;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #247b3f;
}

.modal-content h2 {
    font-family: 'Poppins', sans-serif;
    color: #247b3f;
    margin-bottom: 14px;
    font-weight: 800;
}

.modal-content p {
    color: #16713a;
    margin-bottom: 24px;
    font-size: 15px;
}

.modal-buttons {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.modal-btn {
    padding: 12px 26px;
    border: none;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.modal-btn.cancel {
    background-color: #E6EAE6;
    color: #16713a;
}

.modal-btn.cancel:hover {
    background-color: #d6ddd6;
}

.modal-btn.confirm {
    background-color: #247b3f;
    color: white;
}

.modal-btn.confirm:hover {
    background-color: #1f6639;
    transform: translateY(-2px);
}

.toast {
    display: none;
    position: fixed;
    bottom: 22px;
    right: 22px;
    background-color: #247b3f;
    color: white;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    z-index: 999;
    font-weight: 600;
    animation: slideInUp 0.3s ease;
}

.toast.show {
    display: block;
}

@keyframes slideInUp {
    from { transform: translateY(100px); opacity: 0; }
    to   { transform: translateY(0); opacity: 1; }
}

.toast.error   { background-color: #E5533D; }
.toast.success { background-color: #247b3f; }

/* =========================
Sección Comunidad
========================= */

.community-content {
  max-width: 1380px;
  margin: 0 auto;
  text-align: center;
  
}

.community-content h2 {
  color: #2e6b45;
  font-size: 50px;
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: 0.5px;
  margin-top: 34px;
  margin-bottom: 12px;

}

.community-description {
  max-width: 980px;
  margin: 0 auto 28px;
  color: #007039;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.65;
}

.community-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 52px;
  margin: 6px 0 28px;
}

.community-card {
  min-height: 286px;
  padding: 38px 36px 30px;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 24px;
  box-shadow: 0 12px 28px rgba(38, 82, 50, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.community-icon {
  width: 104px;
  height: 104px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: #cfe6c7;
  color: #2e6b45;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 44px;
  line-height: 1;
  flex-shrink: 0;
}

.community-card h3 {
  color: #2e6b45;
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 16px;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.community-card p {
  color: #16663c;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.55;
  margin-bottom: 20px;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.community-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  min-width: 236px;
  height: 52px;
  border: 1.7px solid #2e6b45;
  border-radius: 8px;
  color: #2e6b45;
  background: #ffffff;
  text-decoration: none;
  font-size: 17px;
  font-weight: 900;
  margin-top: auto;
}

.community-card a span {
  color: #000000;
  font-size: 32px;
  line-height: 1;
}

.community-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 52px;
  margin-bottom: 18px;
}

.testimonial-card {
  min-height: 178px;
  padding: 24px 30px;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 18px;
  text-align: left;
  box-shadow: 0 12px 28px rgba(38, 82, 50, 0.06);
}

.stars {
  color: #000000;
  font-size: 33px;
  letter-spacing: 7px;
  line-height: 1;
  margin-bottom: 18px;
}

.testimonial-card p {
  color: #16663c;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.55;
  margin-bottom: 18px;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 14px;
}

.avatar-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-user strong {
  display: block;
  color: #111111;
  font-size: 17px;
  font-weight: 900;
}

.testimonial-user span {
  display: block;
  color: #2e6b45;
  font-size: 17px;
  font-weight: 500;
}

.community-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 330px;
  height: 72px;
  padding: 20px 44px;
  border-radius: 999px;
  background: #4e864f;
  color: #ffffff;
  text-decoration: none;
  font-size: 24px;
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(46, 125, 50, 0.22);
  margin-bottom:60px;
}

/* ============================================
   RESPONSIVE DESIGNE
   ============================================ */

/* ============================================
   responsive HOME
   ============================================ */
@media (max-width: 768px) {
    .inicio-topbar {
        flex-direction: column;
    }

    .inicio-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .inicio-content {
        flex-direction: column-reverse;
        text-align: center;
    }

    .inicio-text {
        max-width: 100%;
    }

    .inicio-title {
        font-size: 2rem;
    }

    .phone-frame {
        width: 220px;
    }
}

/* Responsive FUNCIONALIDADES*/

@media (max-width: 900px) {
.features-section {
padding: 25px 20px 50px;
}

.features-topbar {
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

.features-nav {
    margin-left: 0;
    flex-wrap: wrap;
    justify-content: center;
}

.features-container h1 {
    font-size: 34px;
}

.features-grid {
    grid-template-columns: 1fr;
    gap: 25px;
}
}

/* Responsive COMO FUNCIONA*/

@media (max-width: 768px) {
.hiw-topbar {
flex-direction: column;
}

.hiw-nav {
    flex-wrap: wrap;
    justify-content: center;
}

.steps {
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

.steps::before {
    display: none;
}

.how-it-works .section-title {
    font-size: 1.75rem;
}
}

/* Responsive BENEFICIOS*/

@media (max-width: 1100px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 720px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 900px) {
    .benefits-section {
        padding: 24px 22px 56px;
    }

    .benefits-topbar {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .benefits-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .benefits-container h1 {
        font-size: 38px;
    }

    .points-card {
        padding: 26px 28px;
    }

    .points-number {
        font-size: 42px;
    }
}

@media (max-width: 600px) {
    .benefits-section {
        padding: 18px 16px 44px;
    }

    .benefits-container h1 {
        font-size: 28px;
        margin: 14px 0 22px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        max-width: 420px;
    }

    .points-display { gap: 8px; }
    .points-number { font-size: 38px; }
    .points-label { font-size: 18px; }
    .benefits-nav {
        gap: 4px;
        padding: 6px 10px;
    }

    .benefits-nav a {
        min-width: 64px;
        font-size: 10.5px;
    }

    .benefits-logo img { width: 76px; }
    .see-all-btn {
        padding: 14px 32px;
        font-size: 15px;
    }

    .modal-content {
        padding: 30px;
        max-width: 90%;
    }

    .toast {
        right: 12px;
        left: 12px;
    }
}


/* Responsive COMUNIDAD*/

@media (max-width: 900px) {
  .community-section {
    padding: 34px 20px 60px;
  }

  .community-logo {
    position: static;
    margin-bottom: 24px;
  }

  .community-nav {
    margin: 0 auto 30px;
    flex-wrap: wrap;
    justify-content: center;
    border-radius: 24px;
  }

  .community-content h2 {
    font-size: 34px;
  }

  .community-description {
    font-size: 17px;
  }

  .community-cards,
  .community-testimonials {
    grid-template-columns: 1fr;
    gap: 22px;
  }
 } 





