html,
body {
    overflow-x: hidden;
    width: 100%;
}

.hero-gradient {
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.9) 0%, rgba(2, 136, 209, 0.8) 100%);
}

.text-gradient {
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-image: linear-gradient(to right, #2E7D32, #0288D1);
}

/* Animação de fade-in para o título */
@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

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

.animate-fade-in {
    animation: fade-in 1s ease-out;
}

/* Padrão de pontos decorativo */
.pattern-dots {
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
}

/* Scroll Reveal Animations - Progressive Enhancement */
.reveal {
    opacity: 1;
}

.js-enabled .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.js-enabled .reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Estilização Global para Setas de Carrossel (Swiper) */
.swiper-button-next,
.swiper-button-prev {
    background: rgba(255, 255, 255, 0.95);
    width: 48px !important;
    height: 48px !important;
    border-radius: 50% !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    color: #2E7D32 !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.dark .swiper-button-next,
.dark .swiper-button-prev {
    background: rgba(30, 30, 30, 0.95);
    color: #4CAF50 !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4) !important;
}

.swiper-button-next::after {
    content: 'next' !important;
    font-family: swiper-icons;
    font-size: 18px !important;
    font-weight: 900 !important;
}

.swiper-button-prev::after {
    content: 'prev' !important;
    font-family: swiper-icons;
    font-size: 18px !important;
    font-weight: 900 !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: #2E7D32 !important;
    color: white !important;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.3) !important;
}

.dark .swiper-button-next:hover,
.dark .swiper-button-prev:hover {
    background: #4CAF50 !important;
    color: white !important;
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3) !important;
}

/* Ajuste de posição para não cortar em telas pequenas */
@media (max-width: 768px) {

    .swiper-button-next,
    .swiper-button-prev {
        width: 36px !important;
        height: 36px !important;
        display: none !important;
        /* Esconde no mobile para priorizar o swipe */
    }
}

.transformation-swiper {
    padding: 20px 0 60px 0 !important;
}

.transformation-swiper .swiper-slide {
    height: auto;
    padding: 10px;
    /* Space for shadows and badges */
}

.transformation-swiper .swiper-wrapper {
    align-items: center;
}