@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Outfit:wght@100..900&display=swap');

:root {
    --primary: #1B9C85;
    --primary-light: #48CFCB;
    --secondary: #FFC436;
    --accent: #EF6262;
    --bg-light: #ffffff;
    --text-dark: #2C3333;
    --text-light: #526D82;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --radius: 20px;
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Lucide Icon Fixes */
.lucide {
    width: 1em;
    height: 1em;
    vertical-align: -0.125em;
    stroke-width: 2.5; /* Sharper icons */
}

.card-icon .lucide {
    width: 3.5rem;
    height: 3.5rem;
}

.agenda-info .lucide {
    width: 14px;
    height: 14px;
}

[style*="background"] .lucide {
    width: 24px;
    height: 24px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

/* Navbar */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); /* Clean, subtle shadow instead of curve */
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-shield {
    height: 50px;
}

.logo-text {
    height: 35px;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links li a {
    font-weight: 600;
    color: var(--text-dark);
    padding: 8px 15px;
    border-radius: 50px;
}

.nav-links li a:hover, .nav-links li a.active {
    background: var(--primary);
    color: var(--white);
}

.btn-cta {
    background: var(--secondary);
    color: var(--text-dark);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(255, 196, 54, 0.4);
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 196, 54, 0.6);
}

/* Hero Section */
.hero {
    padding: 60px 5% 150px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: auto;
    gap: 80px;
    background: var(--primary);
    background-image: 
        radial-gradient(at 0% 0%, rgba(255, 196, 54, 0.1) 0, transparent 50%);
    position: relative;
    overflow: visible; 
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%231B9C85' fill-opacity='1' d='M0,224L48,213.3C96,203,192,181,288,181.3C384,181,480,203,576,224C672,245,768,267,864,250.7C960,235,1056,181,1152,165.3C1248,149,1344,171,1392,181.3L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 5;
    transform: rotate(180deg); /* Flip it so it transitions Green -> White */
}

.hero-content {
    flex: 1.2;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #ffffff;
    font-weight: 900;
    text-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.hero-image {
    flex: 1.1;
    position: relative;
    z-index: 2;
}

.hero-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 5px solid var(--white);
    transform: none;
}


/* Sections */
section {
    padding: 80px 5%;
}

.bg-soft-blue, .bg-secondary {
    background-color: #f8fafc; /* Professional Soft Neutral */
}

.bg-white {
    background-color: #ffffff;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary);
    position: relative;
    display: inline-block;
    font-weight: 800;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background: var(--secondary);
    border-radius: 50px;
}

.section-title h2::before {
    content: '✦';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--secondary);
    font-size: 1.2rem;
    opacity: 0.6;
}

/* Stats Section */
.stats-section {
    background: var(--white);
    border-radius: 50px;
    margin: 0 5%;
    padding: 25px 40px;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 10;
    margin-top: 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    align-items: center;
    gap: 20px;
}

.stats-item {
    padding: 10px 20px;
    border-right: 1px solid #eee;
}

.stats-item:last-child {
    border-right: none;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 5px;
}

.stat-label {
    color: var(--text-light);
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.color-primary { color: var(--primary); }
.color-secondary { color: var(--secondary); }
.color-accent { color: var(--accent); }

.accreditation-stat {
    background: linear-gradient(135deg, var(--primary) 0%, #116D5B 100%);
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 10px;
    box-shadow: 0 10px 20px rgba(27, 156, 133, 0.3);
}

/* Cards */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    transition: 0.3s ease;
    border-bottom: 5px solid transparent;
}

.card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--primary);
}

