html,
body {
    overflow-x: hidden;
}

body[data-aos-duration="3500"] [data-aos],
[data-aos][data-aos][data-aos-duration="3500"] {
    transition-duration: 3500ms;
}

body[data-aos-duration="4000"] [data-aos],
[data-aos][data-aos][data-aos-duration="4000"] {
    transition-duration: 4000ms;
}

body[data-aos-duration="4500"] [data-aos],
[data-aos][data-aos][data-aos-duration="4500"] {
    transition-duration: 4500ms;
}

body[data-aos-duration="5000"] [data-aos],
[data-aos][data-aos][data-aos-duration="5000"] {
    transition-duration: 5000ms;
}

body[data-aos-duration="5500"] [data-aos],
[data-aos][data-aos][data-aos-duration="5500"] {
    transition-duration: 5500ms;
}

body[data-aos-duration="6000"] [data-aos],
[data-aos][data-aos][data-aos-duration="6000"] {
    transition-duration: 6000ms;
}

body[data-aos-duration="6500"] [data-aos],
[data-aos][data-aos][data-aos-duration="6500"] {
    transition-duration: 6500ms;
}

.service-container {
    background: url(img/banner-foto.svg);
}

.video-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    justify-content: center;
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.content {
    position: relative;
    z-index: 3;
    color: white;
    text-align: center;
    padding: 20px;
}

.img-bg {
    cursor: pointer;
}

.img-bg:hover {
    transform: scale(1.05);
    transition: 1s;
}

/* Header  */
/* Seção de Parceiros - Estilo Moderno Verde e Branco */
.partners-section {
    background: linear-gradient(135deg, #f8fffe 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.partners-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            #a6ff4d 50%,
            transparent 100%);
}

/* Badge da Seção */
.section-badge {
    display: inline-block;
    margin-bottom: 1rem;
}

.badge-text {
    background: linear-gradient(135deg, #a6ff4d 0%, #002852 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(166, 255, 77, 0.3);
}

/* Títulos */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #718096;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* section-sobre */
.section-sobre {
    position: relative;
    padding-top: 120px;
    padding-bottom: 120px;
}

.overlay-sobre {
    background: linear-gradient(to left,
            rgba(0, 0, 0, 0.8),
            rgba(0, 0, 0, 0.4));
}

.section-sobre>* {
    position: relative;
    z-index: 1;
}

.section-sobre h1,
.section-sobre p {
    color: #fff;
}

/* Grid de Parceiros */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    padding: 58px 110px;
}

/* Tablet */
@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 38px 92px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .partners-grid {
        grid-template-columns: 1fr;
        padding: 18px 10px;
    }
}

/* Cards dos Parceiros */
.partner-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(166, 255, 77, 0.1);
}

.partner-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #a6ff4d 0%, #002852 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.partner-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(166, 255, 77, 0.15);
    border-color: rgba(166, 255, 77, 0.3);
}

.partner-card:hover::before {
    transform: scaleX(1);
}

/* Container do Logo */
.partner-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    position: relative;
}

.partner-logo {
    max-height: 50px;
    max-width: 100%;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: grayscale(0.3) opacity(0.8);
}

.partner-card:hover .partner-logo {
    filter: grayscale(0) opacity(1);
    transform: scale(1.05);
}

.block-newsletter {
    width: 100%;
    display: flex;
    gap: 10px;
    align-items: center;
}

.block-newsletter #emailInput {
    border: 1px solid rgba(255, 255, 255, 0.28);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.97) 0%, rgba(247, 250, 248, 0.96) 100%);
    color: #173428;
    border-radius: 999px;
    box-shadow:
        0 10px 28px rgba(0, 0, 0, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.72);
    transition:
        box-shadow 0.25s ease,
        border-color 0.25s ease,
        transform 0.2s ease,
        background-color 0.25s ease;
}

.block-newsletter #emailInput::placeholder {
    color: #5f6f68;
    opacity: 1;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.block-newsletter #emailInput:hover {
    border-color: rgba(166, 255, 77, 0.46);
    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.block-newsletter #emailInput:focus,
.block-newsletter #emailInput:focus-visible {
    outline: none;
    border-color: rgba(166, 255, 77, 0.86);
    box-shadow:
        0 0 0 4px rgba(166, 255, 77, 0.22),
        0 14px 32px rgba(0, 0, 0, 0.17),
        inset 0 1px 0 rgba(255, 255, 255, 0.85);
    transform: translateY(-1px);
}

