.sobre-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.hero-section {
    background: linear-gradient(135deg, var(--brand-teal), var(--brand-teal-2));
    color: white;
    padding: 80px 20px;
    border-radius: 20px;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate 30s infinite linear;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3em;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2em;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.95;
}

.hero-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.hero-image:hover {
    transform: scale(1.02);
}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.stats-section {
    background: var(--container-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 50px 30px;
    margin-bottom: 50px;
    box-shadow: 0 10px 30px var(--container-shadow);
}

.stats-header {
    text-align: center;
    margin-bottom: 50px;
}

.stats-header h2 {
    font-size: 2.5em;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
}

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

.stat-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--alternate-bg);
    border-radius: 16px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-teal), var(--brand-coral));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--container-shadow);
    border-color: var(--brand-teal);
}

.stat-icon {
    font-size: 3em;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--brand-teal), var(--brand-coral));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-number {
    font-size: 2.5em;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-size: 1.1em;
    color: var(--text-muted);
    font-weight: 600;
}

.volunteers-section {
    background: var(--container-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 50px 30px;
    margin-bottom: 50px;
    box-shadow: 0 10px 30px var(--container-shadow);
}

.volunteers-header {
    text-align: center;
    margin-bottom: 50px;
}

.volunteers-header h2 {
    font-size: 2.5em;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.volunteers-header p {
    font-size: 1.2em;
    color: var(--text-muted);
}

.volunteers-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}

.volunteers-scroll-container {
    display: flex;
    gap: 25px;
    padding: 20px 0;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--brand-teal) var(--alternate-bg);
}

.volunteers-scroll-container::-webkit-scrollbar {
    height: 8px;
}

.volunteers-scroll-container::-webkit-scrollbar-track {
    background: var(--alternate-bg);
    border-radius: 10px;
}

.volunteers-scroll-container::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, var(--brand-teal), var(--brand-coral));
    border-radius: 10px;
}

.volunteer-card {
    flex: 0 0 350px;
    background: var(--container-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 15px var(--container-shadow);
    transition: all 0.3s ease;
    position: relative;
}

.volunteer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-teal), var(--brand-coral));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.volunteer-card:hover::before {
    opacity: 1;
}

.volunteer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px var(--container-shadow);
}

.volunteer-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-teal), var(--brand-coral));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2em;
    font-weight: bold;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(0, 128, 128, 0.3);
}

.volunteer-name {
    font-size: 1.4em;
    font-weight: 700;
    color: var(--text-color);
    text-align: center;
    margin-bottom: 10px;
}

.volunteer-location {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.volunteer-skill {
    background: linear-gradient(135deg, var(--alternate-bg), var(--hover-bg));
    padding: 12px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
    border-left: 4px solid var(--brand-teal);
}

.volunteer-skill strong {
    color: var(--brand-teal);
    font-weight: 600;
}

.volunteer-message {
    background: var(--alternate-bg);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-style: italic;
    color: var(--text-color);
    line-height: 1.6;
    position: relative;
}

.volunteer-message::before {
    content: '"';
    font-size: 3em;
    color: var(--brand-teal);
    opacity: 0.3;
    position: absolute;
    top: -10px;
    left: 10px;
}

.volunteer-date {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9em;
}

.carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: 2px solid var(--brand-teal);
    color: var(--brand-teal);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2em;
    font-weight: bold;
    transition: all 0.3s ease;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.carousel-control:hover {
    background: var(--brand-teal);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-control.prev {
    left: -20px;
}

.carousel-control.next {
    right: -20px;
}

.cta-section {
    background: linear-gradient(135deg, var(--brand-coral), var(--brand-coral-2));
    color: white;
    padding: 60px 30px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate-reverse 25s infinite linear;
}

@keyframes rotate-reverse {
    0% { transform: rotate(360deg); }
    100% { transform: rotate(0deg); }
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.3em;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta {
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1em;
}

.btn-primary-cta {
    background: white;
    color: var(--brand-coral);
    box-shadow: 0 4px 15px rgba(255,255,255,0.3);
}

.btn-primary-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255,255,255,0.4);
}

.btn-secondary-cta {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary-cta:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-3px);
}

.empty-volunteers {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.empty-volunteers i {
    font-size: 4em;
    margin-bottom: 20px;
    opacity: 0.5;
}

.empty-volunteers h3 {
    color: var(--text-color);
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-text h1 {
        font-size: 2em;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .volunteer-card {
        flex: 0 0 300px;
    }
    
    .carousel-control {
        display: none;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-cta {
        width: 100%;
        max-width: 300px;
    }
}
