/* ===== VARIÁVEIS E CONFIGURAÇÕES ===== */
:root {
    --transition: all 0.3s ease;
}

/* ===== SEÇÃO HERO (BANNER) ===== */
.hero {
    background-image:
        linear-gradient(rgba(74, 109, 153, 0.85), rgba(64, 148, 226, 0.9)),
        url('../src/img/lions-banner.png');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    color: white;
    text-align: center;
    padding: 160px 20px 100px;
    margin-top: 80px;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

[data-theme="dark"] .hero {
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 84, 164, 0.8)),
        url('../src/img/lions-banner.png');
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero .container {
    position: relative;
    z-index: 1;
}

/* ===== SEÇÃO MISSÃO VISÃO VALORES ===== */
.mission-vision-values {
    padding: 40px 20px;
    background-color: var(--light);
    position: relative;
    overflow: hidden;
}

.mission-vision-values::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary));
}

.mvv-container {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.mvv-header {
    text-align: center;
    margin-bottom: 20px;
}

.mvv-header h2 {
    color: var(--primary);
    font-size: 2.2rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.mvv-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent);
}

.mvv-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.mvv-card {
    background-color: var(--surface);
    border-radius: 12px;
    padding: 10px 30px;
    box-shadow: 0 5px 20px var(--shadow);
    transition: all 0.4s ease;
    border-top: 4px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.mvv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px var(--shadow);
}

.mvv-card:nth-child(1),
.mvv-card:nth-child(2),
.mvv-card:nth-child(3) {
    border-top-color: var(--primary);
}