.block-newsletter button:hover {
    border: 1px solid #a6ff4d;
}

/* Responsividade */
@media (max-width: 768px) {
    .section-sobre {
        padding-top: 88px;
        padding-bottom: 88px;
    }

    .section-title {
        font-size: 2rem;
    }

    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }

    .partner-card {
        padding: 1.5rem;
    }

    .partner-logo-container {
        height: 60px;
    }

    .partner-logo {
        max-height: 40px;
    }

    .block-newsletter button span {
        display: none;
    }
}

@media (max-width: 480px) {
    .section-sobre {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .video-container {
        position: relative;
        width: 100%;
        overflow: hidden;
        padding-left: 2px !important;
        padding-right: 2px !important;
        height: 100svh;
    }

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .partner-card {
        padding: 1rem;
    }
}

/* Animações adicionais */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.partner-card {
    animation: fadeInUp 0.6s ease forwards;
}

.partner-card:nth-child(1) {
    animation-delay: 0.1s;
}

.partner-card:nth-child(2) {
    animation-delay: 0.2s;
}

.partner-card:nth-child(3) {
    animation-delay: 0.3s;
}

.partner-card:nth-child(4) {
    animation-delay: 0.4s;
}

.partner-card:nth-child(5) {
    animation-delay: 0.5s;
}

.partner-card:nth-child(6) {
    animation-delay: 0.6s;
}

.partner-card:nth-child(7) {
    animation-delay: 0.7s;
}

.partner-card:nth-child(8) {
    animation-delay: 0.8s;
}

/* Modern CSS styles for the about section */
.about-section {
    position: relative;
    overflow: hidden;
}

.overlay-gradient {
    background: linear-gradient(135deg,
            rgba(0, 0, 0, 0.7) 0%,
            rgba(0, 0, 0, 0.3) 50%,
            rgba(166, 255, 77, 0.1) 100%);
    backdrop-filter: blur(1px);
}

.content-wrapper {
    animation: fadeInUp 1s ease-out;
    padding: 2rem 0;
}

.section-badge {
    position: relative;
}

.badge-text {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(29, 158, 117, 0.12);
    border: 0.5px solid rgba(166, 255, 77, 0.1);
    border-radius: 100px;
    padding: 5px 14px;
    text-transform: uppercase;
    font-weight: 500;
    color: #a6ff4d;
    font-size: 16px;
    letter-spacing: 2px;
    padding-left: 2rem;
}

.main-heading {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
}

.content-text {
    position: relative;
}

.description-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    text-align: justify;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.brand-name {
    position: relative;
    margin-top: 2rem;
}

.brand-text {
    color: #a6ff4d;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    display: inline-block;
}

.brand-text::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #a6ff4d, transparent);
    border-radius: 2px;
}

