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

:root {
    --primary-blue: #cc6859;
    --light-blue: #3b82f6;
    --orange: #cc6859;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-600: #4b5563;
    --gray-800: #1f2937;
    --white: #ffffff;
    --whatsapp-green: #25d366;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --instagram-gradient: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    --youtube-gradient: linear-gradient(45deg, #ff0000 0%, #cc0000 25%, #ff4444 50%, #ee0000 75%, #dd0000 100%);
    --teams-gradient: linear-gradient(45deg, #464EB8 0%, #5B69BC 25%, #6F7AC0 50%, #464EB8 75%, #3D47A8 100%);
    --calendar-event-culto: #3b82f6;
    --calendar-event-ebd: #10b981;
    --calendar-event-cafe: #f59e0b;
    --calendar-event-oracao: #8b5cf6;
    --calendar-event-outro: #cc6859;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.0rem 0.3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-blue);
    text-decoration: none;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--gray-800);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--light-blue);
}

.mobile-menu {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-blue);
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: var(--whatsapp-green);
    color: var(--white);
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    transform: scale(1.1);
}

.hero {
    background-color: transparent;
    background-size: cover;
    background-position: center 25%;
    background-repeat: no-repeat;
    background-attachment: scroll;
    color: var(--white);
    padding-top: 80px;
    padding-bottom: 0px;
    text-align: center;
    width: 100vw;
    max-width: none;
    margin: 0;
    margin-left: calc(-50vw + 50%);
    box-sizing: border-box;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center 25%;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide-1 {
    background-image: url('logo2.jpg');
}

.hero-slide-2 {
    background-image: url('13.jpg');
}

.hero-slide-3 {
    background-image: url('alvorada.jpg');
}

.hero-slide-4 {
    background-image: url('37.jpg');
}

.hero-slide-5 {
    background-image: url('35.jpg');
}

.hero-slide-6 {
    background-image: url('37.jpg');
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
    padding: 0 2rem;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;
    padding: 0 2rem;
}

.hero-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--gray-800);
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    z-index: 10;
}

.hero-arrows:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.hero-prev {
    left: 25px;
}

.hero-next {
    right: 25px;
}

.alvorada-cta {
    background: var(--white);
    padding: 60px 2rem;
    text-align: center;
    position: relative;
}

.alvorada-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--teams-gradient);
}

.cta-buttons-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.teams-link {
    background: var(--teams-gradient);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    box-shadow: var(--shadow-lg);
    flex: 1;
    min-width: 280px;
    max-width: 450px;
    justify-content: center;
}

.teams-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(70, 78, 184, 0.4);
}

.oracao-link {
    background: #cc6859;
}

.oracao-link:hover {
    box-shadow: 0 15px 35px rgba(234, 88, 12, 0.4);
}

.social-carousel {
    background: var(--white);
    padding: 80px 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.social-carousel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--instagram-gradient), var(--youtube-gradient));
}

.carousel-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--gray-800);
    animation: fadeInUp 1s ease;
}

.carousel-subtitle {
    font-size: 1.2rem;
    color: var(--gray-600);
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.instagram-link {
    background: var(--instagram-gradient);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.instagram-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.youtube-link {
    background: var(--youtube-gradient);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.youtube-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.carousel-container {
    position: relative;
    max-width: 650px;
    margin: 2rem auto;
    border-radius: 15px;
    overflow: visible;
    box-shadow: var(--shadow-lg);
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

@media (min-width: 769px) {
    .carousel-container {
        max-width: 650px;
        min-height: 360px;
    }
    
    .carousel-slide img {
        max-height: 480px;
        width: 80%;
        object-fit: contain;
        object-position: center;
        background: var(--white);
    }
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.carousel-slide.active {
    opacity: 1;
    position: relative;
}

.carousel-slide img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.carousel-slide:hover img {
    transform: scale(1.02);
}

.slide-overlay {
    position: relative;
    background: transparent;
    color: var(--orange);
    padding: 1.5rem;
    text-align: center;
    width: 100%;
}

.slide-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--gray-800);
}

.slide-description {
    font-size: 1rem;
    line-height: 1.4;
    color: var(--orange);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-100);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.carousel-dot.active {
    background: var(--light-blue);
    transform: scale(1.2);
}

.carousel-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--gray-800);
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    z-index: 20;
}

.carousel-arrows:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.carousel-prev {
    left: -25px;
}

.carousel-next {
    right: -25px;
}

section {
    padding: 80px 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--gray-800);
}

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

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

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

