:root {
    --primary: #1f5f3b;
    --primary-dark: #17472d;
    --secondary: #2f8f57;
    --accent: #3aa0c8;
    --light-bg: #f5f9f5;
    --soft-bg: #eef6ef;
    --text-dark: #1f2937;
    --text-muted: #5f6b7a;
    --white: #ffffff;
    --shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    --radius: 18px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    background-color: #ffffff;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand,
.brand-text,
.section-tag,
.btn,
.footer-title,
.footer-subtitle {
    font-family: 'Montserrat', sans-serif;
}

main {
    min-height: 60vh;
}

a {
    text-decoration: none;
}

/* Navbar */
.shakaim-navbar {
    background: rgba(23, 71, 45, 0.96);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    padding-top: 14px;
    padding-bottom: 14px;
}

.brand-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 50%;
    background: #fff;
    padding: 4px;
}

.brand-text {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.navbar .nav-link {
    color: rgba(255, 255, 255, 0.92) !important;
    font-weight: 600;
    margin-left: 8px;
    margin-right: 8px;
    transition: 0.3s ease;
}

.navbar .nav-link:hover {
    color: #d4f3de !important;
}

.btn-contacto {
    background: var(--white);
    color: var(--primary-dark);
    border-radius: 999px;
    padding: 10px 22px;
    font-weight: 700;
    border: none;
}

.btn-contacto:hover {
    background: #eaf7ee;
    color: var(--primary-dark);
}

/* Hero */
.hero-home {
    position: relative;
}

.hero-slide-image,
.hero-static {
    height: 88vh;
    min-height: 560px;
    object-fit: cover;
}

.hero-static {
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(18, 54, 35, 0.60), rgba(18, 54, 35, 0.60)),
        url("https://images.unsplash.com/photo-1448375240586-882707db888b?q=80&w=1600&auto=format&fit=crop") center/cover no-repeat;
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(15, 41, 28, 0.82) 15%, rgba(15, 41, 28, 0.25) 75%);
    z-index: 1;
}

.hero-caption {
    z-index: 2;
    left: 8%;
    right: auto;
    bottom: 16%;
    text-align: left;
    max-width: 700px;
}

.hero-box {
    max-width: 680px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    padding: 10px 18px;
    border-radius: 999px;
    font-size: 0.9rem;
    margin-bottom: 18px;
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-box h1 {
    font-size: clamp(2.2rem, 5vw, 4.2rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 18px;
}

.hero-box p {
    font-size: 1.08rem;
    color: rgba(255, 255, 255, 0.92);
    max-width: 620px;
    margin-bottom: 24px;
}

.btn-hero,
.btn-hero-secondary {
    border-radius: 999px;
    padding: 12px 26px;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.10);
}

.btn-hero {
    background: var(--secondary);
    border: none;
    color: #fff;
}

.btn-hero:hover {
    background: var(--primary-dark);
    color: #fff;
}

.btn-hero-secondary {
    background: var(--white);
    color: var(--primary-dark);
    border: 1px solid #dbe8dd;
}

.btn-hero-secondary:hover {
    background: var(--soft-bg);
    color: var(--primary-dark);
}

/* Sections */
.section-space {
    padding: 90px 0;
}

.bg-light-green {
    background: var(--light-bg);
}

.section-header {
    margin-bottom: 42px;
}

.section-header h2 {
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.section-header p {
    color: var(--text-muted);
    max-width: 850px;
    margin: 0 auto;
}

.section-tag {
    display: inline-block;
    padding: 9px 18px;
    border-radius: 999px;
    background: #e5f4ea;
    color: var(--primary);
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 14px;
}

.section-tag-light {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

/* Feature cards */
.feature-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 34px 24px;
    box-shadow: var(--shadow);
    height: 100%;
    transition: transform 0.3s ease;
    text-align: center;
}

.feature-card:hover,
.service-card:hover,
.news-card:hover,
.gallery-card:hover {
    transform: translateY(-6px);
}

.feature-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d9f3e1, #e9f7ee);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.7rem;
}

.feature-card h5 {
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--primary-dark);
}

.feature-card p {
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Service cards */
.service-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.service-img-wrap {
    height: 220px;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-body {
    padding: 24px;
}

.service-body h5 {
    font-weight: 700;
    color: var(--primary-dark);
}

.service-body p {
    color: var(--text-muted);
}

/* Links */
.link-arrow {
    color: var(--secondary);
    font-weight: 700;
}

.link-arrow i {
    transition: transform 0.3s ease;
}

.link-arrow:hover i {
    transform: translateX(4px);
}

/* News cards */
.news-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.news-image-wrap {
    height: 250px;
    overflow: hidden;
}

.news-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-content {
    padding: 24px;
}

.news-content h5 {
    color: var(--primary-dark);
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 10px;
}

.news-content p {
    color: var(--text-muted);
}

.news-badge {
    display: inline-block;
    padding: 7px 14px;
    border-radius: 999px;
    background: #e6f5eb;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.82rem;
}

.news-date {
    font-size: 0.92rem;
    color: #7a8794;
}

/* Gallery */
.gallery-home-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbf8 100%);
}

.gallery-thumb,
.gallery-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #fff;
}

.gallery-thumb img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.gallery-card-img {
    height: 240px;
    overflow: hidden;
}

.gallery-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-card-body {
    padding: 20px;
}

.gallery-card-body h6 {
    color: var(--primary-dark);
    font-weight: 700;
    margin-top: 12px;
}