/* Responsive improvements */
@media (max-width: 768px) {
    .video-container {
        padding-left: 8px;
        padding-right: 8px;
    }

    .content-wrapper {
        padding: 1rem 0;
    }

    .main-heading {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .description-text {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .badge-text {
        font-size: 0.8rem;
        letter-spacing: 1.5px;
    }

    .brand-text {
        font-size: 1.1rem;
        letter-spacing: 2px;
    }
}

/* Smooth animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover effects for interactive elements */
.content-wrapper:hover .brand-text::after {
    width: 120%;
    transition: width 0.3s ease;
}

.section-badge:hover .badge-text::before {
    width: 2rem;
    transition: width 0.3s ease;
}

/* Services Sections Styles */
.services-section {
    position: relative;
    background: linear-gradient(135deg, #f8fffe 0%, #ffffff 100%);
}

.services-section:nth-child(even) {
    background: linear-gradient(135deg, #ffffff 0%, #f0f9f0 100%);
}

/* Section Headers */
.section-badge {
    position: relative;
    display: inline-block;
}

.badge-text {
    color: #83BA3E;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding: 0.5rem 1.5rem;
    background: rgba(166, 255, 77, 0.1);
    border-radius: 25px;
    border: 2px solid rgba(166, 255, 77, 0.2);
    transition: all 0.3s ease;
}

.badge-text:hover {
    background: rgba(166, 255, 77, 0.2);
    border-color: rgba(166, 255, 77, 0.4);
    transform: translateY(-2px);
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #002852;
    margin-bottom: 1rem;
    position: relative;
}

.section-description {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* Service Cards */
.service-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(166, 255, 77, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #a6ff4d, #a6ff4d);
    transition: left 0.4s ease;
}

.service-card:hover::before {
    left: 0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(166, 255, 77, 0.2);
    border-color: rgba(166, 255, 77, 0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #a6ff4d, #a6ff4d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-description {
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.feature-tag {
    background: rgba(166, 255, 77, 0.1);
    color: #a6ff4d;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(166, 255, 77, 0.2);
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: rgba(166, 255, 77, 0.2);
    transform: scale(1.05);
}

/* Premium Cards */
.premium-card {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8fffe 100%);
    border: 2px solid rgba(166, 255, 77, 0.2);
}

.premium-card::after {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.premium-card:hover::after {
    opacity: 1;
}

.premium-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #a6ff4d, #a6ff4d);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Interactive Feature Card */
.feature-card {
    background: #ffffff;
    border-radius: 25px;
    padding: 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(166, 255, 77, 0.1);
    transition: all 0.4s ease;
}

.feature-card a {
    text-decoration: none;
    cursor: pointer;
}

.card-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(166, 255, 77, 0.05) 0%,
            rgba(168, 217, 106, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.interactive-card:hover .card-background {
    opacity: 1;
}

.interactive-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(166, 255, 77, 0.2);
    border-color: rgba(166, 255, 77, 0.3);
}

.card-content {
    position: relative;
    z-index: 2;
}

.feature-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #a6ff4d, #a6ff4d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.4s ease;
}

.feature-icon i {
    font-size: 2.5rem;
    color: #ffffff;
}

.interactive-card:hover .feature-icon {
    transform: scale(1.1) rotate(10deg);
}

.feature-title {
    font-size: 2rem;
    font-weight: 700;
    color: #002852;
    margin-bottom: 1rem;
}

.feature-description {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.feature-highlights {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    margin-left: auto;
    margin-right: auto;
}

.highlight-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-weight: 500;
    color: #002852;
}

.highlight-item i {
    color: #a6ff4d;
    font-size: 1.1rem;
}

.cta-button {
    background: linear-gradient(135deg, #a6ff4d, #a6ff4d);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(166, 255, 77, 0.3);
    background: linear-gradient(135deg, #a6ff4d, #a6ff4d);
}

.cta-button i {
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-card {
        padding: 1.5rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .feature-title {
        font-size: 1.5rem;
    }

    .feature-highlights {
        /* align-items: flex-start; */
        flex-direction: column;
        align-items: center;
    }

    .highlight-item {
        justify-content: flex-start;
    }
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card {
    animation: fadeInUp 0.6s ease-out;
}

.service-card:nth-child(2) {
    animation-delay: 0.1s;
}

.service-card:nth-child(3) {
    animation-delay: 0.2s;
}

.service-card:nth-child(4) {
    animation-delay: 0.3s;
}

/* outro  */
/* Modern hero section styles */
.video-container {
    position: relative;
    overflow: hidden;
}

.background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -2;
}

.overlay-modern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(166, 255, 77, 0.8) 0%,
            rgba(0, 0, 0, 0.6) 50%,
            rgba(166, 255, 77, 0.4) 100%);
    z-index: -1;
}

.content-modern {
    position: relative;
    z-index: 1;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Hero content with carousel */
.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    z-index: 10;
}

.hero-slide {
    padding: 2rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-top: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 0.7rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    animation: fadeInUp 1s ease 0.4s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #a6ff4d;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1rem;
    opacity: 0.8;
}

.btn-hero-cta {
    background: linear-gradient(135deg, #a6ff4d, #002852);
    color: white;
    border: none;
    border-radius: 30px;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(166, 255, 77, 0.3);
    margin-top: 1rem;
}

.btn-hero-cta:hover {
    background: linear-gradient(135deg, #002852, #002852);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(166, 255, 77, 0.4);
    color: white;
}

/* Interactive service cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
    padding: 0 1rem;
    position: relative;
    z-index: 20;
}

.service-card {
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(166, 255, 77, 0.1),
            transparent);
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(166, 255, 77, 0.2);
}

.service-card.active {
    background: linear-gradient(135deg, #a6ff4d, #002852);
    color: white;
    transform: translateY(-5px);
}

.service-card.active .service-arrow {
    transform: rotate(180deg);
}

.service-icon {
    font-size: 3rem;
    color: #a6ff4d;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon,
.service-card.active .service-icon {
    color: white;
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.service-card p {
    color: #4b4b4b;
    margin-bottom: 1rem;
}

.service-arrow {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    font-size: 1.2rem;
    color: #a6ff4d;
    transition: all 0.3s ease;
}

.service-card:hover .service-arrow,
.service-card.active .service-arrow {
    color: white;
}

/* Expandable service panels */
.service-panels {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1040;
    pointer-events: none;
}

.service-panel {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(30px);
    border-radius: 25px;
    padding: 3rem;
    max-width: 800px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
}

.service-panel.active {
    transform: translate(-50%, -50%) scale(1);
    pointer-events: all;
}

.panel-content h4 {
    color: #a6ff4d;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.service-details {
    display: grid;
    gap: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(166, 255, 77, 0.05);
    border-radius: 15px;
    border-left: 4px solid #a6ff4d;
    transition: all 0.3s ease;
}

.detail-item:hover {
    background: rgba(166, 255, 77, 0.1);
    transform: translateX(5px);
}

.detail-item i {
    font-size: 1.5rem;
    color: #a6ff4d;
    margin-top: 0.2rem;
}

.detail-item h5 {
    color: #333;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.detail-item p {
    color: #4b4b4b;
    margin: 0;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid white;
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    background-color: #a6ff4d;
    border-color: #a6ff4d;
    transform: scale(1.2);
}

.btn-news {
    background: linear-gradient(135deg, #002852, #002852);
    text-decoration: none;
    color: #fff;
    border: none;
    font-weight: 500;
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 28px;
}

.imprensa-highlight-card {
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(0, 40, 82, 0.15);
    box-shadow: 0 18px 36px rgba(0, 40, 82, 0.12);
}

.imprensa-highlight-image {
    height: 260px;
    width: 100%;
    object-fit: cover;
    border-bottom: 3px solid #a6ff4d;
}

.imprensa-highlight-badge {
    background: #a6ff4d;
    color: #002852;
    font-weight: 700;
}

.imprensa-highlight-title {
    color: #002852;
}

.imprensa-highlight-text {
    color: #4b4b4b;
}

.imprensa-highlight-date {
    color: #4b4b4b;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .service-panel {
        padding: 2rem;
        width: 95%;
    }
}

@media (max-width: 576px) {
    .content-modern {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .service-card {
        padding: 1.5rem;
    }
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}


/* =============================================
   NOSSOS SERVIÇOS — Premium Redesign
   ============================================= */

/* Section background */
.services-tabs-section {
    padding: 100px 0 120px;
    background-color: white;
    position: relative;
    overflow: hidden;
}

/* Glowing orbs */
.services-bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
}
.services-bg-glow--left {
    top: -100px;
    left: -200px;
    background: radial-gradient(circle, rgba(166,255,77,0.08) 0%, transparent 70%);
}
.services-bg-glow--right {
    bottom: -100px;
    right: -200px;
    background: radial-gradient(circle, rgba(0,40,82,0.4) 0%, transparent 70%);
}

/* Override section-title color for dark bg */
.services-tabs-section .section-title {
    color: #002852;
}
.services-tabs-section .section-description {
    color: #002852;
}

/* -- Tabs ---------------------------------------- */
.tabs-container {
    margin-bottom: 56px;
    padding: 0 15px;
}

.tabs-list {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    border-bottom: none;
    padding-bottom: 0;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
}

.tabs-list::-webkit-scrollbar {
    display: none;
}

.tab-trigger {
    background: rgba(166, 255, 77,0.06);
    border: 1px solid rgba(166, 255, 77,0.12);
    border-radius: 50px;
    padding: 10px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #002852;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.tab-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transition: background 0.3s ease;
    flex-shrink: 0;
}

.tab-trigger:hover {
    color: #002852;
    background: rgba(166,255,77,0.12);
    border-color: rgba(166,255,77,0.35);
}

.tab-trigger:hover .tab-dot {
    background: #a6ff4d;
    color: #002852;
}

.tab-trigger.active {
    background: linear-gradient(135deg, #a6ff4d 0%, #7dcc2a 100%);
    border-color: transparent;
    color: #002852;
    box-shadow: 0 8px 24px rgba(166,255,77,0.35);
}

.tab-trigger.active .tab-dot {
    background: #002852;
}

/* -- Tab content transition --------------------- */
.tabs-content-item {
    display: none;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.tabs-content-item.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   SERVICE CARD — Premium Full-bleed Image
   ============================================= */

.service-card-modern {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 460px;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
            /*    box-shadow 0.4s ease;
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);*/
    background: #0b1220;
}

.service-card-modern:hover {
    transform: translateY(-12px) scale(1.02);
   /* box-shadow: 0 28px 60px rgba(0,0,0,0.6),
                0 0 0 1px rgba(166,255,77,0.25);*/
}

/* Full-bleed background image */
.scard-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.service-card-modern:hover .scard-image {
    transform: scale(1.08);
}

/* Gradient overlay — dark at bottom, lighter at top */
.scard-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(4,12,24,0.15) 0%,
        rgba(4,12,24,0.55) 45%,
        rgba(4,12,24,0.92) 80%,
        rgba(4,12,24,1)    100%
    );
    transition: background 0.4s ease;
    z-index: 1;
}

.service-card-modern:hover .scard-overlay {
    background: linear-gradient(
        to bottom,
        rgba(4,12,24,0.3)  0%,
        rgba(4,12,24,0.65) 40%,
        rgba(4,12,24,0.95) 75%,
        rgba(4,12,24,1)    100%
    );
}

/* Category pill badge — top left */
.scard-category-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 3;
    background: rgba(166,255,77,0.18);
    border: 1px solid rgba(166,255,77,0.4);
    color: #a6ff4d;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 50px;
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.service-card-modern:hover .scard-category-badge {
    background: #a6ff4d;
    color: #002852;
    border-color: #a6ff4d;
}

/* Card body — slides up on hover */
.scard-body {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 28px;
    z-index: 2;
    transition: transform 0.45s cubic-bezier(0.23, 1, 0.32, 1);
    transform: translateY(0);
}

.service-card-modern:hover .scard-body {
    transform: translateY(-62px); /* lifts above the CTA bar */
}

.scard-title {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.scard-description {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 16px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.35s ease 0.05s, transform 0.35s ease 0.05s;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-card-modern:hover .scard-description {
    opacity: 1;
    transform: translateY(0);
}

.scard-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #a6ff4d;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 0.3s ease 0.1s, transform 0.3s ease 0.1s, gap 0.25s ease;
}

.service-card-modern:hover .scard-link {
    opacity: 1;
    transform: translateY(0);
}

.scard-link:hover {
    gap: 14px;
    color: #ffffff;
}

/* CTA bar — slides in from bottom */
.scard-cta {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 3;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.service-card-modern:hover .scard-cta {
    transform: translateY(0);
}

.scard-cta-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(90deg, #a6ff4d 0%, #7dcc2a 100%);
    color: #002852;
    border: none;
    font-weight: 800;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: filter 0.25s ease;
}

.scard-cta-btn:hover {
    filter: brightness(1.12);
}

/* =============================================
   SERVICES SECTION CTA LINK
   ============================================= */
.services-cta-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    border-radius: 50px;
    border: 1.5px solid rgba(166,255,77,0.5);
    color: #002852;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(6px);
    background: #a6ff4d;
}

.services-cta-link:hover {
    background:  #a6ff4d;
    border-color: #a6ff4d;
    color:  #002852;
    gap: 16px;
    box-shadow: 0 8px 28px rgba(166,255,77,0.35);
}

/* =============================================
   SWIPER CONTROLS
   ============================================= */
.swiper-container-wrapper {
    position: relative;
    padding: 0 40px 60px;
}

.swiper-button-next,
.swiper-button-prev {
    color: #a6ff4d !important;
    background: rgba(255,255,255,0.06);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(166,255,77,0.25);
    transition: all 0.3s ease;
    top: calc(50% - 30px);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #a6ff4d;
    color: #002852 !important;
    border-color: #a6ff4d;
    box-shadow: 0 4px 16px rgba(166,255,77,0.4);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 1.1rem !important;
    font-weight: 900;
}

.swiper-pagination {
    bottom: 10px !important;
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,0.3) !important;
    opacity: 1;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: #a6ff4d !important;
    width: 28px;
    border-radius: 5px;
}