.card-prestige {
    background: linear-gradient(145deg, #ffffff 0%, #f0f9f6 100%);
    border: 2px solid var(--primary);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(27, 156, 133, 0.15);
}

.card-prestige::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(27, 156, 133, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.badge-nasional {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(239, 98, 98, 0.3);
    z-index: 2;
}

.prestige-img {
    width: 150px;
    height: auto;
    display: block;
    margin: 0 auto 20px;
    transition: 0.5s;
}

.card-prestige:hover .prestige-img {
    transform: scale(1.1) rotate(5deg);
}

.btn-more {
    display: inline-block;
    padding: 10px 25px;
    background: var(--primary);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    transition: 0.3s;
    margin-top: 20px;
}

.btn-more:hover {
    background: var(--secondary);
    color: var(--text-dark);
    transform: translateY(-2px);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--secondary);
}

/* Footer */
footer {
    background: var(--primary);
    color: var(--white);
    padding: 80px 5% 40px;
    position: relative;
    margin-top: 0; /* Remove margin to avoid background bleed */
}

/* Smooth Wave Transition for Footer - removed */

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo h2 {
    margin-bottom: 20px;
}

.footer-links h3 {
    margin-bottom: 25px;
    color: var(--secondary);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-icon svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

.social-icon:hover {
    transform: translateY(-5px);
    color: white;
}

.social-icon.youtube:hover { background: #FF0000; }
.social-icon.instagram:hover { background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); }
.social-icon.tiktok:hover { background: #000000; }

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

.hero-swiper .swiper-pagination-bullet {
    background: var(--primary);
    opacity: 0.3;
}

.hero-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    width: 25px;
    border-radius: 5px;
}

/* Responsive */
@media (max-width: 992px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 40px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .stats-item:nth-child(2) {
        border-right: none;
    }
    
    .stats-item:nth-child(n+3) {
        border-top: 1px solid #eee;
    }

    .mobile-menu-btn {
        display: block !important;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: white;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        z-index: 100;
        gap: 15px;
    }
    .nav-links.active {
        display: flex;
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-item {
        border-right: none;
        border-bottom: 1px solid #eee;
    }
    
    .stats-item:last-child {
        border-bottom: none;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

/* CTA Section */
.cta-banner {
    text-align: center;
    border-radius: 30px;
    margin: 20px 5%;
    padding: 50px 40px;
    background-color: #f8fafc;
    border: 2px dashed rgba(27, 156, 133, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-banner h2 {
    font-size: 2.2rem;
    color: var(--primary) !important;
    margin-bottom: 15px;
    font-weight: 800;
}

.cta-banner p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta-compact {
    background: var(--primary);
    color: white !important;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
    transition: 0.3s;
}

.btn-cta-compact:hover {
    transform: translateY(-2px);
    background: var(--secondary);
    color: var(--text-dark) !important;
}

/* Testimonials Section */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
    position: relative;
    border: 1px solid #f0f0f0;
}

.testimonial-card i.quote-icon {
    color: var(--primary);
    opacity: 0.2;
    position: absolute;
    top: 30px;
    right: 30px;
}

.testimonial-content {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 30px;
    line-height: 1.8;
}

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

.testimonial-user img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-user h4 {
    margin: 0;
    color: var(--primary);
}

.testimonial-user p {
    margin: 0;
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Agenda Section */
.agenda-list {
    max-width: 900px;
    margin: 50px auto 0;
}

.agenda-item {
    display: flex;
    gap: 30px;
    background: white;
    padding: 25px;
    border-radius: 20px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    transition: 0.3s;
    border-left: 5px solid var(--primary);
}

.agenda-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.agenda-date {
    text-align: center;
    min-width: 80px;
}

.agenda-date .day {
    display: block;
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary);
}

.agenda-date .month {
    display: block;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-light);
}

.agenda-info h3 {
    margin: 0 0 5px 0;
    color: var(--text-dark);
}

.agenda-info p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Floating WhatsApp */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: 0.3s;
    animation: pulse-wa 2s infinite;
}

.floating-wa:hover {
    transform: scale(1.1) rotate(10deg);
}
/* Community & Activity Section (Vibrant Dual Column) */
.section-vibrant {
    background: linear-gradient(180deg, #ffffff 0%, #f9fbf9 100%);
    position: relative;
    overflow: hidden;
}

.community-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
    align-items: stretch; /* Balance heights */
}

.community-column {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-width: 0;
}

.community-column-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
    color: var(--primary);
    font-size: 1.2rem;
    font-weight: 800;
    padding-left: 5px;
}

/* Testimonial Swiper Refinement */
.testimonial-swiper {
    width: 100%;
    height: 100%; /* fill column */
    min-height: 400px;
    border-radius: 30px;
    padding: 10px !important;
    padding-bottom: 50px !important; /* space for pagination */
    display: flex;
    flex-direction: column;
}

.testimonial-swiper .swiper-wrapper {
    flex: 1;
    align-items: stretch;
}

.testimonial-swiper .swiper-slide {
    height: auto;
}

.testimonial-card-vibrant {
    background: linear-gradient(135deg, var(--accent) 0%, #c43030 100%);
    padding: 40px;
    border-radius: 30px;
    height: 100%;
    box-shadow: 0 20px 40px rgba(239, 98, 98, 0.25);
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    color: white;
    overflow: hidden;
}

/* Add a decorative circle element in background */
.testimonial-card-vibrant::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,196,54,0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.vibrant-quote {
    color: var(--secondary);
    opacity: 0.85;
    position: absolute;
    top: 30px;
    right: 30px;
    transform: rotate(10deg);
}

/* Custom pagination dots for this dark background */
.testimonial-swiper .swiper-pagination-bullet {
    background: var(--primary-light);
    opacity: 0.5;
}
.testimonial-swiper .swiper-pagination-bullet-active {
    background: var(--secondary);
    opacity: 1;
}

/* Agenda Stack Refinement */
.agenda-stack-vibrant {
    display: flex;
    flex-direction: column;
    gap: 15px;
    height: 100%;
}

.agenda-item-vibrant {
    background: white;
    padding: 20px 25px;
    border-radius: 20px;
    border: 1px solid #f0f0f0;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.agenda-item-vibrant:hover {
    transform: translateX(10px);
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(27, 156, 133, 0.1);
}

@media (max-width: 992px) {
    .community-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
}

@keyframes pulse-wa {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 768px) {
    .agenda-item { flex-direction: column; gap: 15px; }
    .agenda-date { text-align: left; min-width: auto; }
}
