
@import 'popover';


body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    transition: background 0.5s ease; /* Transição suave */
}

h1, h2 {
    font-family: 'Poppins', sans-serif;
    color: #f8f9fa;
}

/*=== NavBar ===*/
.navbar {
    background-color: rgba(103, 42, 30, 0.9);
    padding: 15px 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.navbar.hidden {
    transform: translateY(-100%);
}

.navbar-brand {
    color: #f8c471;
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    transition: color 0.3s ease;
}

.navbar-brand img {
    max-height: 40px;
    margin-right: 10px;
}

.navbar-brand:hover {
    color: #ffffff;
}

.navbar-nav {
    gap: 20px;
}

.nav-link {
    color: #ffffff !important;
    font-size: 1.1rem;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #f8c471;
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active::after {
    width: 100%;
}

.navbar-toggler {
    border: none;
    outline: none;
}

.navbar-toggler-icon {
    background-image: none;
    font-size: 1.5rem;
    color: #ffffff;
}

/* Responsividade */
@media (max-width: 768px) {
    .navbar-nav {
        gap: 10px;
        padding-top: 15px;
    }

    .nav-link {
        font-size: 1rem;
    }
}

 /* Estilos gerais do carousel */
 .carousel-inner {
    position: relative;
}

.carousel-inner img,
.carousel-inner video {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    filter: brightness(0.7); /* Escurece a imagem para melhor contraste */
    transition: filter 0.5s ease; /* Efeito de transição suave */
}

.carousel-item:hover img,
.carousel-item:hover video {
    filter: brightness(0.5); /* Escurece mais ao passar o mouse */
}

.carousel-caption {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    opacity: 0; /* Inicia invisível para animação */
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.carousel-item.active .carousel-caption {
    opacity: 1; /* Torna visível quando o item está ativo */
    transform: translate(-50%, -60%); /* Efeito de subida */
}

.carousel-caption h5 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease; /* Animação de entrada */
    font-family: 'Poppins', sans-serif;
}

.carousel-caption p {
    font-size: 1.5rem;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease; /* Animação de entrada */
    font-family: 'Poppins', sans-serif;
}

.carousel-caption .btn {
    background-color: #8b0000;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    transition: background-color 0.3s ease;
    animation: fadeIn 1.5s ease; /* Animação de entrada */
    font-family: 'Poppins', sans-serif;
}

.carousel-caption .btn:hover {
    background-color: #660000;
}

/* Setas de navegação modernas */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1); /* Inverte a cor do ícone para branco */
}

/* Animações */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .carousel-caption h5 {
        font-size: 2.5rem;
    }

    .carousel-caption p {
        font-size: 1rem;
    }

    .carousel-caption .btn {
        font-size: 0.9rem;
        padding: 8px 16px;
    }
}

/* ====== Pagina Home Sobre Nós ================================================== */
    
.about-section {
    font-family: 'Poppins', sans-serif;
            background-color: #ffffff;
            color: #333;
            margin: 0;
            padding: 0;
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('img/world-map.png') no-repeat center center;
    background-size: cover;
}

.text-content {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.8);
    padding: 20px;
    max-width: 400px;
}

.text-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    animation: fadeInDown 1.5s ease;
}

.text-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 20px;
    animation: fadeInUp 1.5s ease;
}

.text-content .btn {
    background-color: #8b0000;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    text-decoration: none;
    animation: fadeInUp 2s ease;
}

.about-us-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 50px;
    background-color: #f8f9fa;
    min-height: 90vh;
}

.about-us-content {
    max-width: 50%;
    text-align: left;
}

.about-us-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    animation: fadeInDown 1.5s ease;
}

.about-us-content p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    animation: fadeInUp 1.5s ease;
}

.about-us-content .btn {
    display: inline-block;
    background-color: #8b0000;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 1.2rem;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    animation: fadeInUp 2s ease;
}

.about-us-content .btn:hover {
    background-color: #660000;
    transform: scale(1.05);
}

.map-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInRight 2s ease;
}

.map-container img {
    width: 100%;
    max-width: 600px;
    height: auto;
}