.gallery-card-body p {
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Page banner */
.page-banner-small {
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary));
    color: #fff;
    padding: 85px 0 70px;
}

.page-banner-small h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 12px;
}

.page-banner-small p {
    max-width: 760px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.92);
}

/* Content blocks */
.content-box,
.article-box,
.contact-form-card,
.contact-info-card,
.sidebar-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
}

.content-box p,
.article-box p {
    color: var(--text-dark);
    line-height: 1.85;
}

.sidebar-card h4,
.contact-form-card h3,
.contact-info-card h3 {
    color: var(--primary-dark);
    font-weight: 700;
    margin-bottom: 20px;
}

.sidebar-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-links li {
    border-bottom: 1px solid #eef1ef;
    padding: 10px 0;
}

.sidebar-links li:last-child {
    border-bottom: none;
}

.sidebar-links a {
    color: var(--text-dark);
    font-weight: 600;
}

.team-mini-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid #eef1ef;
}

.team-mini-card:last-child {
    border-bottom: none;
}

.team-mini-card img {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: cover;
}

.team-mini-card h6 {
    margin-bottom: 2px;
    font-weight: 700;
    color: var(--primary-dark);
}

.team-mini-card small {
    color: var(--text-muted);
}

.recent-post-item {
    padding: 12px 0;
    border-bottom: 1px solid #eef1ef;
}

.recent-post-item:last-child {
    border-bottom: none;
}

.recent-post-item a {
    color: var(--text-dark);
    font-weight: 600;
}

/* CTA */
.cta-section {
    padding: 0 0 90px;
    background: #fff;
}

.cta-box {
    background: linear-gradient(135deg, var(--primary-dark), var(--secondary));
    border-radius: 28px;
    padding: 60px 30px;
    color: #fff;
    box-shadow: var(--shadow);
}

.cta-box h2 {
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-box p {
    max-width: 760px;
    margin: 0 auto 24px;
    color: rgba(255, 255, 255, 0.90);
}

/* Footer */
.footer-shakaim {
    background: #102d1d;
    color: rgba(255, 255, 255, 0.90);
    padding: 70px 0 28px;
}

.footer-title,
.footer-subtitle {
    color: #fff;
    font-weight: 700;
}

.footer-text,
.footer-contact,
.footer-copy {
    color: rgba(255, 255, 255, 0.80);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
}

.footer-links a:hover,
.footer-social a:hover {
    color: #b9f0c8;
}

.footer-social {
    display: flex;
    gap: 14px;
    margin-top: 14px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.10);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.12);
    margin: 34px 0 24px;
}

/* Forms */
.form-control {
    border-radius: 12px;
    padding: 13px 14px;
    border: 1px solid #dbe5dd;
}

.form-control:focus {
    box-shadow: 0 0 0 0.2rem rgba(47, 143, 87, 0.15);
    border-color: var(--secondary);
}

/* Responsive */
@media (max-width: 991px) {

    .hero-slide-image,
    .hero-static {
        height: 72vh;
        min-height: 500px;
    }

    .hero-caption {
        left: 5%;
        right: 5%;
        bottom: 12%;
    }

    .navbar .nav-link {
        margin: 6px 0;
    }

    .btn-contacto {
        margin-top: 10px;
        display: inline-block;
    }

    .btn-donar {
        background: #f4b400;
        color: #1f2937;
        border-radius: 999px;
        padding: 10px 22px;
        font-weight: 800;
        border: none;
        box-shadow: 0 10px 24px rgba(244, 180, 0, 0.22);
        transition: all 0.3s ease;
    }

    .btn-donar:hover {
        background: #e0a800;
        color: #1f2937;
        transform: translateY(-2px);
    }
}

@media (max-width: 767px) {
    .section-space {
        padding: 65px 0;
    }

    .hero-box h1 {
        font-size: 2.2rem;
    }

    .hero-box p {
        font-size: 0.98rem;
    }

    .gallery-thumb img {
        height: 140px;
    }

    .content-box,
    .article-box,
    .contact-form-card,
    .contact-info-card,
    .sidebar-card {
        padding: 22px;
    }
}

.donar-lista {
    padding-left: 18px;
}

.donar-lista li {
    margin-bottom: 10px;
    color: var(--text-dark);
}

.donacion-box {
    background: #f8fbf8;
    border: 1px solid #e3efe5;
    border-radius: 14px;
    padding: 18px;
}

.donacion-box h5 {
    color: var(--primary-dark);
    font-weight: 700;
    margin-bottom: 12px;
}

.whatsapp-float {
    position: fixed;
    width: 62px;
    height: 62px;
    bottom: 24px;
    right: 24px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: pulseWhatsapp 2s infinite;
}

.whatsapp-float:hover {
    background: #1ebe5d;
    color: #fff;
    transform: translateY(-4px) scale(1.05);
}

@keyframes pulseWhatsapp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45);
    }

    70% {
        box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 56px;
        height: 56px;
        bottom: 18px;
        right: 18px;
        font-size: 1.8rem;
    }
}

.whatsapp-container {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 10px;
}

.whatsapp-label {
    background: #ffffff;
    color: #1f2937;
    padding: 10px 14px;
    border-radius: 999px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.10);
    font-size: 0.92rem;
    font-weight: 600;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .whatsapp-container {
        bottom: 18px;
        right: 18px;
    }

    .whatsapp-label {
        display: none;
    }
}