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

:root {
    --primary: #2F888A;
    --primary-dark: #246b6d;
    --secondary: #184755;
    --tertiary: #164C59;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-900: #111827;
    --success: #10b981;
    --warning: #f59e0b;
    --info: #3b82f6;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--gray-900);
    line-height: 1.6;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;      /* Ocupa no mínimo 100% da altura da janela */
    display: flex;          /* Transforma o layout em flexível */
    flex-direction: column; /* Organiza os elementos em coluna (um embaixo do outro) */
}
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--gray-200);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

.navbar {
    padding: 1rem 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--gray-700);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-link.active {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--tertiary) 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}
.hero-wave-bottom, 
.hero-wave-bottom-white {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-wave-bottom svg,
.hero-wave-bottom-white svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
}

.hero-wave-bottom .shape-fill {
    fill: var(--gray-50); 
}

/* --- Opção 2: Onda BRANCA (Use quando a próxima seção for branca) --- */
.hero-wave-bottom-white .shape-fill {
    fill: var(--white);
}

.hero-wave-bottom-white svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
}

/* Ajuste para telas pequenas */
@media (max-width: 768px) {
    .hero-wave-bottom svg {
        height: 40px; /* Onda mais discreta no celular */
    }
    
    .hero {
        padding-bottom: 6rem;
    }
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(47, 136, 138, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    color: var(--white);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(47, 136, 138, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(47, 136, 138, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

/* Stats */
.stats-section {
    background: var(--white);
    padding: 4rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: var(--gray-50);
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(47, 136, 138, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--gray-600);
    font-size: 0.9375rem;
    font-weight: 500;
}

/* Section */
.section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    background: rgba(47, 136, 138, 0.1);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.section-description {
    color: var(--gray-600);
    font-size: 1.125rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

/* About */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    color: var(--gray-600);
    font-size: 1.0625rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.features-grid {
    display: grid;
    gap: 1.5rem;
}

.feature-card {
    display: flex;
    gap: 1.25rem;
    padding: 1.75rem;
    background: var(--gray-50);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transform: translateX(4px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.feature-content h4 {
    color: var(--gray-900);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: var(--gray-600);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
}

/* Projects */
.projects-section {
    background: var(--gray-50);
}

.projects-category {
    margin-bottom: 4rem;
}

.category-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 2rem;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.project-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.project-card:hover {
    border-color: var(--primary);
    box-shadow: 0 12px 24px rgba(47, 136, 138, 0.15);
    transform: translateY(-4px);
}

.project-header {
    padding: 2rem;
    background: linear-gradient(135deg, var(--secondary), var(--tertiary));
    position: relative;
    overflow: hidden;
}

.project-header h3 {
    position: relative;
    z-index: 2;
    color: var(--white);
    font-size: 1.375rem;
    font-weight: 700;
    line-height: 1.3;
}

.project-body {
    padding: 2rem;
}

.project-body p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Events */
.events-section {
    background: var(--gray-50);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.event-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.event-card:hover {
    border-color: var(--primary);
    box-shadow: 0 12px 24px rgba(47, 136, 138, 0.15);
    transform: translateY(-4px);
}

.event-image {
    width: 100%;
    height: 240px;
    background: linear-gradient(135deg, var(--gray-200), var(--gray-300));
    position: relative;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary), var(--tertiary));
    color: var(--white);
    font-size: 3rem;
}

.event-date-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.event-content {
    padding: 1.75rem;
}

.event-type {
    display: inline-block;
    background: rgba(47, 136, 138, 0.1);
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.event-content h3 {
    color: var(--gray-900);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.event-description {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 0.9375rem;
}

.event-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-500);
    font-size: 0.875rem;
}

.event-location svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

/* Contact */
.contact-section {
    background: var(--gray-50);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 20px rgba(47, 136, 138, 0.15);
    transform: translateY(-4px);
}

.contact-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.contact-icon svg {
    width: 28px;
    height: 28px;
    color: var(--white);
}

.contact-card h3 {
    color: var(--gray-900);
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-card p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.contact-card a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

/* Footer */
.footer {
    background: var(--secondary);
    color: var(--white);
    padding: 3rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

.footer-about h3 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-links h4 {
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: block;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

/* Team Section */
.team-section {
    background: var(--gray-50);
}
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.team-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--gray-200);
    text-align: center;
    transition: all 0.3s ease;
}

.team-card:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 20px rgba(47, 136, 138, 0.15);
    transform: translateY(-4px);
}

.team-avatar {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
}

.team-card h3 {
    color: var(--gray-900);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.team-card p {
    color: var(--gray-600);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .projects-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .nav-menu.active {
        max-height: 400px;
    }
    
    .nav-menu li {
        border-bottom: 1px solid var(--gray-200);
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-link {
        display: block;
        padding: 1rem 2rem;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.25rem;
    }
    
    .hero p {
        font-size: 1.125rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
}
.footer-main {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 4rem;
            padding-bottom: 2rem;
        }

        .footer-brand img {
            filter: brightness(0) invert(1);
        }

        .contact-item a:hover {
            color: var(--primary);
            transition: color 0.3s ease;
        }

        @media (max-width: 768px) {
            .footer-main {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .footer-brand {
                text-align: center;
            }

            .footer-brand p {
                max-width: 100%;
            }

            .contact-item {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }

        }

/* --- Wrapper Principal --- */
.footer-wrapper {
    position: relative;
    background-color: var(--secondary); /* O "Branco de baixo" vira VERDE aqui */
    width: 100%;
    margin-top: auto; /* Isso empurra o footer para o final da tela se houver espaço sobrando */
    padding-top: 0;
}

/* --- A Onda (Máscara de Transição) --- */
.wave-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 1;
}

.wave-mask svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 90px; /* Altura da curva */
}

/* AQUI ESTÁ A MÁGICA: */
.wave-mask .shape-fill {
    fill: var(--gray-50); /* O "Branco de cima" vira CINZA para conectar com o site */
}

/* --- Conteúdo --- */
.footer-content {
    position: relative;
    z-index: 2;
    /* Ajustamos o padding top para o texto não ficar em cima da onda */
    padding-top: 100px; 
    padding-bottom: 3rem;
    color: var(--white);
}

/* Grid Centralizado (Mantido igual) */
.footer-grid-center {
    display: flex;
    justify-content: center;
    gap: 6rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.footer-col {
    max-width: 350px;
}

.footer-col h3 {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    border-left: 3px solid var(--success);
    padding-left: 10px;
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.email-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    text-decoration: none;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 6px;
    transition: background 0.3s;
    font-weight: 500;
}

.email-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.footer-copyright {
    text-align: center;
    border: none !important; /* O !important é a garantia absoluta que a linha some */
    padding-top: 2rem;
    font-size: 0.85rem;
    opacity: 0.6;
    color: var(--white);
}

/* Mobile */
@media (max-width: 768px) {
    .footer-grid-center {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
}




        .publication-card {
            background: var(--white);
            border-radius: 12px;
            padding: 2rem;
            border: 1px solid var(--gray-200);
            transition: all 0.3s ease;
            margin-bottom: 1.5rem;
        }

        .publication-card:hover {
            border-color: var(--primary);
            box-shadow: 0 4px 12px rgba(47, 136, 138, 0.15);
            transform: translateY(-2px);
        }

        .publication-type {
            display: inline-block;
            padding: 0.25rem 0.75rem;
            border-radius: 50px;
            font-size: 0.8125rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .type-article {
            background: rgba(59, 130, 246, 0.1);
            color: var(--info);
        }

        .type-conference {
            background: rgba(139, 92, 246, 0.1);
            color: #8b5cf6;
        }

        .type-thesis {
            background: rgba(245, 158, 11, 0.1);
            color: var(--warning);
        }

        .type-book {
            background: rgba(16, 185, 129, 0.1);
            color: var(--success);
        }

        .publication-card h3 {
            color: var(--gray-900);
            font-size: 1.25rem;
            font-weight: 700;
            margin-bottom: 0.75rem;
            line-height: 1.4;
        }

        .publication-authors {
            color: var(--gray-600);
            font-size: 0.9375rem;
            margin-bottom: 0.5rem;
            font-style: italic;
        }

        .publication-venue {
            color: var(--gray-500);
            font-size: 0.875rem;
            margin-bottom: 1rem;
        }

        .publication-abstract {
            color: var(--gray-600);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .publication-actions {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .publication-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background: var(--gray-100);
            border-radius: 6px;
            color: var(--gray-700);
            text-decoration: none;
            font-size: 0.875rem;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .publication-link:hover {
            background: var(--primary);
            color: var(--white);
            transform: translateY(-1px);
        }

        .publication-link svg {
            width: 16px;
            height: 16px;
        }

        .filter-tabs {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 3rem;
        }

        .filter-tab {
            padding: 0.75rem 1.5rem;
            border: 2px solid var(--gray-300);
            border-radius: 50px;
            background: var(--white);
            color: var(--gray-700);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .filter-tab:hover {
            border-color: var(--primary);
            color: var(--primary);
        }

        .filter-tab.active {
            background: var(--primary);
            border-color: var(--primary);
            color: var(--white);
        }

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

            .publication-link {
                width: 100%;
                justify-content: center;
            }
        }

       
.repository-section {
    background: var(--gray-50);
}

/* --- Certifique-se que o CSS dos cards que você mandou também esteja no arquivo --- */
.publication-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    margin-bottom: 1.5rem;
}


.hero-wave-bottom-white svg {
        height: 60px;
    }
    
    .workshop-info-box {
        padding: 2rem;
    }
    
    .workshop-info-header h3 {
        font-size: 1.5rem;
    }
    
    .workshop-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Hero Wave - White Background */
.hero-wave-bottom-white {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-wave-bottom-white svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.hero-wave-bottom-white .shape-fill {
    fill: var(--white);
}

/* Workshop Info - Simplified */
.workshop-info-simple {
    margin: 4rem 0;
}

.workshop-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    text-align: center;
    margin-bottom: 2.5rem;
}

.workshop-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.workshop-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid var(--gray-200);
    text-align: center;
    transition: all 0.3s ease;
}

.workshop-card:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 24px rgba(47, 136, 138, 0.15);
    transform: translateY(-4px);
}


.workshop-card-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.workshop-card-icon svg {
    width: 32px;
    height: 32px;
    color: var(--white);
}

.workshop-card h4 {
    color: var(--gray-500);
    font-weight: 700;
    font-size: 0.8125rem;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.workshop-card p {
    color: var(--gray-900);
    font-size: 1.0625rem;
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
}

.location-pending-text {
    display: flex;
    justify-content: center;
}