.inspiration {
    font-size: 2rem;
    color: #666;
    text-align: center;
    margin-top: 40px;
    animation: fadeInUp 2.5s ease;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-50px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(50px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Pagina Sobre Nos*/

.history-section {
    font-family: 'Poppins', sans-serif;
            background-color: #f8f9fa;
            color: #333;
    padding: 80px 0;
    background-color: #ffffff;
}

.history-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #8b0000;
    text-align: center;
    margin-bottom: 20px;
}

.history-section .subtitle {
    font-size: 1.2rem;
    color: #666;
    text-align: center;
    margin-bottom: 60px;
}

.history-content {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

.history-content img {
    width: 50%;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.history-content .text {
    width: 50%;
}

.history-content h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #8b0000;
    margin-bottom: 20px;
}

.history-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.history-content .btn {
    background-color: #8b0000;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.history-content .btn:hover {
    background-color: #660000;
}

/* Responsividade */
@media (max-width: 768px) {
    .history-content {
        flex-direction: column;
    }

    .history-content img,
    .history-content .text {
        width: 100%;
    }

    .history-content img {
        margin-bottom: 20px;
    }
}

/* ====== Eventos + Pagina Eventos =========== */

.event-section {
    font-family: 'Poppins', sans-serif;
    background-color: #faf9f8;
    color: #333;
    padding: 80px 0;
    background-color: #1f1f1f;
    color: white;
    text-align: center;
}

.event-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #fff;
}

.event-card {
    background: white;
    color: black;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.event-card img {
    width: 100%;
    height: 330px;
    object-fit: cover;
}

.event-card-body {
    padding: 20px;
}

.event-card h5 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #8b0000;
}

.event-card p {
    font-size: 1rem;
    color: #555;
}

.event-info {
    font-size: 1rem;
    color: #222;
    text-align: left;
    margin-top: 10px;
}

.event-info p {
    margin: 5px 0;
}

.event-card .btn {
    background-color: #8b0000;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.event-card .btn:hover {
    background-color: #660000;
}

/* Paginação do Eventos */
        .pagination {
            display: flex;
            justify-content: center;
            padding: 20px 0;
        }

        .pagination a {
            color: #333;
            padding: 8px 16px;
            text-decoration: none;
            transition: background-color 0.3s;
            border: 1px solid #ddd;
            margin: 0 4px;
        }

        .pagination a.active {
            background-color: #8b0000;
            color: white;
            border: 1px solid #8b0000;
        }

        .pagination a:hover:not(.active) {
            background-color: #ddd;
        }

/* Contador de Evento */
.next-event-section {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
    color: #333;
    padding: 60px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/slider3.jpg') no-repeat center center / cover;
    color: white;
    text-align: center;
}

.next-event-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    width: 120px;
}

.countdown-item span {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
}

.countdown-item p {
    font-size: 1rem;
    margin: 0;
}

/*Horários dos Cultos*/
.service-times {
    font-family: 'Poppins', sans-serif;
    padding: 80px 20px;
    margin: 50px auto;
    max-width: 1200px;
}

.service-times h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #8b0000;
    text-align: center;
    margin-bottom: 40px;
}

.service-card {
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 20px;
    margin: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.service-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.service-card i {
    font-size: 2.5rem;
    color: #8b0000;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.service-card p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 0;
}

.service-card .highlight {
    color: #8b0000;
    font-weight: 700;
}

/* Botão de Chamada para Ação */
.cta-button {
    margin-top: 40px;
    text-align: center;
}

.cta-button .btn {
    background-color: #8b0000;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 1.1rem;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button .btn:hover {
    background-color: #660000;
}

/* Responsividade */
@media (max-width: 768px) {
    .service-times h2 {
        font-size: 2rem;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }

    .service-card p {
        font-size: 1rem;
    }
}

/* ====== Fim Eventos + Pagina Eventos =========== */

/* ====== LIDERANÇA =============== */
.leadership-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.leadership-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    text-align: center;
    margin-bottom: 40px;
    animation: fadeInDown 1s ease;
}

.leader-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    padding: 20px;
    margin-bottom: 20px;
}

