/* _content/FundacionSR/Components/Layout/CultureSelector.razor.rz.scp.css */
.language-selector[b-bnmtx5ye28] {
  display: flex;
  align-items: center;
  margin-left: 2rem;
}

.language-toggle-container[b-bnmtx5ye28] {
  display: inline-flex;
  align-items: center;
  background-color: #fff;
  border: 2px solid #fff;
  border-radius: 25px;
  overflow: hidden;
  height: 35px;
}

.language-btn[b-bnmtx5ye28] {
  background-color: #fff;
  color: #254470;
  border: none;
  padding: 0 15px;
  height: 100%;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  letter-spacing: 0.5px;
  outline: none;
}

.language-btn:hover:not(.active)[b-bnmtx5ye28] {
  background-color: #f0f0f0;
}

.language-btn.active[b-bnmtx5ye28] {
  background-color: #e49133;
  color: #fff;
}

.divider[b-bnmtx5ye28] {
  width: 1px;
  height: 20px;
  background-color: #ddd;
  opacity: 0.5;
}

/* Media Queries */
@media (max-width: 768px) {
  .language-selector[b-bnmtx5ye28] {
    margin-left: 0;
    margin-top: 1rem;
  }

  .language-toggle-container[b-bnmtx5ye28] {
    height: 30px;
  }

  .language-btn[b-bnmtx5ye28] {
    padding: 0 12px;
    font-size: 12px;
  }

  .divider[b-bnmtx5ye28] {
    height: 16px;
  }
}

