/* Reset e Configurações Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #333;
    overflow-x: hidden;
    padding-top: 80px;
}

/* Menu de Navegação */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-logo {
    max-height: 50px;
    width: auto;
}

.navbar-nav .nav-link {
    color: #2c3e50;
    font-weight: 500;
    font-size: 1rem;
    padding: 0.5rem 1.25rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: #198754;
}

.navbar-nav .nav-link.active {
    color: #198754;
    font-weight: 600;
}

/* Dobra 1 - Hero Section */
.hero-section {
    background: url('./imagens/imghero.png') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    padding: 0rem 0;
    position: relative;
}

.hero-content {
    padding: 2rem 0;
}

.logo {
    max-width: 400px;
    width: 100%;
    height: auto;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.0;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.hero-title .text-success {
    color: #198754 !important;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 2rem;
}

.btn-cta {
    background-color: #198754;
    color: white;
    font-size: 1.0rem;
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    border: none;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(25, 135, 84, 0.3);
}

.btn-cta:hover {
    background-color: #157347;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(25, 135, 84, 0.4);
    color: white;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-row {
    min-height: 100vh;
}

/* Features Cards */
.features-row {
    margin-top: 3rem;
    padding-bottom: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 3rem;
    color: #198754;
    margin-bottom: 1rem;
}

.feature-text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #555;
    margin: 0;
}

.feature-text strong {
    color: #2c3e50;
    font-weight: 600;
}

/* Dobra 2 - Quem pode participar */
.section-participar {
    padding: 8rem 0 5rem 0;
    background-color: #f8f9fa;
}

.content-participar {
    padding-right: 2rem;
}

.title-participar {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.0;
    color: #2c3e50;
    margin-bottom: 2rem;
}


.text-participar {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
}

.text-participar strong {
    color: #198754;
    font-weight: 700;
}

.box-participar {
    background-color: transparent;
    border-radius: 15px;
    padding: 0;
}

.btn-participar-top {
    width: 100%;
    background-color: #198754;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    padding: 1.25rem 2rem;
    border-radius: 15px;
    border: none;
    text-decoration: none;
    display: block;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(25, 135, 84, 0.3);
    margin-bottom: 1rem;
}

.btn-participar-top:hover {
    background-color: #157347;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(25, 135, 84, 0.4);
}

.box-images-grid {
    display: flex;
    gap: 0;
    border-radius: 10px;
    overflow: hidden;
}

.persona-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}


/* Dobra 3 - Benefícios */
.section-beneficios {
    padding: 5rem 0;
    background-color: white;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 3rem;
}

.beneficio-card {
    display: flex;
    align-items: flex-start;
    background-color: #f8f9fa;
    border-radius: 5%;
    padding: 2rem;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.beneficio-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background:
        linear-gradient(to bottom,
            #ffe150 0%,
            #ffe150 20%,
            #3e6bb3 20%,
            #3e6bb3 40%,
            #189349 40%,
            #189349 100%
        );
}

.beneficio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.beneficio-number {
    font-size: 4rem;
    font-weight: 700;
    color: #e0e0e0;
    margin-right: 1.5rem;
    line-height: 1;
    flex-shrink: 0;
}

.beneficio-content {
    flex: 1;
}

.beneficio-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

.beneficio-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