.about-image {
    text-align: center;
}

.about-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

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

.about-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    text-align: center;
}

.about-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.about-card p {
    color: var(--gray-600);
    line-height: 1.6;
}

.values-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.value-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--light-blue);
    box-shadow: var(--shadow);
}

.value-item h4 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

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

.contribua-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

.contribua-text p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: var(--gray-600);
    line-height: 1.7;
}

.contribua-image {
    text-align: center;
}

.contribua-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.contribua-verse {
    background: linear-gradient(135deg, var(--orange), #d97706);
    color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    text-align: center;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.contribua-verse::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.3);
    font-family: serif;
}

.contribua-verse p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

.contribua-verse em {
    font-weight: bold;
    color: #fff3cd;
}

.verse-reference {
    display: block;
    margin-top: 1rem;
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 600;
}

.contribua-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.contribua-info {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--orange);
    box-shadow: var(--shadow);
}

.cnpj-info {
    font-size: 1rem;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.cnpj-info strong {
    color: var(--orange);
}

.copy-btn {
    background: var(--orange);
    color: var(--white);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.copy-btn:hover {
    background: var(--primary-blue);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.copy-btn:active {
    transform: translateY(0);
}

.copy-btn.copied {
    background: #10b981;
    animation: pulse 0.3s ease;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

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

.events-list {
    display: grid;
    gap: 1.5rem;
    margin-top: 3rem;
}

.event-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: transform 0.3s ease;
}

.event-item:hover {
    transform: translateX(10px);
}

.event-date {
    background: var(--light-blue);
    color: var(--white);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    min-width: 120px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.event-date .day {
    font-size: 1.2rem;
    font-weight: bold;
    word-break: break-word;
    line-height: 1.2;
}

.event-date .month {
    font-size: 0.85rem;
    opacity: 0.9;
    margin-top: 0.25rem;
    word-break: break-word;
}

.event-info h3 {
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.event-info small {
    color: var(--light-blue);
    font-weight: 500;
}

.contact-info {
    background: var(--gray-50);
    padding: 2rem;
    border-radius: 10px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    background: var(--light-blue);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-social-links {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.contact-social-link {
    color: var(--gray-600);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 2px solid var(--gray-100);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.contact-social-link:hover {
    border-color: var(--light-blue);
    color: var(--light-blue);
}

.whatsapp-contact {
    background: var(--whatsapp-green);
    color: var(--white);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    margin-top: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}

.whatsapp-contact:hover {
    background: #128c7e;
    transform: translateY(-2px);
}

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

.map-container {
    margin-top: 3rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

.location-btn {
    text-align: center;
    margin-top: 2rem;
}

.location-button {
    display: inline-block;
    background: var(--light-blue);
    color: var(--white);
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.location-button:hover {
    background: #c2410c;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.recursos {
    background: var(--white);
    padding: 80px 2rem;
}

.recursos-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.recurso-card {
    background: var(--gray-50);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 320px;
}

.recurso-card:hover {
    transform: translateY(-5px);
}

.recurso-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.recurso-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.recurso-card p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.recurso-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--orange);
    color: var(--white);
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    margin-top: auto;
}

.recurso-btn:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

footer {
    background: var(--gray-800);
    color: var(--white);
    padding: 3rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    line-height: 1.8;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-section a:hover {
    color: var(--white);
}

.footer-social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.footer-social-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.footer-social-link:hover {
    border-color: var(--white);
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
    opacity: 0.8;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Valores Carousel Styles */
.valores-carousel {
    margin: 3rem auto;
    position: relative;
    max-width: 1200px;
    padding: 0 2rem;
}

.valores-carousel-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: visible;
    box-shadow: var(--shadow-lg);
    background: var(--gray-100);
}

.valores-slide {
    position: relative;
    width: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: none;
}

.valores-slide.active {
    opacity: 1;
    display: block;
}

.valores-slide img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 650px;
    object-fit: contain;
    border-radius: 15px;
}

.valores-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 20;
    color: var(--primary-blue);
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.valores-arrows:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.valores-prev {
    left: -25px;
}

.valores-next {
    right: -25px;
}

.valores-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.valores-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-300);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.valores-dot.active {
    background: var(--primary-blue);
    transform: scale(1.3);
    border-color: var(--primary-blue);
}

.valores-dot:hover {
    background: var(--light-blue);
    transform: scale(1.2);
}

/* CALENDAR STYLES */
.calendar-container {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    padding: 1.2rem;
    margin: 1.5rem auto;
    max-width: 750px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.2rem;
    padding-bottom: 0.6rem;
    border-bottom: 2px solid var(--gray-100);
}

.calendar-header h3 {
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin: 0;
}

.calendar-nav {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.calendar-nav button {
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.calendar-nav button:hover {
    background: var(--light-blue);
    transform: scale(1.1);
}

.calendar-nav span {
    min-width: 130px;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--gray-800);
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.3rem;
    margin-bottom: 0.3rem;
}

.calendar-weekday {
    text-align: center;
    font-weight: 600;
    color: var(--gray-600);
    padding: 0.3rem;
    font-size: 0.8rem;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.3rem;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.85rem;
    position: relative;
    transition: all 0.3s ease;
    background: var(--gray-50);
    border: 2px solid transparent;
}

.calendar-day:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.calendar-day.other-month {
    color: var(--gray-600);
    opacity: 0.4;
}

.calendar-day.today {
    border: 2px solid var(--primary-blue);
    font-weight: 700;
}

.calendar-day.has-event {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--primary-blue) 100%);
    color: var(--white);
    font-weight: 600;
}

.calendar-day.has-event::after {
    content: '';
    position: absolute;
    bottom: 4px;
    width: 6px;
    height: 6px;
    background: var(--white);
    border-radius: 50%;
}

.calendar-day.has-multiple-events::after {
    width: 20px;
    border-radius: 3px;
}

.event-tooltip {
    position: fixed;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    padding: 1rem;
    z-index: 2000;
    max-width: 90%;
    width: 280px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    border-top: 3px solid var(--primary-blue);
    left: 55% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;
}

.event-tooltip.show {
    opacity: 1;
    pointer-events: auto;
}

.event-tooltip-date {
    font-size: 0.8rem;
    color: var(--gray-600);
    margin-bottom: 0.7rem;
    font-weight: 600;
}

.event-tooltip-item {
    margin-bottom: 0.7rem;
    padding: 0.7rem;
    background: var(--gray-50);
    border-radius: 6px;
    border-left: 3px solid var(--light-blue);
}

.event-tooltip-item:last-child {
    margin-bottom: 0;
}

.event-tooltip-item.culto {
    border-left-color: var(--calendar-event-culto);
}

.event-tooltip-item.ebd {
    border-left-color: var(--calendar-event-ebd);
}

.event-tooltip-item.cafe {
    border-left-color: var(--calendar-event-cafe);
}

.event-tooltip-item.oracao {
    border-left-color: var(--calendar-event-oracao);
}

.event-tooltip-item.outro {
    border-left-color: var(--calendar-event-outro);
}

.event-tooltip-title {
    font-weight: 600;
    color: var(--gray-800);
    margin-bottom: 0.25rem;
    font-size: 0.9rem;
}

.event-tooltip-time {
    color: var(--primary-blue);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.event-tooltip-desc {
    color: var(--gray-600);
    font-size: 0.75rem;
    line-height: 1.4;
}

.calendar-legend {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.2rem;
    padding-top: 1.2rem;
    border-top: 2px solid var(--gray-100);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    color: var(--gray-600);
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 3px;
}

.legend-color.culto {
    background: var(--calendar-event-culto);
}

.legend-color.ebd {
    background: var(--calendar-event-ebd);
}

.legend-color.cafe {
    background: var(--calendar-event-cafe);
}

.legend-color.oracao {
    background: var(--calendar-event-oracao);
}

.legend-color.outro {
    background: var(--calendar-event-outro);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--shadow);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .hero {
        background-size: contain;
        background-position: center bottom;
        padding-top: 70px;
        padding-bottom: 20px;
        min-height: 80vh;
    }

    .hero-slide {
        background-size: contain;
        background-position: center bottom;
    }

    .hero-slide-1 {
        background-image: url('logo4.jpg');
        background-position: center center !important;
        background-size: contain !important;
    }
    
    .hero-slide-2 {
        background-image: url('0.jpg');
        background-position: center center !important;
        background-size: contain !important;
    }

    .hero-slide-3 {
        background-image: url('alvoradam.jpg');
        background-position: center center !important;
        background-size: contain !important;
    }

    .hero-slide-4 {
        background-image: url('37m.jpg');
        background-position: center center !important;
        background-size: contain !important;
    }

    .hero-slide-5 {
        background-image: url('35m.jpg');
        background-position: center center !important;
        background-size: contain !important;
    }

    .hero-slide-6 {
        background-image: url('37m.jpg');
        background-position: center center !important;
        background-size: contain !important;
    }

    .hero-content h1 {
        font-size: 2.5rem;
        padding: 0 1rem;
    }

    .hero-content p {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contribua-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cnpj-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .copy-btn {
        align-self: stretch;
        justify-content: center;
    }

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

    section {
        padding: 60px 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .carousel-title {
        font-size: 2rem;
    }

    .carousel-subtitle {
        font-size: 1rem;
    }

    .carousel-container {
        margin: 1rem auto;
        max-width: 95%;
        min-height: 250px;
    }

    .carousel-arrows {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

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

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

    nav {
        padding: 1rem;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 24px;
    }

    .social-links {
        flex-direction: column;
        align-items: center;
    }

    .instagram-link,
    .youtube-link {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }

    .contact-social-links {
        flex-direction: column;
    }

    .footer-social-links {
        flex-direction: column;
    }

    .alvorada-cta {
        padding: 40px 1rem;
    }

    .cta-buttons-container {
        flex-direction: column;
        align-items: center;
    }

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

    .hero-arrows {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .hero-prev {
        left: 15px;
    }

    .hero-next {
        right: 15px;
    }

    .values-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .valores-carousel {
        padding: 0 1rem;
    }

    .valores-carousel-container {
        max-width: 100%;
        border-radius: 10px;
    }

    .valores-arrows {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .valores-prev {
        left: -20px;
    }

    .valores-next {
        right: -20px;
    }

    .valores-dots {
        gap: 8px;
    }

    .valores-dot {
        width: 10px;
        height: 10px;
    }

    .calendar-container {
        padding: 1rem;
    }

    .calendar-header {
        flex-direction: column;
        gap: 1rem;
    }

    .calendar-header h3 {
        font-size: 1.4rem;
    }

    .calendar-weekday {
        font-size: 0.75rem;
        padding: 0.3rem;
    }

    .calendar-day {
        font-size: 0.9rem;
    }

    .event-tooltip {
        max-width: 90vw;
        width: 90vw;
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
    }

    .calendar-legend {
        gap: 0.8rem;
    }

    .legend-item {
        font-size: 0.8rem;
    }

    .legend-color {
        width: 16px;
        height: 16px;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .values-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
}