.leader-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.leader-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid #8b0000;
}

.leader-card h5 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
}

.leader-card p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 20px;
}

.leader-card .social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.leader-card .social-icons a {
    color: #8b0000;
    font-size: 1.5rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.leader-card .social-icons a:hover {
    color: #660000;
    transform: scale(1.2);
}

/* Responsividade */
@media (max-width: 768px) {
    .leadership-section h2 {
        font-size: 2rem;
    }

    .leader-card img {
        width: 120px;
        height: 120px;
    }

    .leader-card h5 {
        font-size: 1.3rem;
    }

    .leader-card p {
        font-size: 1rem;
    }
}

/* ====== FIM LIDERANÇA =============== */
 
/* ====== Seção de Vídeo ======*/
  .darken {            /* Transição suave */
    background: rgba(0, 0, 0, 0.9) !important;
    transition: background 0.5s ease;  
}

  .video-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../img/slider3.jpg') no-repeat center center / cover;
    position: relative;
    width: 100%;
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Container do vídeo */
.video-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1280px;
    height: 720px;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
    border-radius: 10px;
    padding: 10px;
}

.video-container video {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    outline: none;
}

/* Botão de Fechar */
.close-video {
    position: absolute;
    top: -10px;
    right: -60px;
    background: rgba(255, 255, 255, 0.7);
    color: black;
    border: none;
    padding: 10px 15px;
    font-size: 1.2rem;
    cursor: pointer;
    border-radius: 50%;
    transition: 0.3s;
}

.close-video:hover {
    background: rgba(255, 255, 255, 1);
}

/* Overlay do Vídeo */
.video-overlay {
    position: relative;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    flex-direction: column;
    z-index: 1;
}

.video-overlay h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.video-overlay p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.video-overlay .play-icon {
    font-size: 7rem;
    cursor: pointer;
    color: #f8c471;
    transition: 0.3s;
    animation: pulse 2s infinite;
}

.video-overlay .play-icon:hover {
    color: #e5a958;
    transform: scale(1.1);
}


        /* Descrição do Evento */
        .event-description {
            max-width: 400px;
            text-align: left;
            margin-left: 50px;
            animation: fadeInLeft 1s ease;
        }

        .event-title {
            font-size: 2rem;
            font-weight: bold;
            color: #f8c471;
        }

        .event-subtitle {
            font-size: 1.5rem;
            color: #e5a958;
            margin-bottom: 10px;
        }

        .event-text {
            font-size: 1.1rem;
            color: #ddd;
            line-height: 1.6;
        }

        .event-info {
            font-size: 1rem;
            font-weight: bold;
            color: #fff;
            margin-top: 15px;
        }


