/* Seção de Serviços */
.services-section {
    background: #f9fafb;
    padding: 60px 0;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.headline-section {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
    text-align: center;
}

.services-tagline {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.services-container .row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.services-container .col-md-6 {
    flex: 0 0 calc(50% - 15px);
    max-width: calc(50% - 15px);
}

.services-container .col-lg-4 {
    flex: 0 0 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
}

.service-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.service-card .card-img-top {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 4px solid #075e54;
}

.service-card .card-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card .card-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #075e54;
    margin-bottom: 15px;
    text-align: center;
}

.service-card .card-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    flex-grow: 1;
    margin-bottom: 20px;
    text-align: justify;
}

.service-card .continue-reading-btn {
    background: #075e54;
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    transition: background 0.3s ease, transform 0.3s ease;
    align-self: center;
    width: 150px;
    white-space: nowrap;
}

.service-card .continue-reading-btn:hover {
    background: #054d44;
    transform: translateY(-2px);
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1050;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.show {
    opacity: 1;
}

.lightbox-content {
    background: #fff;
    border-radius: 20px;
    max-width: 1000px;
    width: 90%;
    max-height: 85vh;
    padding: 40px;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.4s ease;
    display: flex;
    flex-direction: column;
}

.lightbox-inner {
    max-height: calc(85vh - 80px);
    /* Ajuste para padding */
    overflow-y: auto;
    padding-right: 10px;
    /* Espaço para a barra de rolagem */
}

/* Estilização da barra de rolagem */
.lightbox-inner::-webkit-scrollbar {
    width: 8px;
}

.lightbox-inner::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.lightbox-inner::-webkit-scrollbar-thumb {
    background: #075e54;
    border-radius: 10px;
}

.lightbox-inner::-webkit-scrollbar-thumb:hover {
    background: #054d44;
}

.lightbox-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #075e54;
    margin-bottom: 25px;
    text-align: left;
    /* Alinhado à esquerda no lightbox */
}

.lightbox-content .service-images {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
}

.lightbox-content .service-images img {
    max-width: 280px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.lightbox-content .service-images img:hover {
    transform: scale(1.05);
}

.lightbox-content p {
    font-size: 1.1rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: justify;
}

.lightbox-content .whatsapp-btn {
    display: inline-flex;
    align-items: center;
    background: #25D366;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    align-self: center;
}

.lightbox-content .whatsapp-btn img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.lightbox-content .whatsapp-btn:hover {
    background: #00A884;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2.5rem;
    color: #075e54;
    cursor: pointer;
    background: none;
    border: none;
    transition: color 0.3s ease;
}

.close-lightbox:hover {
    color: #054d44;
}

/* Animação */
@keyframes fadeInUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsividade */
@media (max-width: 991px) {
    .services-container .col-lg-4 {
        flex: 0 0 calc(50% - 15px);
        max-width: calc(50% - 15px);
    }

    .service-card .card-img-top {
        height: 180px;
    }
}

@media (max-width: 767px) {
    .services-container .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

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

    .services-tagline {
        font-size: 1rem;
    }

    .service-card .card-title {
        font-size: 1.4rem;
    }

    .service-card .card-text {
        font-size: 0.95rem;
    }

    .service-card .continue-reading-btn {
        width: 130px;
        font-size: 0.9rem;
        padding: 8px 15px;
    }

    .lightbox-content {
        padding: 20px;
        width: 95%;
    }

    .lightbox-inner {
        max-height: calc(85vh - 40px);
    }

    .lightbox-content h3 {
        font-size: 1.6rem;
    }

    .lightbox-content p {
        font-size: 1rem;
    }

    .lightbox-content .service-images img {
        max-width: 100%;
    }
}
.seo-hidden {
    display: none;
    /* Oculta para usuários, mas visível para crawlers */
}