/* Dobra 4 - Estatísticas */
.section-estatisticas {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.estatisticas-wrapper {
    position: relative;
    padding-left: 3rem;
}

.barra-colorida {
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(to bottom,
        #ffe150 0%,
        #ffe150 33%,
        #3e6bb3 33%,
        #3e6bb3 66%,
        #189349 66%,
        #189349 100%
    );
    border-radius: 3px;
}

.estatistica-card {
    background-color: white;
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.estatistica-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.estatistica-text {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.estatistica-text strong {
    color: #189349;
    font-weight: 700;
}

.estatistica-fonte {
    font-size: 0.85rem;
    color: #888;
    margin: 0;
    font-style: italic;
}

.destaque-box {
    display: flex;
    align-items: center;
    background: linear-gradient(to right, #d4f4dd, #e8f9ed);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
}

.destaque-icon {
    background-color: #189349;
    color: white;
    width: 80px;
    height: 80px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-right: 2rem;
    flex-shrink: 0;
}

.destaque-text {
    font-size: 1.25rem;
    line-height: 1.5;
    color: #2c3e50;
    margin: 0;
}

.destaque-text strong {
    color: #189349;
    font-weight: 700;
}

/* Dobra 5 - Passo a Passo */
.section-passo-a-passo {
    padding: 5rem 0;
    background-color: #189349;
}

.passo-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 3rem;
}

.passo-card {
    background-color: #f8f9fa;
    border-radius: 15px;
    padding: 2rem 1.5rem;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.passo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.passo-number {
    background-color: #189349;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.passo-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.passo-card-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

.btn-comecar-wrapper {
    float: left;
    width: 100%;
    background-color: #f8f9fa;
    /* border-radius: 15px; */
    padding: 2rem;
    text-align: center;
    margin-top: 2rem;
}

.btn-comecar {
    background-color: #189349;
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    padding: 0.6rem 3rem;
    border-radius: 5px;
    border: 2px solid #189349;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-comecar:hover {
    background-color: white;
    color: #189349;
    border-color: #189349;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 991px) {
    .navbar-logo {
        max-height: 40px;
    }

    .navbar-nav {
        text-align: center;
        padding-top: 1rem;
    }

    .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-content {
        text-align: center;
        margin-bottom: 2rem;
    }

    .logo {
        max-width: 300px;
    }

    .hero-image {
        margin-bottom: 2rem;
    }

    .features-row {
        margin-top: 2rem;
    }

    /* Dobra 2 Responsive */
    .content-participar {
        padding-right: 0;
        text-align: center;
    }

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

    .btn-participar-top {
        font-size: 1.25rem;
        padding: 1rem 1.5rem;
    }

    /* Dobra 3 Responsive */
    .section-title {
        font-size: 2rem;
    }

    .beneficio-number {
        font-size: 3rem;
        margin-right: 1rem;
    }

    .beneficio-title {
        font-size: 1.15rem;
    }

    /* Dobra 4 Responsive */
    .estatisticas-wrapper {
        padding-left: 2rem;
    }

    .destaque-text {
        font-size: 1.1rem;
    }

    .destaque-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
        margin-right: 1.5rem;
    }

    /* Dobra 5 Responsive */
    .passo-title {
        font-size: 2rem;
    }

    .passo-card {
        padding: 1.5rem;
    }

    .passo-number {
        width: 50px;
        height: 50px;
        font-size: 1.75rem;
    }

    .passo-card-title {
        font-size: 1.15rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        background-attachment: scroll;
    }

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

    .hero-description {
        font-size: 1rem;
    }

    .btn-cta {
        font-size: 1.1rem;
        padding: 0.875rem 2rem;
    }

    .feature-icon {
        font-size: 2.5rem;
    }

    .feature-text {
        font-size: 0.9rem;
    }

    .hero-row {
        min-height: 20vh;
    }

    .logo {
        max-width: 250px;
    }

    /* Dobra 2 Responsive */
    .section-participar {
        padding: 5rem 0 3rem 0;
    }

    .title-participar {
        font-size: 1.75rem;
    }

    .text-participar {
        font-size: 0.95rem;
    }

    .btn-participar-top {
        font-size: 1.15rem;
        padding: 0.875rem 1.25rem;
    }

    /* Dobra 3 Responsive */
    .section-title {
        font-size: 1.75rem;
    }

    .beneficio-card {
        padding: 1.5rem;
    }

    .beneficio-number {
        font-size: 2.5rem;
    }

    .beneficio-title {
        font-size: 1.1rem;
    }

    .beneficio-text {
        font-size: 0.95rem;
    }

    /* Dobra 4 Responsive */
    .estatisticas-wrapper {
        padding-left: 1.5rem;
    }

    .barra-colorida {
        width: 4px;
    }

    .estatistica-card {
        padding: 1.5rem;
    }

    .estatistica-text {
        font-size: 1rem;
    }

    .destaque-box {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .destaque-icon {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .destaque-text {
        font-size: 1rem;
    }

    /* Dobra 5 Responsive */
    .passo-title {
        font-size: 1.75rem;
    }

    .btn-comecar-wrapper {
        padding: 1.5rem;
    }

    .btn-comecar {
        font-size: 1.1rem;
        padding: 0.875rem 2rem;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .btn-cta {
        width: 100%;
        text-align: center;
    }

    .feature-card {
        padding: 1.5rem 1rem;
    }
}

/* Dobra 6 - Formulário de Inscrição */
.section-formulario {
    padding: 5rem 0;
    background-color: white;
}

.formulario-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 3rem;
}

.documentos-box {
    background-color: transparent;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    height: 100%;
}

.documentos-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #189349;
    margin-bottom: 1.5rem;
}

.documentos-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.documentos-list li {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 0.75rem;
    padding-left: 2rem;
    position: relative;
}

.documentos-list li i {
    color: #189349;
    font-size: 1.25rem;
    position: absolute;
    left: 0;
    top: 0.125rem;
}

.form-box {
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 2.5rem 2rem;
}

.form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    text-align: center;
}

.inscricao-form .form-control {
    padding: 0.875rem 1rem;
    font-size: 1rem;
    border-radius: 8px;
    border: 1px solid #ddd;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.inscricao-form .form-control:focus {
    border-color: #189349;
    box-shadow: 0 0 0 0.2rem rgba(24, 147, 73, 0.15);
}

.inscricao-form select.form-control {
    cursor: pointer;
}

.preco-destaque {
    /* background: #1f1f1f; */
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    margin: 1.5rem 0;
}

.preco-label {
    font-size: 0.95rem;
    color: #1f1f1f;
    margin-bottom: 0.5rem;
}

.preco-valor {
    font-size: 3rem;
    font-weight: 700;
    color: #167947;
    margin: 0.25rem 0;
    line-height: 1;
}

.preco-total {
    font-size: 1rem;
    color: #1f1f1f;
    margin-top: 0.5rem;
    margin-bottom: 0;
}

.btn-form-submit {
    background-color: #167947;
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 8px;
    border: none;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(22, 121, 71, 0.4);
}

.btn-form-submit:hover {
    background-color: #135a38;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(22, 121, 71, 0.5);
}

.form-disclaimer {
    font-size: 0.85rem;
    color: #888;
    text-align: center;
    margin-top: 1rem;
    line-height: 1.5;
}

/* Dobra 6 Responsive */
@media (max-width: 991px) {
    .formulario-title {
        font-size: 2rem;
    }

    .documentos-box {
        margin-bottom: 2rem;
    }

    .documentos-title,
    .form-title {
        font-size: 1.35rem;
    }

    .preco-valor {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .formulario-title {
        font-size: 1.75rem;
    }

    .documentos-box,
    .form-box {
        padding: 2rem 1.5rem;
    }

    .documentos-title,
    .form-title {
        font-size: 1.25rem;
    }

    .documentos-list li {
        font-size: 0.95rem;
    }

    .preco-valor {
        font-size: 2.25rem;
    }

    .btn-form-submit {
        font-size: 1.15rem;
        padding: 0.875rem 1.5rem;
    }

    .documentos-logos {
        flex-direction: column;
    }

    .documentos-logo {
        margin-right: 0 !important;
        margin-bottom: 1rem;
        max-width: 90% !important;
        height: auto;
    }

    .documentos-logo:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 576px) {
    .formulario-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .preco-valor {
        font-size: 2rem;
    }

    .preco-label,
    .preco-total {
        font-size: 0.9rem;
    }
}

/* Dobra Nova - Vídeos */
.section-videos {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.videos-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 3rem;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    background-color: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Controles do Carrossel de Vídeos */
.section-videos .carousel {
    overflow: visible;
}

.section-videos .carousel-control-prev,
.section-videos .carousel-control-next {
    width: 45px;
    height: 45px;
    background-color: #189349;
    border-radius: 5px;
    opacity: 1;
    top: -65px;
    bottom: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.section-videos .carousel-control-next {
    right: 12px;
}

.section-videos .carousel-control-prev {
    right: 69px;
    left: auto;
}

.section-videos .carousel-control-prev:hover,
.section-videos .carousel-control-next:hover {
    background-color: #157347;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Ícones dentro dos botões */
.section-videos .carousel-control-prev-icon,
.section-videos .carousel-control-next-icon {
    width: 1.5rem;
    height: 1.5rem;
    background-color: transparent;
    box-shadow: none;
}

@media (max-width: 991px) {
    .videos-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .section-videos .carousel-control-prev,
    .section-videos .carousel-control-next {
        width: 35px;
        height: 35px;
        top: -55px;
    }

    .section-videos .carousel-control-next {
        right: 0;
    }

    .section-videos .carousel-control-prev {
        right: 45px;
    }

    .section-videos .carousel-control-prev-icon,
    .section-videos .carousel-control-next-icon {
        width: 1rem;
        height: 1rem;
    }
}

/* Dobra Nova - Quem Somos */
.section-quem-somos {
    padding: 5rem 0;
    background-color: white;
}

.quem-somos-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 3rem;
}

.quem-somos-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    text-align: justify;
}

.office-card {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
}

.office-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #189349;
}

.office-icon {
    font-size: 2.5rem;
    color: #189349;
    margin-bottom: 1rem;
}

.office-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.office-address {
    font-size: 1rem;
    color: #555;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 991px) {
    .quem-somos-title {
        font-size: 2rem;
    }
}

/* Dobra 7 - Perguntas Frequentes */
.section-faq {
    padding: 5rem 0;
    /* background-color: #f8f9fa; */
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 3rem;
}

.accordion {
    max-width: 900px;
    margin: 0 auto;
}

.accordion-item {
    background-color: #e8e9ea;
    border: none;
    border-radius: 0;
    margin-bottom: 0;
        border-bottom: solid 1px #2c3e50;
}

.accordion-item:first-child {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.accordion-item:last-child {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.accordion-header {
    margin-bottom: 0;
}

.accordion-button {
    /* background-color: #e8e9ea; */
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1.25rem 3rem 1.25rem 1.5rem;
    border: none;
    box-shadow: none;
    position: relative;
}

.accordion-button:not(.collapsed) {
    /* background-color: #e8e9ea; */
    color: #2c3e50;
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-button::after {
    background-image: none;
    content: "\f107";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 1.25rem;
    color: #189349;
    width: auto;
    height: auto;
    background-size: auto;
    flex-shrink: 0;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
    background-image: none;
}

.accordion-body {
    background-color: white;
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
    padding: 1.5rem;
    border-top: 1px solid #ddd;
}

/* Dobra 7 Responsive */
@media (max-width: 991px) {
    .faq-title {
        font-size: 2rem;
    }

    .accordion-button {
        font-size: 1.05rem;
        padding: 1.15rem 3rem 1.15rem 1.25rem;
    }
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 1.75rem;
    }

    .accordion-button {
        font-size: 1rem;
        padding: 1rem 2.5rem 1rem 1rem;
    }

    .accordion-body {
        font-size: 0.95rem;
        padding: 1.25rem;
    }
}

@media (max-width: 576px) {
    .faq-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .accordion-button {
        font-size: 0.95rem;
    }
}

/* Dobra 8 - Rodapé */
.footer {
    background-color: #f8f9fa;
    color: #2c3e50;
    padding: 4rem 0 0 0;
}

.footer-logo {
    max-width: 200px;
    height: auto;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #189349;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background-color: #157347;
    color: white;
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color:#2c3e50;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #189349;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-size: 0.95rem;
}

.footer-contact i {
    color: #189349;
    font-size: 1.1rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding: 2rem 0;
}

.copyright {
    color: #2c3e50;
    font-size: 0.9rem;
    margin: 0;
}

.developer-credit {
    color: #2c3e50;
    font-size: 0.8rem;
    margin: 0;
}

.developer-credit a {
    color: #189349;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.developer-credit a:hover {
    color: #157347;
    text-decoration: underline;
}

/* Rodapé Responsive */
@media (max-width: 991px) {
    .footer {
        padding: 3rem 0 0 0;
    }

    .footer-logo {
        max-width: 180px;
    }

    .footer-title {
        font-size: 1.15rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 2.5rem 0 0 0;
    }

    .footer-logo {
        max-width: 160px;
    }

    .footer-description,
    .footer-links a,
    .footer-contact li {
        font-size: 0.9rem;
    }

    .footer-bottom {
        margin-top: 2rem;
        padding: 1.5rem 0;
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 2rem 0 0 0;
    }

    .footer-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .footer-social {
        gap: 0.75rem;
    }

    .social-link {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .copyright {
        font-size: 0.85rem;
    }

    .developer-credit {
        font-size: 0.75rem;
        margin-top: 0.5rem;
    }
}