.mvv-card-icon {
    font-size: 2.6rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.mvv-card:nth-child(1) .mvv-card-icon,
.mvv-card:nth-child(2) .mvv-card-icon,
.mvv-card:nth-child(3) .mvv-card-icon {
    color: var(--secondary);
}

.mvv-card:hover .mvv-card-icon {
    transform: scale(1.1);
}

.mvv-card h3 {
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.mvv-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 2px;
    background-color: var(--secondary);
    transition: width 0.3s ease;
}

.mvv-card:hover h3::after {
    width: 120px;
}

.mvv-card:nth-child(1) h3,
.mvv-card:nth-child(2) h3,
.mvv-card:nth-child(3) h3 {
    color: var(--primary);
}

.mvv-card p {
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 25px;
    flex-grow: 1;
    font-size: 1.05rem;
}

.mvv-values-list {
    padding-left: 0;
    list-style: none;
    margin-top: 15px;
}

.mvv-values-list li {
    color: var(--text);
    margin-bottom: 14px;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 0;
    position: relative;
}

.mvv-values-list li i {
    color: var(--secondary);
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
    transition: transform 0.3s ease, color 0.3s ease;
}

.mvv-values-list li:hover i {
    color: var(--accent);
    transform: translateX(5px);
}

.mvv-card .btn {
    margin-top: 20px;
    margin-bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.mvv-card .btn i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.mvv-card .btn:hover i {
    transform: translateX(5px);
}

/* Estilo das citações */
.mvv-quote {
    padding: 8px;
    background-color: rgba(0, 84, 164, 0.05);
    border-left: 4px solid var(--secondary);
    border-radius: 8px;
    position: relative;
    font-style: italic;
    margin-bottom: 1.5rem;
}

[data-theme="dark"] .mvv-quote {
    background-color: rgba(255, 255, 255, 0.05);
}

.quote-text {
    color: var(--text);
    margin-top: 0.80rem;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
}

/* Ajuste para que o card de Valores não tenha citação */
.mvv-card:nth-child(3) .mvv-quote {
    display: none;
}

/* ===== SEÇÃO CAUSAS ===== */
.causes {
    padding: 40px 20px;
    background-color: var(--surface);
}

.causes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.cause-card {
    background-color: var(--surface);
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--primary);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.cause-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px var(--shadow);
}

.cause-icon {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.cause-card h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.cause-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    flex-grow: 1;
    line-height: 1.6;
}

.cause-link {
    width: fit-content;
    margin-top: auto;
    padding: 8px 18px;
    border: 2px solid var(--secondary);
    color: var(--primary);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cause-link i {
    margin-left: 8px;
    transition: var(--transition);
}

.cause-link:hover {
    background-color: var(--secondary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px var(--shadow);
}

.cause-link:hover i {
    transform: translateX(5px);
}

/* ===== SEÇÃO MISSÃO E CAROUSEL ===== */
.mission {
    padding: 10px 80px;
    background-color: var(--light);
}

.mission h2.section-title {
    margin-bottom: 20px;
    text-align: center;
}

.mission p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 40px;
    color: var(--text-light);
    line-height: 1.6;
    text-align: center;
}

.carousel-section {
    margin: 40px 0 40px;
    padding: 0;
    border-radius: 12px;
    background-color: var(--light);
}

/* ===== CAROUSEL DE AÇÕES SOCIAIS ===== */
.carousel-container {
    position: relative;
    overflow: hidden;
    margin: 40px auto 50px;
    max-width: 1200px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background-color: var(--surface);
    padding: 20px 0;
}

[data-theme="dark"] .carousel-container {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.carousel-wrapper {
    position: relative;
    padding: 0 60px;
}

.carousel {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 30px;
    padding: 20px 10px;
}

.carousel-card {
    flex: 0 0 calc(33.333% - 20px);
    background-color: var(--background);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    min-height: 480px;
    border: 1px solid var(--border);
}

.carousel-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 40px var(--shadow);
    border-color: var(--secondary);
}

.carousel-img-container {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.carousel-img {
    width: 100%;
    height: 100%;
    border-bottom: 2px solid var(--secondary);
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.carousel-card:hover .carousel-img {
    transform: scale(1.05);
}

.carousel-content {
    padding: 25px;
    background-color: var(--light);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.carousel-content h4 {
    color: var(--primary);
    font-size: 1.4rem;
    margin-bottom: 15px;
    line-height: 1.3;
    font-weight: 700;
    position: relative;
    padding-bottom: 12px;
}

.carousel-content h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

.carousel-card:hover .carousel-content h4::after {
    width: 70px;
}

.carousel-content p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.7;
    flex-grow: 1;
    font-size: 1rem;
}

/* ===== CONTROLES DO CAROUSEL ===== */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--light);
    color: var(--primary);
    border: 2px solid var(--background);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.3rem;
    box-shadow: 0 5px 15px var(--shadow);
}

.carousel-btn:hover {
    background-color: var(--secondary);
    color: white;
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 8px 20px var(--shadow);
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

.carousel-btn:disabled {
    background-color: var(--border);
    border-color: var(--border);
    color: var(--text-light);
    cursor: not-allowed;
    transform: translateY(-50%);
}

.carousel-btn:disabled:hover {
    background-color: var(--border);
    color: var(--text-light);
    transform: translateY(-50%);
    box-shadow: 0 5px 15px var(--shadow);
}

/* ===== INDICADORES DO CAROUSEL ===== */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
    padding: 10px 0;
}

.carousel-indicator {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: var(--border);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    position: relative;
}

.carousel-indicator.active {
    background-color: var(--secondary);
    transform: scale(1.3);
    border-color: var(--background);
}

.carousel-indicator:hover {
    background-color: var(--accent);
    transform: scale(1.2);
}

.carousel-indicator::after {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border-radius: 50%;
}

/* ===== BOTÃO DA MISSÃO ===== */
.mission .btn-outline {
    display: block;
    margin: 30px auto 0;
    width: fit-content;
    transition: all 0.3s ease;
}

.mission .btn-outline:hover {
    background-color: var(--secondary);
    color: white;
    transform: translateY(-3px);
}

/* ===== SEÇÃO ATIVIDADES ===== */
.activities {
    padding: 40px 20px;
    background-color: var(--surface);
}

.activities-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.activity-item {
    display: flex;
    align-items: stretch;
    gap: 0;
    position: relative;
    width: 100%;
}

/* ===== IMAGEM DA ATIVIDADE ===== */
.activity-image {
    flex: 0 0 40%;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transform: translateX(-20px);
    opacity: 0;
    animation: slideInLeft 0.8s ease forwards;
}

.activity-item:nth-child(2) .activity-image {
    animation-delay: 0.2s;
}

.activity-item:nth-child(3) .activity-image {
    animation-delay: 0.4s;
}

@keyframes slideInLeft {
    from {
        transform: translateX(-30px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.activity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
    min-height: 350px;
}

.activity-item:hover .activity-image img {
    transform: scale(1.05);
}

/* ===== BADGE DE DATA ===== */
.activity-date-badge {
    position: absolute;
    top: 25px;
    right: 25px;
    background-color: var(--secondary);
    color: white;
    border-radius: 10px;
    padding: 10px 16px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    z-index: 3;
    min-width: 65px;
    transition: all 0.3s ease;
}

.activity-item:hover .activity-date-badge {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
}

.badge-day {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 2px;
}

.badge-month {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

/* ===== CONTEÚDO DA ATIVIDADE ===== */
.activity-content {
    flex: 0 0 60%;
    background-color: var(--surface);
    border-radius: 0 12px 12px 0;
    padding: 35px 40px;
    box-shadow: 0 10px 30px var(--shadow);
    margin-left: -20px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transform: translateX(20px);
    opacity: 0;
    animation: slideInRight 0.8s ease forwards;
}

.activity-item:nth-child(2) .activity-content {
    animation-delay: 0.2s;
}

.activity-item:nth-child(3) .activity-content {
    animation-delay: 0.4s;
}

@keyframes slideInRight {
    from {
        transform: translateX(30px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ===== CABEÇALHO DA ATIVIDADE ===== */
.activity-header {
    margin-bottom: 20px;
}

.activity-header h3 {
    color: var(--primary);
    font-size: 1.7rem;
    margin-bottom: 12px;
    line-height: 1.3;
    font-weight: 700;
    position: relative;
    padding-bottom: 12px;
}

.activity-header h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

.activity-item:hover .activity-header h3::after {
    width: 80px;
}

.activity-datetime {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.activity-datetime i {
    color: var(--accent);
    font-size: 1.1rem;
    width: 18px;
    text-align: center;
}

.date-text,
.location-text {
    margin-right: 10px;
}

/* ===== DESCRIÇÃO DA ATIVIDADE ===== */
.activity-description {
    margin-bottom: 25px;
}

.activity-description p {
    color: var(--text);
    line-height: 1.7;
    font-size: 1.05rem;
    margin-bottom: 0;
}

/* ===== BOTÃO DA ATIVIDADE ===== */
.activity-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: fit-content;
    margin-top: auto;
    padding: 12px 25px;
    border: 2px solid var(--secondary);
    color: var(--primary);
    background-color: transparent;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.activity-btn:hover {
    background-color: var(--secondary);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px var(--shadow);
}

.activity-btn i {
    font-size: 1.1rem;
}

/* ===== SEPARADOR DE ATIVIDADES ===== */
.activity-item:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border), transparent);
}

/* ===== SEÇÃO ENVOLVA-SE ===== */
.get-involved {
    padding: 40px 20px;
    background-color: var(--light);
}

.involved-options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.option-card {
    background-color: var(--surface);
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 15px var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.option-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px var(--shadow);
}

.option-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.option-card h3 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.option-card p {
    color: var(--text-light);
    margin-bottom: 25px;
    flex-grow: 1;
    line-height: 1.6;
}

/* ===== RESPONSIVIDADE ===== */

@media (max-width: 1100px) {
    .carousel-card {
        flex: 0 0 calc(50% - 15px);
    }

    .carousel-wrapper {
        padding: 0 55px;
    }
}

@media (max-width: 992px) {
    .mission-vision-values {
        padding: 60px 20px;
    }

    .mvv-header h2 {
        font-size: 1.8rem;
    }

    .mvv-card {
        padding: 30px 25px;
    }

    .mvv-card-icon {
        font-size: 2.5rem;
    }

    .mvv-card h3 {
        font-size: 1.4rem;
    }

    /* Atividades */
    .activities-list {
        gap: 50px;
        margin-top: 40px;
    }

    .activity-item {
        flex-direction: column;
    }

    .activity-image,
    .activity-content {
        flex: none;
        width: 100%;
        transform: none;
        margin: 0;
        border-radius: 12px;
        animation: none;
        opacity: 1;
    }

    .activity-image {
        margin-bottom: -20px;
        z-index: 2;
    }

    .activity-content {
        padding-top: 45px;
    }

    .activity-header h3 {
        font-size: 1.6rem;
    }

    .activity-image img {
        min-height: 300px;
    }

    .activity-date-badge {
        top: 20px;
        right: 20px;
        padding: 8px 14px;
        min-width: 60px;
    }

    .badge-day {
        font-size: 1.6rem;
    }

    .badge-month {
        font-size: 0.95rem;
    }

    .activity-item:not(:last-child)::after {
        left: 10%;
        right: 10%;
        bottom: -25px;
    }

    /* Home geral */
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .mission h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .mission-vision-values {
        padding: 50px 20px;
    }

    .mvv-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .mvv-header h2 {
        font-size: 1.6rem;
    }

    .mvv-header p {
        font-size: 1rem;
    }

    .mvv-cta p {
        font-size: 1rem;
    }

    .mvv-card .btn {
        width: 100%;
        justify-content: center;
    }

    /* Citações */
    .mvv-quote {
        padding: 15px;
        margin-top: 20px;
    }

    .quote-text {
        font-size: 0.95rem;
        padding: 5px 15px;
    }

    .quote-icon {
        font-size: 0.9rem;
    }

    .quote-icon:first-child {
        left: 12px;
        top: 8px;
    }

    .quote-icon:last-child {
        right: 12px;
        bottom: 8px;
    }

    /* Lista de valores */
    .mvv-values-list li {
        font-size: 1rem;
        margin-bottom: 12px;
        gap: 10px;
    }

    .mvv-values-list li i {
        font-size: 1rem;
    }

    /* Carousel */
    .carousel-card {
        flex: 0 0 calc(100% - 10px);
        min-height: 450px;
    }

    .carousel-wrapper {
        padding: 0 50px;
    }

    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .carousel-container {
        margin: 30px auto 40px;
    }

    .carousel-img-container {
        height: 200px;
    }

    .carousel-content {
        padding: 20px;
    }

    .carousel-content h4 {
        font-size: 1.3rem;
    }

    /* Atividades */
    .activities {
        padding: 80px 20px;
    }

    .activities-list {
        gap: 40px;
    }

    .activity-content {
        padding: 35px 30px 30px;
    }

    .activity-header h3 {
        font-size: 1.5rem;
    }

    .activity-datetime {
        font-size: 0.95rem;
        gap: 12px;
    }

    .activity-description p {
        font-size: 1rem;
    }

    .activity-btn {
        padding: 10px 20px;
        font-size: 0.95rem;
    }

    /* Home geral */
    .hero {
        padding: 140px 20px 80px;
        min-height: 500px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .mission,
    .causes,
    .activities,
    .get-involved {
        padding: 80px 20px;
    }

    .mission h2 {
        font-size: 1.8rem;
    }

    .activity-card {
        flex-direction: column;
    }

    .activity-date {
        flex-direction: row;
        justify-content: center;
        padding: 15px;
        gap: 10px;
        min-width: auto;
    }

    .date-day {
        font-size: 2rem;
        margin-right: 10px;
    }

    .date-month {
        margin-top: 0;
        font-size: 1.1rem;
    }

    .causes-grid,
    .involved-options {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .mission-vision-values {
        padding: 40px 15px;
    }

    .mvv-card {
        padding: 25px 20px;
    }

    .mvv-card-icon {
        font-size: 2.2rem;
    }

    .mvv-card h3 {
        font-size: 1.3rem;
    }

    .mvv-card p {
        font-size: 1rem;
    }

    /* Citações */
    .mvv-quote {
        padding: 12px;
        margin-top: 15px;
    }

    .quote-text {
        font-size: 0.9rem;
        padding: 5px 10px;
    }

    /* Lista de valores */
    .mvv-values-list li {
        font-size: 0.95rem;
        margin-bottom: 10px;
        gap: 8px;
    }

    .mvv-values-list li i {
        font-size: 0.9rem;
    }

    /* Carousel */
    .carousel-wrapper {
        padding: 0 40px;
    }

    .carousel-card {
        min-height: 420px;
    }

    .carousel-img-container {
        height: 180px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .carousel-btn.prev {
        left: 5px;
    }

    .carousel-btn.next {
        right: 5px;
    }

    .carousel-indicators {
        gap: 10px;
        margin-top: 25px;
    }

    .carousel-indicator {
        width: 12px;
        height: 12px;
    }

    .mission p {
        font-size: 1rem;
        padding: 0 10px;
    }

    /* Atividades */
    .activities {
        padding: 60px 15px;
    }

    .activities-list {
        gap: 35px;
        margin-top: 30px;
    }

    .activity-content {
        padding: 30px 25px 25px;
    }

    .activity-image img {
        min-height: 250px;
    }

    .activity-header h3 {
        font-size: 1.4rem;
    }

    .activity-datetime {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .activity-date-badge {
        top: 15px;
        right: 15px;
        padding: 7px 12px;
        min-width: 55px;
    }

    .badge-day {
        font-size: 1.5rem;
    }

    .badge-month {
        font-size: 0.9rem;
    }

    .activity-btn {
        width: 100%;
        justify-content: center;
    }

    .activity-item:not(:last-child)::after {
        left: 5%;
        right: 5%;
        bottom: -18px;
    }

    /* Home geral */
    .hero {
        padding: 120px 15px 60px;
        min-height: 400px;
    }

    .hero h1 {
        font-size: 1.6rem;
    }

    .mission,
    .causes,
    .activities,
    .get-involved {
        padding: 60px 15px;
    }

    .causes-grid,
    .involved-options {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cause-card,
    .option-card {
        padding: 25px 20px;
    }

    .activity-content {
        padding: 20px;
    }

    .mission h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 400px) {
    .mission h2 {
        font-size: 1.4rem;
    }

    .cause-card h3,
    .activity-content h3,
    .option-card h3 {
        font-size: 1.3rem;
    }

    .hero h1 {
        font-size: 1.4rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    /* Carousel */
    .carousel-wrapper {
        padding: 0 35px;
    }

    .carousel-card {
        min-height: 400px;
    }

    .carousel-img-container {
        height: 170px;
    }

    .carousel-content h4 {
        font-size: 1.2rem;
    }

    /* Atividades */
    .activity-content {
        padding: 25px 20px 20px;
    }

    .activity-image img {
        min-height: 220px;
    }

    .activity-header h3 {
        font-size: 1.3rem;
    }

    .activity-date-badge {
        top: 12px;
        right: 12px;
        padding: 6px 10px;
        min-width: 50px;
    }

    .badge-day {
        font-size: 1.4rem;
    }

    .badge-month {
        font-size: 0.85rem;
    }

    .activities-list {
        gap: 30px;
    }
}