@media (max-width: 480px) {
  .language-selector[b-bnmtx5ye28] {
    margin-left: 0;
    margin-top: 0.5rem;
  }

  .language-toggle-container[b-bnmtx5ye28] {
    height: 28px;
  }

  .language-btn[b-bnmtx5ye28] {
    padding: 0 10px;
    font-size: 11px;
  }
}
/* _content/FundacionSR/Components/Layout/MainLayout.razor.rz.scp.css */
/* Estilos para la estructura general del layout */
.main-layout[b-2vuoap3apt] {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.content[b-2vuoap3apt] {
    flex: 1 0 auto;
    padding-top: 55px;
    display: flex;
    flex-direction: column;  /* Asegurar que los hijos (header y contact-container) se apilen */
    box-sizing: border-box;
}


/* Estilos para el footer */
.container-footer[b-2vuoap3apt] {
    background: #254470 !important;
    color: #fff;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    padding: 40px 20px 30px;
    text-align: center !important;
    display: flex;
    flex-direction: column;
    margin-top: 40px;
    width: 100%;
    box-sizing: border-box;
    flex-shrink: 0; /* Asegura que el footer no se encoja */
}

    .container-footer h4[b-2vuoap3apt] {
        margin-top: 10px;
        margin-bottom: 15px;
        font-size: 24px;
        font-weight: bold;
    }

    .container-footer p[b-2vuoap3apt] {
        margin: 0 auto 30px;
        max-width: 800px;
        font-size: 16px;
        line-height: 1.5;
    }

    .container-footer h5[b-2vuoap3apt] {
        font-size: 18px;
        font-weight: normal;
        margin: 0;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
    }
/* _content/FundacionSR/Components/Layout/NavMenu.razor.rz.scp.css */
.navinfo[b-pcl0u9p6sx] {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background-color: #ffffff;
    height: 120px;
    box-sizing: border-box;
    position: relative;
    z-index: 1010;
    transition: all 0.3s ease-in-out;
}

.logo-container[b-pcl0u9p6sx] {
    display: flex;
    align-items: center;
}

.logo-container img[b-pcl0u9p6sx] {
    height: 95px;
    width: auto;
    margin-right: 0.5rem; 
    transition: height 0.3s ease-in-out, opacity 0.3s ease;
}

.navinfo.scrolled .logo-container img[b-pcl0u9p6sx] {
    height: 30px;
    opacity: 0.9; 
}

.brand-container[b-pcl0u9p6sx] {
    flex-grow: 1;
    text-align: left;
    padding: 0 1rem; 
}

.brand[b-pcl0u9p6sx] {
    font-size: 1.5rem;
    font-weight: bold;
    color: #004370; 
    transition: font-size 0.3s ease-in-out, transform 0.3s ease; 
    padding-right: 30%;
    white-space: nowrap; 
    overflow: hidden;     
    text-overflow: ellipsis; 
}

.navinfo.scrolled .brand[b-pcl0u9p6sx] {
    font-size: 1rem;
    transform: scale(0.9);
}

.contacto[b-pcl0u9p6sx] {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease-in-out;
    padding-right: 8%;
}

.navinfo.scrolled .contacto[b-pcl0u9p6sx] {
    gap: 1rem;
}

.correo[b-pcl0u9p6sx], .numero[b-pcl0u9p6sx] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.correo h2[b-pcl0u9p6sx], .numero h2[b-pcl0u9p6sx] {
    color: #000;
    font-size: 1.2rem; 
    font-weight: bold;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    margin: 0;
    transition: font-size 0.3s ease-in-out, color 0.3s ease; 
}

.navinfo.scrolled .correo h2[b-pcl0u9p6sx],
.navinfo.scrolled .numero h2[b-pcl0u9p6sx] {
    font-size: 0.8rem;
    color: #004370; 
}

.correo h4[b-pcl0u9p6sx], .numero h4[b-pcl0u9p6sx] {
    color: #004370;
    font-size: 1rem; 
    margin: 0;
    transition: font-size 0.3s ease-in-out;
}

.navinfo.scrolled .correo h4[b-pcl0u9p6sx],
.navinfo.scrolled .numero h4[b-pcl0u9p6sx] {
    font-size: 0.7rem;
}

.correo h2 i[b-pcl0u9p6sx], .numero h2 i[b-pcl0u9p6sx] {
    margin-right: 0.3rem; 
    transition: transform 0.3s ease; 
}

.navinfo.scrolled .correo h2 i[b-pcl0u9p6sx],
.navinfo.scrolled .numero h2 i[b-pcl0u9p6sx] {
    transform: rotate(10deg); 
}

.social-media[b-pcl0u9p6sx] {
    display: flex;
    gap: 1rem;
}

.social-media a[b-pcl0u9p6sx] {
    color: #E49133; 
    font-size: 1.5rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-media a:hover[b-pcl0u9p6sx] {
    color: #004370; 
    transform: scale(1.2); 
}

.menu-toggle[b-pcl0u9p6sx] {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #004370;
    cursor: pointer;
    padding: 0.5rem;
    transition: transform 0.3s ease; 
}

.menu-toggle:hover[b-pcl0u9p6sx] {
    transform: scale(1.1);
}

.menu-toggle:focus[b-pcl0u9p6sx] {
    outline: none;
}

/* Navbar Styles */
.navbar[b-pcl0u9p6sx] {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem 2rem;
    background-color: #254470; 
    color: #ffffff;
    width: 100%;
    z-index: 1005;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    position: relative;
    transition: all 0.3s ease-in-out;
}

.navbar.scrolled[b-pcl0u9p6sx] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1020;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    animation: slideDown-b-pcl0u9p6sx 0.3s ease-out;
}

.nav-links[b-pcl0u9p6sx] {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-links li[b-pcl0u9p6sx] {
    margin: 0 1rem;
}

.nav-links a[b-pcl0u9p6sx] {
    text-decoration: none;
    font-size: 1.3rem;
    color: #ffffff;
    font-weight: bold;
    transition: color 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    position: relative;
}

.nav-links a:hover[b-pcl0u9p6sx] {
    color: #E49133; 
    transform: scale(1.1); 
}

.nav-links a.active[b-pcl0u9p6sx] {
    color: #E49133;
}

.nav-links a.active i[b-pcl0u9p6sx] {
    color: #E49133;
}

.nav-links i[b-pcl0u9p6sx] {
    font-size: 1.3rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.nav-links a:hover i[b-pcl0u9p6sx] {
    color: #E49133;
    transform: rotate(10deg);
}

.nav-links a[b-pcl0u9p6sx]::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #E49133;
    transition: width 0.3s ease;
}

.nav-links a:hover[b-pcl0u9p6sx]::after {
    width: 100%;
}

.nav-links a.active[b-pcl0u9p6sx]::after {
    width: 100%;
}

@keyframes slideDown-b-pcl0u9p6sx {
    from {
        top: -60px;
    }
    to {
        top: 0;
    }
}

@keyframes fadeIn-b-pcl0u9p6sx {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@media (max-width: 1024px) {
    .navinfo[b-pcl0u9p6sx] {
        flex-direction: column;
        height: auto;
        padding: 1rem;
    }

    .logo-container[b-pcl0u9p6sx] {
        margin-bottom: 0.5rem;
    }

    .brand-container[b-pcl0u9p6sx] {
        margin-bottom: 0.5rem;
        text-align: center;
    }

    .contacto[b-pcl0u9p6sx] {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
        text-align: center;
    }

    .correo[b-pcl0u9p6sx], .numero[b-pcl0u9p6sx] {
        align-items: center;
    }

    .social-media[b-pcl0u9p6sx] {
        justify-content: center;
    }

    .menu-toggle[b-pcl0u9p6sx] {
        display: block;
        position: absolute;
        top: 0.5rem;
        right: 0.5rem;
    }
}

@media (max-width: 768px) {
    .navbar[b-pcl0u9p6sx] {
        padding: 1rem;
        position: relative;
    }

    .nav-links[b-pcl0u9p6sx] {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background-color: #254470;
        padding: 1rem 0;
        box-sizing: border-box;
        z-index: 999;
        animation: slideDown-b-pcl0u9p6sx 0.3s ease-out;
    }

    .nav-links.active[b-pcl0u9p6sx] {
        display: flex;
    }

    .nav-links li[b-pcl0u9p6sx] {
        margin: 0.5rem 0;
        width: 100%;
        text-align: center;
    }

    .nav-links a[b-pcl0u9p6sx] {
        padding: 0.8rem;
        font-size: 1.2rem;
    }

    .nav-links a[b-pcl0u9p6sx]::after {
        display: none;
    }

    .social-media[b-pcl0u9p6sx] {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .brand[b-pcl0u9p6sx] {
        font-size: 1.2rem;
    }

    .correo h2[b-pcl0u9p6sx], .numero h2[b-pcl0u9p6sx] {
        font-size: 1rem;
    }

    .correo h4[b-pcl0u9p6sx], .numero h4[b-pcl0u9p6sx] {
        font-size: 0.9rem;
    }

    .social-media[b-pcl0u9p6sx] {
        justify-content: center;
    }
}
/* _content/FundacionSR/Components/Pages/Home.razor.rz.scp.css */
/* Carousel Styles */
.custom-carousel-header[b-9bnhjk2p7j] {
    width: 100%;
    margin: 0;
    padding: 0;
}

.custom-carousel-container[b-9bnhjk2p7j] {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
}

.custom-carousel-full[b-9bnhjk2p7j] {
    height: calc(100vh - 180px);
    min-height: 400px;
    max-height: 80vh;
    overflow: hidden;
    position: relative;
    left: 0;
    top: 0;
}

.custom-carousel-track[b-9bnhjk2p7j] {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.custom-carousel-slide[b-9bnhjk2p7j] {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
}

.custom-carousel-slide img[b-9bnhjk2p7j] {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.custom-carousel-control[b-9bnhjk2p7j] {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(37, 68, 112, 0.7);
    color: #fff;
    border: none;
    width: 3rem;
    height: 3rem;
    cursor: pointer;
    font-size: 1.5rem;
    border-radius: 50%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.custom-carousel-control.prev[b-9bnhjk2p7j] {
    left: 1rem;
}

.custom-carousel-control.next[b-9bnhjk2p7j] {
    right: 1rem;
}

.custom-carousel-control:hover[b-9bnhjk2p7j] {
    background: #254470;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.custom-carousel-control svg[b-9bnhjk2p7j] {
    width: 1.5rem;
    height: 1.5rem;
}

/* Media Queries para responsividad */
@media (max-width: 1024px) {
    .custom-carousel-container[b-9bnhjk2p7j] {
        width: 100vw;
        margin-left: -50vw;
        margin-right: -50vw;
    }
    .custom-carousel-full[b-9bnhjk2p7j] {
        height: calc(100vh - 140px);
        min-height: 350px;
        max-height: 75vh;
    }
    .custom-carousel-control[b-9bnhjk2p7j] {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.2rem;
    }
    .custom-carousel-control svg[b-9bnhjk2p7j] {
        width: 1.2rem;
        height: 1.2rem;
    }
}

@media (max-width: 768px) {
    .custom-carousel-container[b-9bnhjk2p7j] {
        width: 100vw;
        margin-left: -50vw;
        margin-right: -50vw;
    }
    .custom-carousel-full[b-9bnhjk2p7j] {
        height: calc(100vh - 120px);
        min-height: 300px;
        max-height: 70vh;
    }
    .custom-carousel-control[b-9bnhjk2p7j] {
        width: 2rem;
        height: 2rem;
        font-size: 1rem;
    }
    .custom-carousel-control svg[b-9bnhjk2p7j] {
        width: 1rem;
        height: 1rem;
    }
}

@media (max-width: 480px) {
    .custom-carousel-container[b-9bnhjk2p7j] {
        width: 100vw;
        margin-left: -50vw;
        margin-right: -50vw;
    }
    .custom-carousel-full[b-9bnhjk2p7j] {
        height: calc(100vh - 100px);
        min-height: 250px;
        max-height: 60vh;
    }
    .custom-carousel-control[b-9bnhjk2p7j] {
        display: none;
    }
}

/* Container Body Styles */
.container-body[b-9bnhjk2p7j] {
    text-align: center;
    margin-bottom: 10px;
    margin-top: 60px;
}

.container-body h2[b-9bnhjk2p7j] {
    color: #014271;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    padding: 20px;
}

.container-imagen[b-9bnhjk2p7j] {
    margin: 20px auto;
    max-width: 800px;
}

.container-imagen img[b-9bnhjk2p7j] {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: block;
    margin: 0 auto;
}

/* Paragraph Styles */
.paragraph-full-width[b-9bnhjk2p7j] {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 24px;
    max-width: 1200px;
    margin: 40px auto;
    text-align: center;
    padding: 20px;
    color: #333;
    line-height: 1.8;
    transition: all 0.3s ease;
}

@media (max-width: 1024px) {
    .paragraph-full-width[b-9bnhjk2p7j] {
        max-width: 900px;
        font-size: 22px;
        padding: 15px;
    }
}

@media (max-width: 768px) {
    .paragraph-full-width[b-9bnhjk2p7j] {
        max-width: 700px;
        font-size: 20px;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .paragraph-full-width[b-9bnhjk2p7j] {
        max-width: 100%;
        font-size: 18px;
        padding: 5px;
        margin: 20px auto;
    }
}

/* Donate Button Styles */
.container-donar[b-9bnhjk2p7j] {
    background: #254470;
    width: 100vw;
    margin: 95px 0 0 0;
    padding: 1.3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-sizing: border-box;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.container-donar h2[b-9bnhjk2p7j] {
    color: #fff;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    padding: 1.3rem 2rem;
    text-align: center;
}

.donate-button[b-9bnhjk2p7j] {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 18px 30px;
    background-color: white;
    color: #254470;
    text-decoration: none;
    border: none;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin: 20px 0;
    text-align: center;
}

.donate-button i.fab.fa-paypal[b-9bnhjk2p7j] {
    font-size: 1.5rem;
    color: #0070BA;
    transition: color 0.3s ease;
}

.donate-button:hover[b-9bnhjk2p7j] {
    background-color: #E49133;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.donate-button:hover i.fab.fa-paypal[b-9bnhjk2p7j] {
    color: #fff; /* Color del ícono al pasar el mouse por el botón */
}

.donate-button:active[b-9bnhjk2p7j] {
    transform: translateY(0);
    box-shadow: none;
}

/* Work Areas Styles */
.container-areas[b-9bnhjk2p7j] {
    padding: 40px;
    text-align: center;
    margin-top: 30px;
    position: relative;
    overflow: hidden;
}

.container-areas h2[b-9bnhjk2p7j] {
    color: #014271;
    font-size: 3rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 1.5rem 2rem;
    margin-top: 60px;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    position: relative;
    z-index: 1;
}

.container-areas h2[b-9bnhjk2p7j]::after {
    content: '';
    position: absolute;
    width: 93%;
    height: 3px;
    background: #2E7D32;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    transition: width 0.3s ease;
}

.areas-grid[b-9bnhjk2p7j] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    padding: 40px;
    max-width: 1050px;
    margin: 0 auto;
    position: relative;
}

.area-card[b-9bnhjk2p7j] {
    background: #E49133;
    color: #fff;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
    opacity: 0;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.area-card:nth-child(odd)[b-9bnhjk2p7j],
.area-card:nth-child(even)[b-9bnhjk2p7j] {
    transform: translateY(0)
}

.area-card[b-9bnhjk2p7j]::before {
    content: '';
    position: absolute;
    top: -40%;
    left: -40%;
    width: 180%;
    height: 180%;
    opacity: 0.15;
    animation: pulse-b-9bnhjk2p7j 4s infinite;
    z-index: 0;
}

.area-card i[b-9bnhjk2p7j] {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: var(--card-accent, #fff);
    z-index: 1;
}

.area-card h3[b-9bnhjk2p7j] {
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-weight: 700;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.area-card p[b-9bnhjk2p7j] {
    font-size: 1rem;
    color: #ffffff;
    line-height: 1.5;
    padding: 0 10px;
    position: relative;
    z-index: 1;
}

@keyframes bounceInUp-b-9bnhjk2p7j {
    0% { opacity: 0; transform: translateY(50px) scale(0.9); }
    50% { opacity: 1; transform: translateY(-10px) scale(1.05); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes pulse-b-9bnhjk2p7j {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@media (max-width: 768px) {
    .areas-grid[b-9bnhjk2p7j] {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .area-card:nth-child(odd)[b-9bnhjk2p7j],
    .area-card:nth-child(even)[b-9bnhjk2p7j] {
        transform: translateY(0);
    }
}

/* Footer Styles */
.container-footer[b-9bnhjk2p7j] {
    background: #4B8BA3;
    color: #fff;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    padding: 40px 20px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    margin-top: 120px;
}

.container-footer h4[b-9bnhjk2p7j] {
    margin-top: 10px;
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: bold;
}

.container-footer p[b-9bnhjk2p7j] {
    margin: 0 auto 30px;
    max-width: 800px;
    font-size: 16px;
    line-height: 1.5;
}

.container-footer h5[b-9bnhjk2p7j] {
    font-size: 18px;
    font-weight: normal;
    margin: 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}
/* _content/FundacionSR/Components/Pages/Pantallas/Actividades/Actividades.razor.rz.scp.css */
body[b-k4eu9bltei] {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    background: #fff;
    margin: 0;
    padding: 0;
    color: #23272a;
}

.header-fundacion[b-k4eu9bltei] {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1150px;
    margin: 40px auto 32px auto;
    gap: 60px;
    padding: 90px 30px;
}

.header-texto[b-k4eu9bltei] {
    flex: 1 1 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

    .header-texto h1[b-k4eu9bltei] {
        font-size: 2.4em;
        font-weight: 700;
        color: #254470;
        margin: 0 0 22px 0;
        line-height: 1.16;
        letter-spacing: -1px;
    }

    .header-texto p[b-k4eu9bltei] {
        font-size: 1.12em;
        color: #323232;
        margin: 0 0 14px 0;
        line-height: 1.36;
        font-weight: 400;
    }

.section-actividades[b-k4eu9bltei] {
    max-width: 100vw;
    background: #f0f4f8;
    padding: 38px 0 44px 0;
    margin-top: 24px;
    width: 100vw;
    margin-left: calc(50% - 50vw);
}

    .section-actividades h2[b-k4eu9bltei] {
        color: #254470;
        text-align: center;
        font-size: 1.95em;
        font-weight: 700;
        margin-bottom: 34px;
        letter-spacing: 1px;
    }

.actividades-grid[b-k4eu9bltei] {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    justify-items: center;
    max-width: 1150px;
    margin: 0 auto;
}

.actividad-card[b-k4eu9bltei] {
    background: #fff;
    border-radius: 13px;
    padding: 24px 18px 18px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 425px;
    max-width: 340px;
}

    .actividad-card img[b-k4eu9bltei] {
        width: 98%;
        min-width: 225px;
        max-width: 320px;
        height: 145px;
        object-fit: cover;
        border-radius: 8px;
        margin-bottom: 16px;
        border: 2px solid #e2e9f2;
        background: #f8fafd;
    }

    .actividad-card .titulo[b-k4eu9bltei] {
        font-size: 1.08em;
        font-weight: 700;
        color: #1b2f4e;
        text-align: center;
        margin: 0 0 9px 0;
        line-height: 1.25;
    }

    .actividad-card p[b-k4eu9bltei] {
        font-size: 16px;
        color: #263143;
        text-align: center;
        margin: 0;
        line-height: 1.5;
    }

    


@media (max-width: 900px) {
    .header-fundacion[b-k4eu9bltei] {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .logo-container[b-k4eu9bltei] {
        flex-basis: auto;
    }

    .logo-fundacion[b-k4eu9bltei] {
        width: 185px;
        margin-bottom: 16px;
    }

    .header-texto h1[b-k4eu9bltei] {
        font-size: 1.5em;
        margin-bottom: 16px;
    }

    .actividades-grid[b-k4eu9bltei] {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
}

@media (max-width: 600px) {
    .header-fundacion[b-k4eu9bltei] {
        padding: 10px;
        gap: 20px;
    }

    .section-actividades[b-k4eu9bltei] {
        padding: 20px 0 24px 0;
    }

    .actividades-grid[b-k4eu9bltei] {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 0 6px;
    }

    .actividad-card[b-k4eu9bltei] {
        margin: 0 auto;
        min-height: unset;
    }
}

.texto-final[b-k4eu9bltei] {
    max-width: 1100px;
    margin: 50px auto 0 auto;
    border-radius: 0 0 12px 12px;
    padding: 36px 28px 34px 28px;
    font-size: 1.08em;
    color: #323232;
    text-align: center;
    line-height: 1.46;
}

    .texto-final p[b-k4eu9bltei] {
        margin: 0;
    }

@media (max-width: 700px) {
    .texto-final[b-k4eu9bltei] {
        padding: 18px 8px 18px 8px;
        font-size: 1em;
    }
}


/*iconos finales*/

/* Contenedor de iconos debajo del texto final */
.iconos-actividades[b-k4eu9bltei] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 60px 200px;
    max-width: 600px;
    margin: 50px auto 40px auto;
    padding: 0 28px;
    justify-items: center;
}

/* Primer icono centrado en la parte superior */
.icono-item:nth-child(1)[b-k4eu9bltei] {
    grid-column: 1 / 3;
    justify-self: center;
}

/* Segundo icono abajo a la izquierda */
.icono-item:nth-child(2)[b-k4eu9bltei] {
    grid-column: 1;
    justify-self: center;
}

/* Tercer icono abajo a la derecha */
.icono-item:nth-child(3)[b-k4eu9bltei] {
    grid-column: 2;
    justify-self: center;
}

.icono-item[b-k4eu9bltei] {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.actividad-icon[b-k4eu9bltei] {
    width: 70px;
    height: 70px;
    background-color: #254470;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(37, 68, 112, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .actividad-icon i[b-k4eu9bltei] {
        font-size: 28px;
        color: #E49133;
    }

    .actividad-icon:hover[b-k4eu9bltei] {
        transform: translateY(-3px);
        box-shadow: 0 6px 16px rgba(37, 68, 112, 0.3);
    }

.icono-item p[b-k4eu9bltei] {
    font-size: 1em;
    color: #323232;
    margin: 0;
    font-weight: 500;
    line-height: 1.3;
    max-width: 140px;
    color: #254470;
}

/* Responsive */
@media (max-width: 900px) {
    .iconos-actividades[b-k4eu9bltei] {
        gap: 50px 120px;
        max-width: 500px;
    }

    .actividad-icon[b-k4eu9bltei] {
        width: 60px;
        height: 60px;
    }

        .actividad-icon i[b-k4eu9bltei] {
            font-size: 24px;
        }
}

@media (max-width: 700px) {
    .iconos-actividades[b-k4eu9bltei] {
        gap: 40px 80px;
        max-width: 400px;
        margin: 40px auto 30px auto;
    }

    .actividad-icon[b-k4eu9bltei] {
        width: 55px;
        height: 55px;
    }

        .actividad-icon i[b-k4eu9bltei] {
            font-size: 22px;
            
        }

    .icono-item p[b-k4eu9bltei] {
        font-size: 0.9em;
        max-width: 120px;
    }
}

@media (max-width: 500px) {
    .iconos-actividades[b-k4eu9bltei] {
        gap: 35px 60px;
        max-width: 300px;
    }

    .actividad-icon[b-k4eu9bltei] {
        width: 50px;
        height: 50px;
    }

        .actividad-icon i[b-k4eu9bltei] {
            font-size: 20px;
        }
}
/* _content/FundacionSR/Components/Pages/Pantallas/Contacto/ContactUs.razor.rz.scp.css */
.contact-container[b-ee4hrstxen] {
    display: flex;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
    width: 90%;
    min-height: 650px;
    overflow: hidden;
    margin-top: 35px;
    margin-left: auto;
    margin-right: auto;
}


.contact-info[b-ee4hrstxen] {
    flex: 1;
    padding: 40px;
    background-color: #f0f4f8;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 25px;
    border-right: 1px solid #e0e0e0;
}

.contacto[b-ee4hrstxen] {
    margin-bottom: 40px; 
}

.info-item[b-ee4hrstxen] {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

    .info-item .icon[b-ee4hrstxen] {
        font-size: 28px;
        color: #254470;
        margin-top: 5px;
    }

    .info-item h3[b-ee4hrstxen] {
        margin: 0;
        color: #333;
        font-size: 18px;
        font-weight: 600;
    }

    .info-item p[b-ee4hrstxen] {
        margin: 2px 0 0;
        color: #555;
        font-size: 14px;
        line-height: 1.4;
    }

.social-links[b-ee4hrstxen] {
    display: none;
}

.contact-form-card[b-ee4hrstxen] {
    flex: 1.5;
    background-color: #f0f4f8;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

    .contact-form-card h2[b-ee4hrstxen] {
        display: none;
    }

    .contact-form-card form[b-ee4hrstxen] {
        display: flex;
        flex-direction: column;
    }


    .contact-form-card .form-label[b-ee4hrstxen] {
        font-size: 16px;
        color: #555;
        margin-bottom: 0.2rem;
    }

    .contact-form-card .form-control[b-ee4hrstxen] {
        border: 1px solid #ced4da;
        border-radius: 0.25rem;
        padding: 0.75rem 0.75rem;
        font-size: 1rem;
        line-height: 1.5;
        color: #495057;
        background-color: #fff;
        background-clip: padding-box;
        transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    }

        .contact-form-card .form-control:focus[b-ee4hrstxen] {
            border-color: #254470;
            box-shadow: 0 0 0 0.25rem rgba(37, 68, 112, 0.25);
        }

.custom-textarea-no-resize[b-ee4hrstxen] {
    resize: none !important;
    min-height: 120px;
    overflow-y: auto;
}


.custom-btn[b-ee4hrstxen] {
    background-color: #E49133;
    border-color: #E49133;
    color: #fff;
    padding: 12px 25px;
    font-size: 17px;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    align-self: flex-start;
    margin-top: 25px;
    border-radius: 0.25rem;
}

    .custom-btn:hover[b-ee4hrstxen] {
        background-color: #254470;
        border-color: #254470;
        color: #fff;
    }

/* Responsividad */
@media (max-width: 768px) {
    .card-header[b-ee4hrstxen] {
        padding: 2rem 1rem;
        margin-bottom: 20px;
    }

        .card-header h1[b-ee4hrstxen] {
            font-size: 2.5rem;
        }

        .card-header p[b-ee4hrstxen] {
            font-size: 1rem;
        }

    .contact-container[b-ee4hrstxen] {
        flex-direction: column;
        width: 100%;
        min-height: auto;
    }

    .contact-info[b-ee4hrstxen],
    .contact-form-card[b-ee4hrstxen] {
        padding: 30px;
        border-radius: 0;
        border-right: none;
    }

    .contact-form-card[b-ee4hrstxen] {
        border-top-right-radius: 8px;
        border-bottom-left-radius: 8px;
    }

    .custom-btn[b-ee4hrstxen] {
        width: 100%;
        align-self: stretch;
    }

    .custom-textarea-no-resize[b-ee4hrstxen] {
        min-height: 100px;
    }
    .contacto[b-ee4hrstxen] {
        margin-top: 0; 
    }
}
/* _content/FundacionSR/Components/Pages/Pantallas/Directiva/JuntaDirectiva.razor.rz.scp.css */
.junta-directiva-container[b-620obrhpo0] {
    width: 100%;
    height: auto;
    position: relative;
    display: flex;
    justify-content: center;
    padding: 2rem 0;
    min-height: 100vh;
}

.junta-directiva-layout[b-620obrhpo0] {
    display: flex;
    gap: 4rem;
    justify-content: center;
    align-items: flex-start;
    max-width: 120rem;
    margin: 0 auto;
    padding: 1rem;
}

.junta-members-container[b-620obrhpo0] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: flex-start;
    align-items: center;
}

.junta-card-row[b-620obrhpo0] {
    display: flex;
    flex-wrap: wrap;
    gap: 5rem;
    justify-content: center;
    width: 100%;
}

.junta-card-container[b-620obrhpo0] {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 14rem;
}

.junta-card[b-620obrhpo0] {
    width: 12rem;
    height: 12rem;
    border-radius: 50%;
    background-color: #d3d3d3;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.president-container .junta-card[b-620obrhpo0] {
    width: 18rem;
    height: 18rem;
}

.president-container[b-620obrhpo0] {
    padding-top: 22%;
}

.junta-card-image[b-620obrhpo0] {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
}

    .junta-card-image img[b-620obrhpo0] {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: opacity 0.3s ease;
    }

.junta-card-text[b-620obrhpo0] {
    margin-top: 0.5rem;
    text-align: center;
    font-family: Arial, sans-serif;
    color: #333;
    max-width: 10rem;
    word-wrap: break-word;
}

    .junta-card-text h4[b-620obrhpo0] {
        font-size: 1rem;
        font-weight: bold;
        color: #004370;
        margin-bottom: 0.2rem;
    }

    .junta-card-text .junta-card-position[b-620obrhpo0] {
        font-size: 0.9rem;
        font-weight: 600;
        color: #E49133;
        margin-top: 0;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

.president-container .junta-card-text h3[b-620obrhpo0] {
    font-size: 1.2rem;
    font-weight: bold;
    color: #004370;
    margin-bottom: 0.5rem;
}

.president-container .junta-card-text .president-position[b-620obrhpo0] {
    font-size: 1.1rem;
    font-weight: bold;
    color: #E49133;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ✅ ORDENADOR (>=1025px) */
@media (min-width: 1025px) {
    .president-container[b-620obrhpo0] {
        position: sticky;
        top: 115px;
        align-self: flex-start;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .junta-directiva-layout[b-620obrhpo0] {
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        gap: 4rem;
    }
}

/* ✅ TABLET (769px – 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .junta-directiva-layout[b-620obrhpo0] {
        flex-direction: column;
        align-items: center;
        gap: 3rem;
        max-width: 80rem;
    }

    .junta-card[b-620obrhpo0] {
        width: 10rem;
        height: 10rem;
    }

    .president-container .junta-card[b-620obrhpo0] {
        width: 14rem;
        height: 14rem;
    }

    .junta-card-text h4[b-620obrhpo0] {
        font-size: 0.9rem;
    }

    .junta-card-text .junta-card-position[b-620obrhpo0] {
        font-size: 0.8rem;
    }

    .president-container .junta-card-text h3[b-620obrhpo0] {
        font-size: 1.2rem;
    }

    .president-container .junta-card-text .president-position[b-620obrhpo0] {
        font-size: 1rem;
    }
}

/* ✅ CELULARES (≤768px) */
@media (max-width: 768px) {
    .junta-directiva-layout[b-620obrhpo0] {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    /* Presidente centrado en primera fila */
    .president-container[b-620obrhpo0] {
        padding-top: 0;
        margin-bottom: 1.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: static;
    }

    /* GRID para miembros en móvil */
    .junta-members-container[b-620obrhpo0] {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        justify-items: center;
        width: 100%;
    }

        /* Si queda un miembro sin par, centramos */
        .junta-members-container > .junta-card-container:nth-last-child(1):nth-child(odd)[b-620obrhpo0] {
            grid-column: 1 / -1;
            justify-self: center;
        }

    .junta-card-container[b-620obrhpo0] {
        max-width: 9rem;
    }

    .junta-card[b-620obrhpo0] {
        width: 9rem;
        height: 9rem;
    }

    .president-container .junta-card[b-620obrhpo0] {
        width: 11rem;
        height: 11rem;
    }

    .junta-card-text h4[b-620obrhpo0] {
        font-size: 0.8rem;
    }

    .junta-card-text .junta-card-position[b-620obrhpo0] {
        font-size: 0.7rem;
    }

    .president-container .junta-card-text h3[b-620obrhpo0] {
        font-size: 1rem;
    }

    .president-container .junta-card-text .president-position[b-620obrhpo0] {
        font-size: 0.9rem;
    }
}

/* Comité */
.comite-container[b-620obrhpo0] {
    width: 100%;
    height: auto;
    position: relative;
    display: flex;
    justify-content: center;
    padding: 2rem 0;
    min-height: 40vh;
}

.comite-members-container[b-620obrhpo0] {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    justify-content: flex-start;
    align-items: center;
    max-width: 120rem;
    margin: 0 auto;
    padding: 1rem;
}

.comite-card-row[b-620obrhpo0] {
    display: flex;
    flex-wrap: wrap;
    gap: 5rem;
    justify-content: center;
    width: 100%;
}

.comite-card-container[b-620obrhpo0] {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 14rem;
}

.comite-card[b-620obrhpo0] {
    width: 12rem;
    height: 12rem;
    border-radius: 50%;
    background-color: #d3d3d3;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.comite-card-image[b-620obrhpo0] {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
}

    .comite-card-image img[b-620obrhpo0] {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: opacity 0.3s ease;
    }

.comite-card-text[b-620obrhpo0] {
    margin-top: 0.5rem;
    text-align: center;
    font-family: Arial, sans-serif;
    max-width: 10rem;
    word-wrap: break-word;
    color: #004370;
}

    .comite-card-text h4[b-620obrhpo0] {
        font-size: 1rem;
        font-weight: bold;
        color: #004370;
        margin-bottom: 0.2rem;
    }

/* Responsive Comité */
@media (max-width: 1024px) {
    .comite-card[b-620obrhpo0] {
        width: 10rem;
        height: 10rem;
    }

    .comite-card-text h4[b-620obrhpo0] {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .comite-card-row[b-620obrhpo0] {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        justify-items: center;
        width: 100%;
    }

        /* First two rows with 2 cards each, last row with 1 card centered */
        .comite-card-row > .comite-card-container:nth-child(1)[b-620obrhpo0],
        .comite-card-row > .comite-card-container:nth-child(2)[b-620obrhpo0] {
            grid-column: span 1;
        }

        .comite-card-row > .comite-card-container:nth-child(3)[b-620obrhpo0],
        .comite-card-row > .comite-card-container:nth-child(4)[b-620obrhpo0] {
            grid-column: span 1;
        }

        .comite-card-row > .comite-card-container:nth-child(5)[b-620obrhpo0] {
            grid-column: 1 / -1;
            justify-self: center;
        }

    .comite-card[b-620obrhpo0] {
        width: 9rem;
        height: 9rem;
    }

    .comite-card-text h4[b-620obrhpo0] {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .comite-card[b-620obrhpo0] {
        width: 6rem;
        height: 6rem;
    }

    .comite-card-container[b-620obrhpo0] {
        width: 8rem;
    }

    .comite-card-text[b-620obrhpo0] {
        margin-top: 0.3rem;
        max-width: 8rem;
    }

        .comite-card-text h4[b-620obrhpo0] {
            font-size: 0.7rem;
            margin-bottom: 0.1rem;
        }
}
/* _content/FundacionSR/Components/Pages/Pantallas/Donaciones/Donaciones.razor.rz.scp.css */
.donaciones-container[b-4oaj1pwxn2] {
    text-align: center;
    padding: 35px;
    max-width: 1000px;
    margin: 0 auto;
}

.header[b-4oaj1pwxn2] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 45px;
    margin-bottom: 100px;
    margin-top: 40px;
}

.logo[b-4oaj1pwxn2] {
    max-width: 100%;
    height: auto;
    width: 300px; 
    display: block;
}

.header-text[b-4oaj1pwxn2] {
    max-width: 600px;
}

h1[b-4oaj1pwxn2] {
    font-size: 2.4em;
    margin-bottom: 10px;
    font-weight: bold;
    color: #254470;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    text-align: center;
}

.descripcion[b-4oaj1pwxn2] {
    font-size: 1.12em;
    color: #323232;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    line-height: 1.5;
    text-align: center;
}

.donaciones-background[b-4oaj1pwxn2] {
    background-color: #eef2f5;
    padding: 70px 0;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-bottom: -75px;
}

.donaciones-grid[b-4oaj1pwxn2] {
    max-width: 1000px; 
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    justify-items: center;
    justify-content: center;
}

.donacion-item[b-4oaj1pwxn2] {
    background: #f8f8f8;
    padding: 10px;
    text-align: center;
    width: 350px;
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

    

    .donacion-item img[b-4oaj1pwxn2] {
        width: 100%;
        height: auto;
        border-radius: 8px;
    }

    .donacion-item p[b-4oaj1pwxn2] {
        margin-top: 10px;
        font-size: 18px;
        font-weight: bold;
        color: #1b2f4e;
        font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    }


@media (max-width: 900px) {
    .donaciones-grid[b-4oaj1pwxn2] {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .header[b-4oaj1pwxn2] {
        flex-direction: column;
        gap: 30px;
    }

    .logo[b-4oaj1pwxn2] {
        width: 120px;
    }
}

@media (max-width: 600px) {
    .donaciones-grid[b-4oaj1pwxn2] {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 0 10px;
    }

    .donacion-item[b-4oaj1pwxn2] {
        width: 100%;
    }

    .header-text[b-4oaj1pwxn2] {
        text-align: center;
    }
}
/* _content/FundacionSR/Components/Pages/Pantallas/Informacion/AboutUs.razor.rz.scp.css */
.formato[b-j1aqfiu77b] {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    background: none;
    padding: 2rem 0;
}

/* Colors */
.azul-oscuro[b-j1aqfiu77b] {
    color: #014271;
}

.azul-claro[b-j1aqfiu77b] {
    color: #4B8BA3;
}

.verde[b-j1aqfiu77b] {
    color: #88BF1C;
}

/* Header */
.headerSize[b-j1aqfiu77b] {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.intro-text[b-j1aqfiu77b] {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 60px;
}

/* Card Styles */
.card-header[b-j1aqfiu77b] {
    background-color: transparent !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0);
    padding-bottom: 1rem;
}

.card-custom[b-j1aqfiu77b] {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2);
    height: 120%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.card-icon[b-j1aqfiu77b] {
    width: 70px;
    height: 70px;
    background-color: #E49133;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
    transition: background-color 0.3s ease;
}

.card-custom:hover .card-icon[b-j1aqfiu77b] {
    background-color: #FFA948;
}

.card-icon i[b-j1aqfiu77b] {
    color: #254470;
    font-size: 1.75rem;
}

.card-title-custom[b-j1aqfiu77b] {
    font-weight: 600;
    color: #014271;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.card-text-custom[b-j1aqfiu77b] {
    list-style-type: none;
    padding: 0;
    margin: 0;
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
}

    .card-text-custom li[b-j1aqfiu77b] {
        text-align: center;
    }
/* Responsividad */
@media (max-width: 768px) {
    .row[b-j1aqfiu77b] {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .col-md-4[b-j1aqfiu77b] {
        margin-bottom: 20px;
        width: 100%;
    }

    .card-custom[b-j1aqfiu77b] {
        padding: 1.5rem;
    }

    .card-icon[b-j1aqfiu77b] {
        width: 60px;
        height: 60px;
    }

        .card-icon i[b-j1aqfiu77b] {
            font-size: 1.5rem;
        }
}

/* Botón personalizado */
.btn-custom[b-j1aqfiu77b] {
    display: inline-block;
    padding: 0.90rem 1.9rem;
    margin-top: 90px;
    font-size: 1rem;
    font-weight: 520;
    color: #fff;
    background-color: #88BF1C;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

    .btn-custom:hover[b-j1aqfiu77b] {
        background-color: #9BD921;
        transform: translateY(-2px);
        color: #fff;
    }