@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsividade */
  /* Responsividade */
  @media (max-width: 900px) {
    .video-container {
        width: 90%;
        height: auto;
    }

    .event-description {
        margin-left: 20px;
        max-width: 300px;
    }

    .event-title {
        font-size: 1.8rem;
    }

    .event-subtitle {
        font-size: 1.3rem;
    }

    .event-text {
        font-size: 1rem;
    }

    .event-info {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .video-overlay h2 { font-size: 2rem; }
    .video-overlay p { font-size: 1rem; }
    .video-overlay .play-icon { font-size: 3rem; }

    .event-description {
        margin-left: 10px;
        max-width: 250px;
    }

    .event-title {
        font-size: 1.5rem;
    }

    .event-subtitle {
        font-size: 1.1rem;
    }

    .event-text {
        font-size: 0.9rem;
    }

    .event-info {
        font-size: 0.8rem;
    }
}

/* FIM Seção de Vídeo */

 /* ====== Seção de Cabeçalho com Paralaxe das paginas (calss: parallax-heade)  =============== */
 header {
    background: url('../img/slider3.jpg') no-repeat center center/cover;
    height: 400px;
    text-align: center;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    font-weight: bold;
    position: relative;
    box-shadow: inset 0 0 0 1000px rgba(0, 0, 0, 0.5);
    /* Efeito paralaxe */
    background-attachment: fixed;
}

 /* ====== Fim Seção de Cabeçalho com Paralaxe das paginas =============== */

  /* ====== CONTATO =============== */
  /* Estilos específicos para o formulário de contato */
        .contact-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            min-height: 80vh;
        }

        .contact-card {
            background: white;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            margin-bottom: 30px;
        }

        .contact-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .contact-card h5 {
            color: #8b0000;
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 15px;
            text-align: center;
        }

        .contact-card p {
            color: #666;
            font-size: 1.1rem;
            text-align: center;
            margin-bottom: 30px;
        }

        .form-group {
            margin-bottom: 25px;
            position: relative;
        }

        .form-control {
            border: 2px solid #e9ecef;
            border-radius: 10px;
            padding: 15px 20px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background-color: #f8f9fa;
        }

        .form-control:focus {
            border-color: #8b0000;
            box-shadow: 0 0 0 0.2rem rgba(139, 0, 0, 0.25);
            background-color: white;
        }

        .form-control.is-invalid {
            border-color: #dc3545;
            background-color: #fff5f5;
        }

        .form-control.is-valid {
            border-color: #28a745;
            background-color: #f0fff4;
        }

        .invalid-feedback {
            display: block;
            color: #dc3545;
            font-size: 0.875rem;
            margin-top: 5px;
        }

        .valid-feedback {
            display: block;
            color: #28a745;
            font-size: 0.875rem;
            margin-top: 5px;
        }

        .btn-submit {
            background: linear-gradient(135deg, #8b0000 0%, #660000 100%);
            color: white;
            border: none;
            padding: 15px 40px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 10px;
            width: 100%;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .btn-submit:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(139, 0, 0, 0.3);
        }

        .btn-submit:disabled {
            opacity: 0.7;
            cursor: not-allowed;
            transform: none;
        }

        .btn-submit .spinner {
            display: none;
        }

        .btn-submit.loading .spinner {
            display: inline-block;
        }

        .btn-submit.loading .btn-text {
            display: none;
        }

        .contact-info {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            height: fit-content;
        }

        .contact-info h5 {
            color: #8b0000;
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 25px;
            text-align: center;
        }

        .contact-info p {
            color: #555;
            font-size: 1rem;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            line-height: 1.6;
        }

        .contact-info i {
            color: #8b0000;
            margin-right: 15px;
            width: 20px;
            text-align: center;
        }

        .alert {
            border-radius: 10px;
            padding: 15px 20px;
            margin-bottom: 25px;
            border: none;
            font-weight: 500;
        }

        .alert-success {
            background-color: #d4edda;
            color: #155724;
            border-left: 4px solid #28a745;
        }

        .alert-danger {
            background-color: #f8d7da;
            color: #721c24;
            border-left: 4px solid #dc3545;
        }

        .map-section {
            margin-top: 0;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .map-section iframe {
            border-radius: 15px;
        }

        /* Animações */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .contact-card, .contact-info {
            animation: fadeInUp 0.6s ease;
        }

        /* Responsividade */
        @media (max-width: 768px) {
            .contact-section {
                padding: 60px 0;
            }

            .contact-card, .contact-info {
                padding: 25px;
                margin-bottom: 20px;
            }

            .contact-card h5 {
                font-size: 1.5rem;
            }

            .contact-info h5 {
                font-size: 1.4rem;
            }
        }
 
 /* ====== FIM CONTATO ============ */

 /* ====== Rodapé =================*/
.footer {
    background-color: #672a1e;
    color: white;
    padding: 20px 0;
    text-align: center;
}

.footer a {
    color: #f8c471;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.social-icons {
    list-style: none;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.social-icons li {
    margin: 0 10px;
}

.social-icons a {
    color: #fff; /* Cor dos ícones, ajuste conforme o seu tema */
    font-size: 24px;
}

.social-icons a:hover {
    color: #f8c471; /* Cor dos ícones ao passar o mouse, ajuste conforme o seu tema */
}
/* ====== Fim Rodapé =================*/


/* Botão de Voltar ao Topo */
.back-to-top {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.8;

    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #8b0000;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: #660000;
    transform: translateY(-5px);
}

/* Responsividade */
@media (max-width: 768px) {
    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

