/*--------------------------------------------------------------
# Root 
--------------------------------------------------------------*/

       :root {
    /* Primeiro conjunto de variáveis */
    --dark-green: #0a5c36;
    --medium-green: #2e8b57;
    --light-green: #7ccd7c;
    --transparent-dark: rgba(10, 92, 54, 0.95);
    --transparent-medium: rgba(46, 139, 87, 0.9);

    /* Segundo conjunto de variáveis */
    --green-light: #8BC34A;
    --green-medium: #4CAF50;
    --green-dark: #2E7D32;
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    font-family: 'Montserrat', sans-serif;
}

/*--------------------------------------------------------------
# Bottom Navigation Bar 
--------------------------------------------------------------*/

/* Estilos para a Bottom Navigation Bar */
.bottom-nav {
  position: fixed;
  bottom: -100px;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, #0396FF 0%, #0D47A1 100%);
  color: white;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.2);
  transition: bottom 0.4s ease-in-out;
  z-index: 999;
  opacity: 0;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  overflow: hidden;
}

.bottom-nav.visible {
  bottom: 0;
  opacity: 1;
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-text {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding: 0 20px;
}

.highlight-text {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 5px;
  display: block;
  animation: pulse 2s infinite;
}

.main-text {
  font-size: 16px;
  opacity: 0.9;
}

.nav-button {
  background-color: #ffffff;
  color: #0D47A1;
  border: none;
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.arrow {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  margin-left: 8px;
  animation: bounce 1.5s infinite;
}

/* Animação de ondas */
.wave-animation {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.wave {
  background: rgba(255, 255, 255, 0.1);
  width: 200%;
  height: 200px;
  position: absolute;
  left: -50%;
  top: -120px;
  border-radius: 43%;
  animation: wave 12s linear infinite;
}

.wave:nth-child(2) {
  animation-delay: -5s;
  opacity: 0.3;
  top: -140px;
}

@keyframes wave {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(0);
  }
  40% {
    transform: translateX(5px);
  }
  60% {
    transform: translateX(3px);
  }
}

/* Responsividade */
@media (max-width: 768px) {
  .nav-content {
    flex-direction: column;
    text-align: center;
    padding: 15px 10px;
  }
  
  .nav-text {
    margin-bottom: 15px;
    padding: 0;
  }
  
  .highlight-text {
    font-size: 20px;
  }
  
  .main-text {
    font-size: 14px;
  }
}

/*--------------------------------------------------------------
# Login / Área restrita 
--------------------------------------------------------------*/
/* Estilos para os botões de login e área restrita */
.navbar-nav .login-link, 
.navbar-nav .area-restrita-link {
    position: relative;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    padding: 8px 15px;
    margin-left: 10px !important;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff !important;
}

.navbar-nav .login-link i, 
.navbar-nav .area-restrita-link i {
    margin-right: 6px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.navbar-nav .login-link:hover, 
.navbar-nav .area-restrita-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.navbar-nav .login-link:hover i, 
.navbar-nav .area-restrita-link:hover i {
    transform: scale(1.1);
}

/* Estilos específicos para desktop */
@media (min-width: 992px) {
    /* Separa os botões de autenticação do resto do menu */
    .auth-buttons {
        margin-left: 30px !important; /* Aumentar espaço para isolar os botões */
    }
    
    /* Impede que os itens de navegação se expandam demais */
    .navbar-nav:not(.auth-buttons) {
        max-width: calc(100% - 250px); /* Reserva um espaço para os botões de auth */
    }
    
    /* Um pouco de espaço extra entre login e área restrita */
    .area-restrita-link {
        margin-left: 5px !important;
    }
    
    /* Oculta os itens originais que não fazem parte do container auth-buttons */
    .navbar-collapse .nav-item.auth-item {
        display: none !important;
    }
}

/* Ajustes para o Mobile Menu */
@media (max-width: 991px) {
    /* Posicionar os itens no final do offcanvas */
    .offcanvas-body {
        display: flex;
        flex-direction: column;
        height: 100%;
    }
    
    .offcanvas-body .navbar-nav {
        flex: 1;
    }
    
    /* Container especial para os links de autenticação no mobile */
    .auth-buttons-mobile {
        margin-top: auto;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 15px;
        width: 100%;
    }
    
    /* Estiliza os botões de autenticação no mobile */
    .auth-buttons-mobile .login-link,
    .auth-buttons-mobile .area-restrita-link {
        width: 100%;
        text-align: left;
        margin: 8px 0 !important;
        border-radius: 8px;
        padding: 12px 15px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(5px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: #fff !important;
        display: flex;
        justify-content: flex-start;
        transition: all 0.3s ease;
    }
    
    .auth-buttons-mobile .login-link:hover,
    .auth-buttons-mobile .area-restrita-link:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    }
    
    .auth-buttons-mobile i {
        width: 24px;
        text-align: center;
        margin-right: 10px;
        font-size: 1rem;
        transition: all 0.3s ease;
    }
    
    .auth-buttons-mobile .login-link:hover i,
    .auth-buttons-mobile .area-restrita-link:hover i {
        transform: scale(1.1);
    }
    
    /* Oculta os itens originais no mobile quando usamos o container específico */
    .offcanvas-body .nav-item.auth-item {
        display: none;
    }
}

/* Atualizações para o menu secundário */
.secondary-navbar .login-link, 
.secondary-navbar .area-restrita-link {
    font-size: 0.85rem;
    padding: 6px 12px;
}

/* Estiliza os botões de autenticação no menu secundário */
.secondary-navbar .auth-buttons {
    margin-left: 30px !important;
}

/*--------------------------------------------------------------
# Barra navegação 
--------------------------------------------------------------*/

        /* Principal Navbar */
        .main-navbar {
            background: linear-gradient(90deg, var(--dark-green), var(--medium-green), var(--light-green));
            padding: 15px 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: transform 0.4s ease-in-out;
        }
        
        .navbar-hidden {
            transform: translateY(-100%);
        }
        
        .navbar-brand img {
            height: 50px;
            transition: all 0.3s ease;
        }
        
        .navbar-brand:hover img {
            transform: scale(1.05);
        }
        
        .nav-link {
            color: white !important;
            font-weight: 600;
            text-transform: uppercase;
            margin: 0 10px;
            position: relative;
            transition: all 0.3s ease;
            font-size: 0.9rem;
            letter-spacing: 1px;
        }
        
        .nav-link:before {
            content: "";
            position: absolute;
            width: 0;
            height: 3px;
            bottom: -5px;
            left: 0;
            background-color: white;
            visibility: hidden;
            transition: all 0.3s ease;
        }
        
        .nav-link:hover:before {
            visibility: visible;
            width: 100%;
        }
        
        .dropdown-menu {
            background: linear-gradient(135deg, var(--transparent-dark), var(--transparent-medium));
            border: none;
            border-radius: 15px;
            overflow: hidden;
            padding: 15px 0;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            animation: fadeIn 0.5s;
        }
        
        .dropdown-item {
            color: white;
            font-weight: 500;
            padding: 10px 25px;
            position: relative;
            transition: all 0.3s ease;
            transform: translateX(0);
        }
        
        .dropdown-item:hover {
            background: rgba(255, 255, 255, 0.1);
            color: white;
            transform: translateX(5px);
        }
        
        .dropdown-item i {
            margin-right: 10px;
            opacity: 0;
            transition: all 0.3s ease;
        }
        
        .dropdown-item:hover i {
            opacity: 1;
        }
        
        /* Secondary Navbar (transparent) */
        .secondary-navbar {
            background: rgba(10, 92, 54, 0.8);
            backdrop-filter: blur(10px);
            padding: 10px 0;
            position: fixed;
            width: 100%;
            top: -100px;
            z-index: 999;
            transition: top 0.4s ease-in-out;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        }
        
        .secondary-navbar.visible {
            top: 0;
        }
        
        .secondary-navbar .navbar-brand img {
            height: 40px;
        }
        
        .secondary-navbar .nav-link {
            font-size: 0.85rem;
        }
        
        /* Hamburger Menu for Mobile */
        .navbar-toggler {
            border: none;
            background: transparent;
            padding: 0;
        }
        
        .hamburger {
            width: 30px;
            height: 20px;
            position: relative;
            margin: 0;
            transform: rotate(0deg);
            transition: .5s ease-in-out;
            cursor: pointer;
        }
        
        .hamburger span {
            display: block;
            position: absolute;
            height: 3px;
            width: 100%;
            background: white;
            border-radius: 9px;
            opacity: 1;
            left: 0;
            transform: rotate(0deg);
            transition: .25s ease-in-out;
        }
        
        .hamburger span:nth-child(1) {
            top: 0px;
        }
        
        .hamburger span:nth-child(2), .hamburger span:nth-child(3) {
            top: 10px;
        }
        
        .hamburger span:nth-child(4) {
            top: 20px;
        }
        
        .navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(1) {
            top: 10px;
            width: 0%;
            left: 50%;
        }
        
        .navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(2) {
            transform: rotate(45deg);
        }
        
        .navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(3) {
            transform: rotate(-45deg);
        }
        
        .navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(4) {
            top: 10px;
            width: 0%;
            left: 50%;
        }
        
        /* Mobile Side Menu */
        @media (max-width: 991px) {
            .offcanvas {
                background: linear-gradient(135deg, var(--dark-green), var(--medium-green));
                max-width: 300px;
            }
            
            .offcanvas-header {
                background: rgba(255, 255, 255, 0.1);
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
                padding: 20px;
            }
            
            .offcanvas-title {
                color: white;
                font-weight: 700;
                text-transform: uppercase;
                letter-spacing: 1px;
            }
            
            .offcanvas-body {
                padding: 20px;
            }
            
            .offcanvas .nav-link {
                padding: 15px 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }
            
            .offcanvas .dropdown-menu {
                background: transparent;
                box-shadow: none;
                padding: 10px 20px;
                border-radius: 0;
            }
            
            .offcanvas .dropdown-item {
                padding: 10px 15px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            }
            
            .offcanvas .dropdown-item:last-child {
                border-bottom: none;
            }
            
            .btn-close-white {
                filter: brightness(0) invert(1);
            }
        }



/*--------------------------------------------------------------
# Carousel 
--------------------------------------------------------------*/

        /* Hero Carousel */
        .hero-carousel {
            margin-top: 83px; /* Height of navbar */
            position: relative;
            height: calc(100vh - 83px);
            overflow: hidden;
        }
        
        .carousel-item {
            height: 100%;
        }
        
        .carousel-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--dark-green), var(--medium-green));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-align: center;
        }
        
        .carousel-content {
            max-width: 800px;
            padding: 0 20px;
            z-index: 2;
        }
        
        .carousel-title {
    opacity: 0;
    animation: fadeInUp 1s forwards;
    animation-delay: 0.3s;
}

        
        .carousel-description {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0;
            animation: fadeInUp 1s forwards;
            animation-delay: 0.6s;
        }
        
        .carousel-button {
            padding: 12px 30px;
            border-radius: 50px;
            background: white;
            color: var(--dark-green);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            border: 2px solid white;
            opacity: 0;
            animation: fadeInUp 1s forwards;
            animation-delay: 0.9s;
            display: inline-block;
            text-decoration: none;
        }
        
        .carousel-button:hover {
            background: transparent;
            color: white;
        }
        
        /* Decorative Elements */
        .background-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: radial-gradient(circle, rgba(255,255,255,0.1) 2px, transparent 2px);
            background-size: 30px 30px;
            opacity: 0.5;
        }
        
        .circle-decoration {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            opacity: 0.7;
        }
        
        .circle-1 {
            width: 300px;
            height: 300px;
            top: -100px;
            right: -100px;
        }
        
        .circle-2 {
            width: 200px;
            height: 200px;
            bottom: 50px;
            left: -50px;
        }
        
        .circle-3 {
            width: 150px;
            height: 150px;
            top: 30%;
            left: 10%;
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .animate-icon {
            display: inline-block;
            margin-right: 5px;
            animation: bounce 2s infinite;
        }
        
        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateY(0);
            }
            40% {
                transform: translateY(-10px);
            }
            60% {
                transform: translateY(-5px);
            }
        }
        
        /* Responsive Adjustments */
        @media (max-width: 768px) {
            .carousel-title {
                font-size: 2.5rem;
            }
            
            .carousel-description {
                font-size: 1rem;
            }
            
            .hero-carousel {
                margin-top: 76px; /* Adjusted for smaller navbar */
                height: calc(100vh - 76px);
            }
            
            .circle-decoration {
                opacity: 0.4;
            }
        }
        
        @media (max-width: 576px) {
            .carousel-title {
                font-size: 2rem;
            }
            
            .navbar-brand img {
                height: 40px;
            }
            
            .main-navbar {
                padding: 10px 0;
            }
            
            .hero-carousel {
                margin-top: 66px; /* Adjusted for smaller navbar */
                height: calc(100vh - 66px);
            }
        }
 
        .carousel-background {
    background-size: cover;
    background-position: center;
    height: 100vh;
    position: relative;
    z-index: 1;
}

.carousel-background::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.5); /* escurece a imagem para destacar o texto */
    z-index: 2;
}

.carousel-content {
    position: relative;
    z-index: 3;
    color: #fff;
    text-align: center;
    padding: 60px 20px;
}




.carousel-background {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 500px;
    overflow: hidden;
}

.video-background {
    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: rgba(0, 0, 0, 0.5); /* Ajuste a opacidade conforme necessário */
    z-index: 2;
}

.carousel-content {
    position: relative;
    z-index: 3;
    color: white;
    text-align: center;
    padding: 0 50px;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

/*--------------------------------------------------------------
# Botao Next 
--------------------------------------------------------------*/

/* Estilo para o botão de próximo slide */
.next-slide-btn {
  position: absolute;
  bottom: 30px;
  right: 30px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  padding: 15px 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.next-slide-btn:hover {
  background-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.next-text {
  color: white;
  font-weight: 600;
  font-size: 15px;
  margin-right: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.arrow-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
}

.arrow-line {
  width: 20px;
  height: 2px;
  background-color: white;
  position: relative;
  transition: all 0.3s ease;
}

.arrow-line::after {
  content: '';
  position: absolute;
  top: -4px;
  right: -1px;
  width: 10px;
  height: 2px;
  background-color: white;
  transform: rotate(45deg);
  transform-origin: right;
  transition: all 0.3s ease;
}

.arrow-line::before {
  content: '';
  position: absolute;
  bottom: -4px;
  right: -1px;
  width: 10px;
  height: 2px;
  background-color: white;
  transform: rotate(-45deg);
  transform-origin: right;
  transition: all 0.3s ease;
}

.next-slide-btn:hover .arrow-line {
  width: 24px;
}

.next-slide-btn:hover .arrow-line::after,
.next-slide-btn:hover .arrow-line::before {
  width: 12px;
}

/* Animação de pulso para o botão */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.next-slide-btn.pulse {
  animation: pulse 1.5s infinite;
}

/* Barra de progresso personalizada */
.carousel-progress-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  z-index: 5;
  background-color: rgba(255, 255, 255, 0.2);
}

.carousel-progress-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #3498db, #9b59b6);
  transition: width 0.1s linear;
}

/* Esconder os controles padrão do Bootstrap */
.carousel-control-prev, 
.carousel-control-next {
  display: none;
}

/* Otimizar para dispositivos móveis */
@media (max-width: 768px) {
  .next-slide-btn {
    padding: 12px 15px;
    bottom: 20px;
    right: 20px;
  }
}















/* Estilos adicionais para melhorar o carrossel */

/* Estilo para o contador de slides */
.slide-counter {
  position: absolute;
  bottom: 30px;
  left: 30px;
  z-index: 10;
  color: white;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 15px;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 30px;
  backdrop-filter: blur(5px);
}

/* Melhorando os indicadores do carousel */
.carousel-indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.carousel-indicators button {
  width: 10px !important;
  height: 10px !important;
  border-radius: 50% !important;
  background-color: rgba(255, 255, 255, 0.5) !important;
  border: none !important;
  margin: 0 !important;
  transition: all 0.3s ease;
  opacity: 0.6;
}

.carousel-indicators button.active {
  width: 12px !important;
  height: 12px !important;
  background-color: white !important;
  opacity: 1;
}

/* Melhorar animações de transição entre slides */
.carousel-item {
  transition: transform 0.8s ease-in-out !important;
}

/* Efeito fade para imagens e vídeos */
.carousel-item img,
.carousel-item video {
  transition: opacity 0.3s ease-in-out;
}

/* Efeito ao clicar no botão */
.next-slide-btn.clicked .arrow-line {
  transform: translateX(4px);
}

/* Melhorando a visibilidade do conteúdo */
.carousel-caption {
  background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
  border-radius: 8px;
  padding: 20px;
  max-width: 800px;
  margin: 0 auto;
  bottom: 80px;
}

@media (max-width: 768px) {
  .carousel-caption {
    padding: 15px;
    bottom: 60px;
  }
  
  .slide-counter {
    bottom: 20px;
    left: 20px;
    font-size: 12px;
    padding: 6px 12px;
  }
  
  .carousel-indicators button {
    width: 8px !important;
    height: 8px !important;
  }
  
  .carousel-indicators button.active {
    width: 10px !important;
    height: 10px !important;
  }
}

/* Otimizar carregamento de vídeo */
video {
  transition: opacity 0.5s ease;
  opacity: 0;
}

video.loaded {
  opacity: 1;
}

/* Tooltip para indicadores (opcional) */
.carousel-indicators button::before {
  content: attr(aria-label);
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.carousel-indicators button:hover::before {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(-5px);
}



/*--------------------------------------------------------------
# Card 
--------------------------------------------------------------*/

.rating-card-container {
    position: fixed;
    bottom: 30px;
    right: -350px; /* Começa fora da tela */
    width: 300px;
    z-index: 9999;
    transition: right 0.8s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  }
  
  .rating-card {
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    background: linear-gradient(135deg, #43a047, #1de9b6);
    position: relative;
    transform-style: preserve-3d;
    transform: perspective(1000px);
    transition: transform 0.4s ease;
  }
  
  .rating-card:hover {
    transform: perspective(1000px) rotateY(5deg) rotateX(5deg);
  }
  
  .card-inner {
    padding: 25px 20px;
    color: white;
    position: relative;
    z-index: 2;
  }
  
  /* Decorações da carta */
  .card-decoration {
    position: absolute;
    z-index: 1;
  }
  
  .card-decoration-1 {
    top: -20px;
    left: -20px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
  }
  
  .card-decoration-2 {
    bottom: -30px;
    right: -10px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
  }
  
  .card-decoration-3 {
    top: 40%;
    left: 10%;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    animation: float 4s ease-in-out infinite;
  }
  
  .card-decoration-4 {
    top: 20%;
    right: 15%;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    animation: float 3s ease-in-out infinite;
  }
  
  /* Padrão de folhas no fundo */
  .card-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 80 80' width='80' height='80'%3E%3Cpath fill='%23ffffff' d='M20 20 L40 20 L40 40 Z M60 40 L60 60 L40 60 Z'%3E%3C/path%3E%3C/svg%3E");
  }
  
  /* Elementos de design da carta */
  .card-title {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 15px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    position: relative;
  }
  
  .card-title::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 3px;
  }
  
  .card-message {
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.5;
  }
  
  .rating-btn {
    display: inline-block;
    padding: 10px 20px;
    background: white;
    color: #2e7d32;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 14px;
    text-align: center;
  }
  
  .rating-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  }
  
  .close-card {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s ease;
    z-index: 3;
  }
  
  .close-card:hover {
    background: rgba(255, 255, 255, 0.5);
  }
  
  /* Animações */
  @keyframes float {
    0% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-10px);
    }
    100% {
      transform: translateY(0px);
    }
  }
  
  @keyframes pulse {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.05);
    }
    100% {
      transform: scale(1);
    }
  }
  
  /* Estrelas decorativas */
  .star-decoration {
    position: absolute;
    color: rgba(255, 255, 255, 0.3);
    font-size: 16px;
  }
  
  .star-1 {
    top: 15px;
    right: 40px;
    animation: float 3s ease-in-out infinite;
  }
  
  .star-2 {
    bottom: 20px;
    left: 30px;
    animation: float 4s ease-in-out infinite;
    animation-delay: 1s;
  }
  
  /* Envelope decoração */
  .envelope-flap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
  }



/*--------------------------------------------------------------
# Clube + 
--------------------------------------------------------------*/

  /* Estilos gerais e reset */
  * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  /* Container principal da oferta */
  .clube-plus-container {
  position: fixed;
  top: 400px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 480px;
  z-index: 10000;
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.15));
}

  
  .clube-plus-container.show {
  transform: translate(-50%, -50%);
}

  
  /* Cartão principal */
  .clube-plus-card {
    background: linear-gradient(135deg, #0d47a1, #1976d2);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
  }
  
  /* Cabeçalho da oferta */
  .clube-header {
    padding: 22px 25px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .clube-header:hover {
    background: rgba(255, 255, 255, 0.1);
  }
  
  /* Título da oferta */
  .clube-title {
    color: white;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
  }
  
  .clube-title span {
    background: linear-gradient(45deg, #ffeb3b, #ffc107);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-left: 5px;
    position: relative;
    padding-right: 8px;
  }
  
  .clube-title span::after {
    content: "";
    position: absolute;
    top: -8px;
    right: -8px;
    width: 20px;
    height: 20px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffc107'%3E%3Cpath d='M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z'/%3E%3C/svg%3E") no-repeat;
    background-size: contain;
    animation: sparkle 2s infinite;
  }
  
  /* Subtítulo da oferta */
  .clube-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 500;
  }
  
  /* Seta de indicação */
  .toggle-arrow {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }
  
  .toggle-arrow::before {
    content: "";
    width: 10px;
    height: 10px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg) translateY(-2px);
    transition: transform 0.3s ease;
  }
  
  .club-expanded .toggle-arrow::before {
    transform: rotate(-135deg) translateY(2px);
  }
  
  /* Conteúdo da oferta (expandido) */
  .clube-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
    background: white;
    position: relative;
  }
  
  .club-expanded .clube-content {
    max-height: 1000px;
    transition: max-height 1s ease-in-out;
  }
  
  /* Conteúdo interno */
  .clube-content-inner {
    padding: 20px 25px;
    position: relative;
    overflow: hidden;
  }
  
  /* Preço da oferta */
  .clube-price {
    margin: 5px 0 20px;
    text-align: center;
    position: relative;
  }
  
  .clube-price-tag {
    font-size: 42px;
    font-weight: 800;
    color: #0d47a1;
    display: inline-block;
    position: relative;
  }
  
  .clube-price-tag::before {
    content: "R$";
    font-size: 20px;
    position: absolute;
    top: 5px;
    left: -18px;
    color: #555;
  }
  
  .clube-price-period {
    font-size: 14px;
    color: #666;
    margin-left: 5px;
  }
  
  .clube-price-original {
    display: inline-block;
    margin-left: 15px;
    color: #999;
    font-size: 18px;
    text-decoration: line-through;
    position: relative;
  }
  
  .discount-badge {
    position: absolute;
    top: -15px;
    right: -35px;
    background: #ff5722;
    color: white;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: bold;
    animation: pulse 2s infinite;
  }
  
  /* Lista de benefícios */
  .benefits-list {
    list-style-type: none;
    margin: 20px 0;
  }
  
  .benefits-list li {
    padding: 10px 0;
    margin-bottom: 8px;
    padding-left: 35px;
    position: relative;
    font-size: 14px;
    color: #333;
    border-radius: 8px;
    transition: all 0.3s ease;
  }
  
  .benefits-list li:hover {
    background: rgba(25, 118, 210, 0.05);
    padding-left: 40px;
  }
  
  .benefits-list li::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 12px;
    width: 18px;
    height: 18px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231976d2'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") no-repeat;
    background-size: contain;
    opacity: 0.8;
  }
  
  /* Botão de WhatsApp */
  .whatsapp-btn {
    display: block;
    width: 100%;
    padding: 14px 0;
    background: linear-gradient(45deg, #25d366, #128c7e);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    margin-top: 20px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  
  .whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 7px 14px rgba(18, 140, 126, 0.2);
  }
  
  .whatsapp-btn::before {
    content: "";
    position: absolute;
    width: 24px;
    height: 24px;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M17.498 14.382c-.301-.15-1.767-.867-2.04-.966-.273-.101-.473-.15-.673.15-.197.295-.771.964-.944 1.162-.175.195-.349.21-.646.075-.3-.15-1.263-.465-2.403-1.485-.888-.795-1.484-1.77-1.66-2.07-.174-.3-.019-.465.13-.615.136-.135.301-.345.451-.523.146-.181.194-.301.297-.496.1-.21.049-.375-.025-.524-.075-.15-.672-1.62-.922-2.206-.24-.584-.487-.51-.672-.51-.172-.015-.371-.015-.571-.015-.2 0-.523.074-.798.359-.273.3-1.045 1.02-1.045 2.475s1.07 2.865 1.219 3.075c.149.195 2.105 3.195 5.1 4.485.714.3 1.27.48 1.704.629.714.227 1.365.195 1.88.121.574-.091 1.767-.721 2.016-1.426.255-.705.255-1.29.18-1.425-.074-.135-.27-.21-.57-.345m-5.446 7.443h-.016c-1.77 0-3.524-.48-5.055-1.38l-.36-.214-3.75.975 1.005-3.645-.239-.375c-.99-1.576-1.516-3.391-1.516-5.26 0-5.445 4.455-9.885 9.942-9.885 2.654 0 5.145 1.035 7.021 2.91 1.875 1.859 2.909 4.35 2.909 6.99-.004 5.444-4.46 9.885-9.935 9.885M20.52 3.449C18.24 1.245 15.24 0 12.045 0 5.463 0 .104 5.334.101 11.893c0 2.096.549 4.14 1.595 5.945L0 24l6.335-1.652c1.746.943 3.71 1.444 5.71 1.447h.006c6.585 0 11.946-5.336 11.949-11.896 0-3.176-1.24-6.165-3.495-8.411'/%3E%3C/svg%3E") no-repeat;
    background-size: contain;
  }
  
  .whatsapp-btn span {
    position: relative;
    padding-left: 30px;
  }
  
  /* Animação de brilho após o botão */
  .whatsapp-btn::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 70%);
    opacity: 0;
    transition: all 0.3s ease;
  }
  
  .whatsapp-btn:active::after {
    opacity: 1;
    transform: scale(0);
    transition: 0s;
  }
  
  /* Elementos decorativos */
  .decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    z-index: 0;
  }
  
  .deco-1 {
    width: 100px;
    height: 100px;
    top: -30px;
    right: -30px;
  }
  
  .deco-2 {
    width: 70px;
    height: 70px;
    bottom: 20px;
    left: -20px;
  }
  
  /* Botão de fechar */
  .close-clube-offer {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
  }
  
  .close-clube-offer:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: rotate(90deg);
  }
  
  .close-clube-offer::before,
  .close-clube-offer::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 2px;
    background: white;
    border-radius: 1px;
  }
  
  .close-clube-offer::before {
    transform: rotate(45deg);
  }
  
  .close-clube-offer::after {
    transform: rotate(-45deg);
  }
  
  /* Selo de limite */
  .limited-offer {
    position: absolute;
    top: 0;
    left: 25px;
    background: #ff9800;
    color: white;
    font-size: 11px;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    z-index: 2;
  }
  
  /* Contador regressivo */
  .offer-timer {
    display: flex;
    justify-content: center;
    margin: 10px 0 15px;
    text-align: center;
  }
  
  .timer-unit {
    margin: 0 5px;
    background: #f5f5f5;
    border-radius: 5px;
    padding: 6px 10px;
    min-width: 45px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .timer-number {
    font-size: 18px;
    font-weight: bold;
    color: #0d47a1;
    display: block;
  }
  
  .timer-label {
    font-size: 10px;
    color: #666;
    text-transform: uppercase;
  }
  
  /* Animações */
  @keyframes sparkle {
    0% { transform: scale(1) rotate(0deg); opacity: 1; }
    20% { transform: scale(1.1) rotate(20deg); opacity: 0.8; }
    40% { transform: scale(1) rotate(0deg); opacity: 1; }
    100% { transform: scale(1) rotate(0deg); opacity: 1; }
  }
  
  @keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
  }
  
  @keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
  }
  
  /* Confetti para quando expandir */
  .confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    opacity: 0;
    z-index: 10;
  }
  
  .confetti-animation {
    animation: confetti-drop 3s ease-out forwards;
  }
  
  @keyframes confetti-drop {
    0% { transform: translateY(-100px) rotate(0deg); opacity: 1; }
    70% { opacity: 1; }
    100% { transform: translateY(200px) rotate(360deg); opacity: 0; }
  }

/*--------------------------------------------------------------
# Equipamentos - Versão otimizada
--------------------------------------------------------------*/        
    
.equipamentos-section {
    background: linear-gradient(135deg, #083c15, #1a8d44, #35a85e);
    padding: 80px 0;
    color: #fff;
    position: relative;
    overflow: hidden;
    contain: content; /* Melhora performance de renderização */
}

.equipamentos-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    z-index: 0;
    will-change: transform; /* Otimiza animações */
    pointer-events: none; /* Evita processamento desnecessário */
}

.section-title {
    font-size: clamp(1.8rem, 5vw, 3.5rem); /* Responsivo usando clamp */
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
}

.section-subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem); /* Responsivo usando clamp */
    margin-bottom: 2rem;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.equipamento-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
    height: 100%;
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
    /* Aceleração por hardware para animações suaves */
    transform: translateZ(0);
    will-change: transform;
}

.equipamento-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.equipamento-img-container {
    height: 250px;
    overflow: hidden;
    position: relative;
    contain: strict; /* Isolamento para melhorar performance */
}

.equipamento-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    /* Rasterização para melhor performance */
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.equipamento-card:hover .equipamento-img {
    transform: scale(1.05); /* Reduzindo para melhorar performance */
}

.equipamento-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 0;
    opacity: 0;
    background: linear-gradient(to top, rgba(26, 141, 68, 0.8) 0%, rgba(26, 141, 68, 0) 100%);
    transition: opacity 0.3s ease, height 0.3s ease;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    /* Aceleração por hardware */
    transform: translateZ(0);
    will-change: opacity, height;
}

.equipamento-card:hover .equipamento-overlay {
    height: 100%;
    opacity: 1;
}

.equipamento-details {
    padding: 1.5rem;
    color: #333;
}

.equipamento-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: #1a8d44;
}

.equipamento-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1rem;
}

.equipamento-features {
    display: flex;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.equipamento-feature {
    background: rgba(26, 141, 68, 0.1);
    color: #1a8d44;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    display: inline-flex;
    align-items: center;
}

.equipamento-feature i {
    margin-right: 0.3rem;
}

.btn-saiba-mais {
    background: linear-gradient(135deg, #1a8d44, #35a85e);
    border: none;
    color: white;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(26, 141, 68, 0.2);
    display: inline-flex;
    align-items: center;
}

.btn-saiba-mais:hover {
    background: linear-gradient(135deg, #167238, #2a8a4e);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(26, 141, 68, 0.3);
    color: white;
}

.btn-saiba-mais i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.btn-saiba-mais:hover i {
    transform: translateX(3px);
}

.equipamento-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #1a8d44;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.section-decoration {
    position: absolute;
    z-index: 0;
    opacity: 0.1;
    /* Redução do custo de renderização */
    pointer-events: none;
    will-change: transform;
    contain: strict;
}

/* Animações simplificadas para melhor performance */
.decoration-1 {
    top: 10%;
    left: 5%;
    width: 150px;
    height: 150px;
    border: 10px solid white;
    border-radius: 50%;
    animation: float 10s ease-in-out infinite;
}

.decoration-2 {
    bottom: 15%;
    right: 10%;
    width: 100px;
    height: 100px;
    border: 8px solid white;
    transform: rotate(45deg);
    animation: rotate 15s linear infinite;
}

.decoration-3 {
    top: 60%;
    left: 15%;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: morph 20s ease-in-out infinite;
}

/* Animações otimizadas com aceleração por hardware */
@keyframes float {
    0%, 100% { transform: translateY(0) translateZ(0); }
    50% { transform: translateY(-15px) translateZ(0); }
}

@keyframes rotate {
    0% { transform: rotate(0deg) translateZ(0); }
    100% { transform: rotate(360deg) translateZ(0); }
}

@keyframes morph {
    0%, 100% { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; transform: translateZ(0); }
    33% { border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%; transform: translateZ(0); }
    66% { border-radius: 30% 70% 70% 30% / 70% 30% 30% 70%; transform: translateZ(0); }
}

/* Media queries simplificadas com menos estilos redundantes */
@media (max-width: 768px) {
    .equipamentos-section {
        padding: 60px 0;
    }
    .equipamento-img-container {
        height: 200px;
    }
    /* Desabilitar algumas animações em dispositivos menores */
    .decoration-1, .decoration-2, .decoration-3 {
        animation: none;
    }
}

/* Classes de animação simplificadas */
[data-aos] {
    will-change: transform, opacity;
    backface-visibility: hidden;
}
.carousel-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 10;
  padding-left: 10%;
}

.content-wrapper {
  max-width: 600px;
  opacity: 0;
  transform: translateY(30px);
  animation: fade-up 1s forwards;
}

@keyframes fade-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  position: relative;
  line-height: 1.1;
}

.slide-title::after {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  background: linear-gradient(to right, #ff4d4d, #ff9966);
  margin-top: 10px;
  transform: scaleX(0);
  transform-origin: left;
  animation: expand 1.2s forwards 0.5s ease;
}

@keyframes expand {
  to {
    transform: scaleX(1);
  }
}

.slide-subtitle {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  font-weight: 300;
  max-width: 90%;
  transform: translateX(-20px);
  opacity: 0;
  animation: slide-in 0.8s forwards 0.8s;
}

@keyframes slide-in {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.discover-btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 500;
  transform: translateY(20px);
  opacity: 0;
  animation: btn-appear 1s forwards 1s;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

@keyframes btn-appear {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.discover-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.discover-btn i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.discover-btn:hover i {
  transform: translateX(5px);
}

/* Customizações para cada slide */
.carousel-item:nth-child(1) .slide-title::after {
  background: linear-gradient(to right, #ff4d4d, #ff9966); /* Funcional */
}

.carousel-item:nth-child(2) .slide-title::after {
  background: linear-gradient(to right, #4facfe, #00f2fe); /* Calistenia */
}

.carousel-item:nth-child(3) .slide-title::after {
  background: linear-gradient(to right, #0ba360, #3cba92); /* Cross Training */
}

.carousel-item:nth-child(4) .slide-title::after {
  background: linear-gradient(to right, #f857a6, #ff5858); /* Crossfit */
}

.carousel-item:nth-child(5) .slide-title::after {
  background: linear-gradient(to right, #a18cd1, #fbc2eb); /* DanceMix */
}

.carousel-item:nth-child(6) .slide-title::after {
  background: linear-gradient(to right, #84fab0, #8fd3f4); /* JumpMix */
}

.carousel-item:nth-child(7) .slide-title::after {
  background: linear-gradient(to right, #2193b0, #6dd5ed); /* Natação */
}

/* Responsividade */
@media (max-width: 992px) {
  .carousel-content {
    padding-left: 8%;
  }
  
  .slide-title {
    font-size: 3rem;
  }
  
  .slide-subtitle {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .carousel-content {
    padding-left: 6%;
    align-items: center;
  }
  
  .content-wrapper {
    max-width: 90%;
  }
  
  .slide-title {
    font-size: 2.5rem;
  }
  
  .slide-subtitle {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }
  
  .discover-btn {
    padding: 10px 22px;
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .carousel-content {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .slide-title {
    font-size: 2rem;
  }
  
  .slide-subtitle {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
  }
  
  .discover-btn {
    padding: 8px 18px;
    font-size: 0.95rem;
  }
}

/*--------------------------------------------------------------
# Estilos Globais e Utilidades
--------------------------------------------------------------*/
:root {
    --green-dark: #072c14;
    --green-medium: #0f5d2f;
    --green-light: #00ff88;
    --green-accent: #00cc66;
}

/*--------------------------------------------------------------
# Seção do Carrossel - Equipamentos
--------------------------------------------------------------*/
.carousel-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #0a2616 50%, #072c14 100%);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
    contain: content; /* Melhora performance de renderização */
}

.section-title {
    text-align: center;
    margin: 2rem 0;
}

.section-title h2 {
    font-size: clamp(1.8rem, 5vw, 2.5rem); /* Responsivo usando clamp */
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.section-title p {
    font-size: 1rem;
    color: #cccccc;
    max-width: 800px;
    margin: 0 auto;
}

/* Carrossel Infinito */
.infinite-carousel {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 2rem 0;
    will-change: transform; /* Otimiza animações */
}

.infinite-carousel-track {
    display: flex;
    animation: scroll 40s linear infinite;
    width: fit-content;
    will-change: transform; /* Otimiza animações */
}

@keyframes scroll {
    0% { transform: translateX(0) translateZ(0); }
    100% { transform: translateX(-50%) translateZ(0); }
}

.carousel-slide {
    flex: 0 0 320px;
    margin: 0 20px;
    contain: content; /* Melhora performance */
}

.equipamento-card {
    background: rgba(25, 25, 25, 0.8);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    overflow: hidden;
    height: 320px;
    position: relative;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), 
                box-shadow 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #2a4731;
    background-clip: padding-box;
    will-change: transform, box-shadow; /* Otimiza animações */
    transform: translateZ(0); /* Força aceleração de hardware */
    backface-visibility: hidden; /* Melhora performance em dispositivos móveis */
}

/* Efeito de borda brilhante animada - otimizado */
.equipamento-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #00ff88, #00cc66, #004d1a, #00ff88);
    z-index: -1;
    border-radius: 14px;
    background-size: 400% 400%;
    animation: glowingBorder 10s ease infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
    will-change: opacity, background-position; /* Otimiza animações */
    pointer-events: none; /* Evita processamento de eventos desnecessário */
}

@keyframes glowingBorder {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.equipamento-card:hover {
    transform: translateY(-10px) scale(1.02) translateZ(0);
    box-shadow: 0 12px 30px rgba(0, 255, 128, 0.3);
}

.equipamento-card:hover::before {
    opacity: 1;
}

/* Efeito de brilho ao passar o mouse - otimizado */
.equipamento-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    pointer-events: none; /* Evita processamento de eventos desnecessário */
}

.equipamento-card:hover::after {
    animation: shine 1.5s;
    will-change: left; /* Otimiza animações */
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 100%; }
}

.equipamento-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, #00aa55, #00ff88);
    color: #000;
    padding: 8px 15px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 8px;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    animation: pulse 2s infinite;
    will-change: transform; /* Otimiza animações */
}

@keyframes pulse {
    0% { transform: scale(1) translateZ(0); }
    50% { transform: scale(1.05) translateZ(0); }
    100% { transform: scale(1) translateZ(0); }
}

.equipamento-img-container {
    height: 100%;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1c1c1c;
    position: relative;
    contain: strict; /* Isolamento para melhorar performance */
}

.equipamento-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.6s ease;
    will-change: transform, filter; /* Otimiza animações */
    transform: translateZ(0); /* Força aceleração de hardware */
    backface-visibility: hidden; /* Melhora performance em dispositivos móveis */
}

.equipamento-card:hover .equipamento-img {
    transform: scale(1.05) translateZ(0);
    filter: brightness(1.1) contrast(1.1);
}

/* Adicionar efeito de luz no canto - otimizado */
.corner-light {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(0, 255, 128, 0.3) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none; /* Evita processamento de eventos desnecessário */
}

.equipamento-card:hover .corner-light {
    opacity: 1;
}



/*--------------------------------------------------------------
# Slide do Carrossel - Separado como solicitado
--------------------------------------------------------------*/
.carousel-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 10;
    padding-left: 10%;
    will-change: opacity, transform; /* Otimiza animações */
}

.content-wrapper {
    max-width: 600px;
    opacity: 0;
    transform: translateY(30px) translateZ(0);
    animation: fade-up 1s forwards;
    will-change: opacity, transform; /* Otimiza animações */
}

@keyframes fade-up {
    to {
        opacity: 1;
        transform: translateY(0) translateZ(0);
    }
}

.slide-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    position: relative;
    line-height: 1.1;
}

.slide-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, #ff4d4d, #ff9966);
    margin-top: 10px;
    transform: scaleX(0) translateZ(0);
    transform-origin: left;
    animation: expand 1.2s forwards 0.5s ease;
    will-change: transform; /* Otimiza animações */
}

@keyframes expand {
    to {
        transform: scaleX(1) translateZ(0);
    }
}

.slide-subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-weight: 300;
    max-width: 90%;
    transform: translateX(-20px) translateZ(0);
    opacity: 0;
    animation: slide-in 0.8s forwards 0.8s;
    will-change: opacity, transform; /* Otimiza animações */
}

@keyframes slide-in {
    to {
        transform: translateX(0) translateZ(0);
        opacity: 1;
    }
}

.discover-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    transform: translateY(20px) translateZ(0);
    opacity: 0;
    animation: btn-appear 1s forwards 1s;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    will-change: opacity, transform, box-shadow; /* Otimiza animações */
}

@keyframes btn-appear {
    to {
        transform: translateY(0) translateZ(0);
        opacity: 1;
    }
}

.discover-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px) translateZ(0);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.discover-btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
    will-change: transform; /* Otimiza animações */
}

.discover-btn:hover i {
    transform: translateX(5px) translateZ(0);
}

/* Customizações para cada slide */
.carousel-item:nth-child(1) .slide-title::after {
    background: linear-gradient(to right, #ff4d4d, #ff9966); /* Funcional */
}

.carousel-item:nth-child(2) .slide-title::after {
    background: linear-gradient(to right, #4facfe, #00f2fe); /* Calistenia */
}

.carousel-item:nth-child(3) .slide-title::after {
    background: linear-gradient(to right, #0ba360, #3cba92); /* Cross Training */
}

.carousel-item:nth-child(4) .slide-title::after {
    background: linear-gradient(to right, #f857a6, #ff5858); /* Crossfit */
}

.carousel-item:nth-child(5) .slide-title::after {
    background: linear-gradient(to right, #a18cd1, #fbc2eb); /* DanceMix */
}

.carousel-item:nth-child(6) .slide-title::after {
    background: linear-gradient(to right, #84fab0, #8fd3f4); /* JumpMix */
}

.carousel-item:nth-child(7) .slide-title::after {
    background: linear-gradient(to right, #2193b0, #6dd5ed); /* Natação */
}

/* Media queries para o slide do carrossel */
@media (max-width: 992px) {
    .carousel-content {
        padding-left: 8%;
    }
}

@media (max-width: 768px) {
    .carousel-content {
        padding-left: 6%;
        align-items: center;
    }
    
    .content-wrapper {
        max-width: 90%;
    }
    
    /* Diminuir duração das animações em dispositivos móveis */
    .content-wrapper,
    .slide-title::after,
    .slide-subtitle,
    .discover-btn {
        animation-duration: 0.7s;
    }
}

@media (max-width: 576px) {
    .carousel-content {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .discover-btn {
        padding: 8px 18px;
        font-size: 0.95rem;
    }
}


/*--------------------------------------------------------------
# Footer 
--------------------------------------------------------------*/            

:root {
    --primary-color: #1e5631; /* Verde escuro elegante */
    --secondary-color: #191919;
    --accent-color: #2a7a44; /* Variação mais clara de verde */
    --text-light: #f8f9fa;
    --text-dark: #212529;
    --footer-bg: #191919;
    --footer-bg-light: #252525;
}

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
}

/* Footer Styles */
.footer {
    background-color: var(--footer-bg);
    color: var(--text-light);
    padding: 4rem 0 2rem;
    position: relative;
}

.footer-top {
    position: relative;
    z-index: 2;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.footer-logo {
    max-width: 200px;
    margin-bottom: 20px;
}

.footer h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 12px;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-color);
}

.footer-contact-info li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
}

.footer-contact-info i {
    color: var(--primary-color);
    margin-right: 12px;
    font-size: 18px;
    width: 24px;
    text-align: center;
    margin-top: 3px;
}

.footer-links li {
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.footer-links li:hover {
    transform: translateX(5px);
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-links a::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 20px;
    line-height: 1;
    top: -2px;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--footer-bg-light);
    color: var(--text-light);
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-5px);
}

.footer-newsletter {
    margin-top: 20px;
}

.footer-newsletter p {
    margin-bottom: 15px;
}

.newsletter-form {
    position: relative;
}

.newsletter-form input {
    width: 100%;
    padding: 12px 60px 12px 15px;
    border: none;
    border-radius: 4px;
    background-color: var(--footer-bg-light);
    color: var(--text-light);
}

.newsletter-form input:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--primary-color);
}

.newsletter-form button {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 50px;
    background-color: var(--primary-color);
    border: none;
    border-radius: 0 4px 4px 0;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.newsletter-form button:hover {
    background-color: var(--accent-color);
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom a {
    color: var(--primary-color);
    text-decoration: none;
}

/* Decorative Elements */
.footer-decoration {
    position: absolute;
    opacity: 0.03;
    z-index: 1;
}

.footer-decoration-1 {
    top: 40px;
    left: 5%;
    font-size: 120px;
    font-family: 'Font Awesome 6 Free';
    content: '\f44b'; /* Dumbbell icon */
}

.footer-decoration-2 {
    bottom: 60px;
    right: 5%;
    font-size: 150px;
    font-family: 'Font Awesome 6 Free';
    content: '\f44b'; /* Dumbbell icon */
    transform: rotate(45deg);
}

/* Horário de Funcionamento */
.gym-hours {
    background-color: var(--footer-bg-light);
    border-radius: 8px;
    padding: 15px;
    margin-top: 20px;
}

.gym-hours .day-time {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.gym-hours .day-time:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* CTA Button */
.footer-cta {
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    display: inline-block;
    margin-top: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-cta:hover {
    background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(30, 86, 49, 0.3);
}

/* App Badges */
.app-badges {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.app-badge {
    background-color: var(--footer-bg-light);
    color: white;
    display: flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.app-badge:hover {
    background-color: var(--primary-color);
}

.app-badge i {
    font-size: 24px;
    margin-right: 8px;
}

.app-badge-text {
    display: flex;
    flex-direction: column;
}

.app-badge-text small {
    font-size: 10px;
    font-weight: 300;
}

.app-badge-text strong {
    font-size: 14px;
    font-weight: 600;
}

/* Responsive Tweaks - VERSÃO MELHORADA */
@media (max-width: 991px) {
    .footer-col {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    /* Mantendo tudo alinhado à esquerda em mobile */
    .footer-col {
        text-align: left !important; /* Força alinhamento à esquerda */
        padding-left: 15px; /* Espaçamento consistente */
        padding-right: 15px; 
    }
    
    /* Remover centralização para a seção "Sobre a Academia" */
    .footer-about {
        text-align: left;
    }
    
    /* Alinhar os ícones sociais à esquerda */
    .footer-about .social-icons {
        justify-content: flex-start;
    }
    
    /* Manter o traço abaixo do título alinhado à esquerda */
    .footer h5::after {
        left: 0;
        transform: none;
    }
    
    /* Alinhar títulos à esquerda */
    .footer h5 {
        text-align: left;
    }
    
    /* Manter as setas nos links */
    .footer-links a::before {
        display: block;
    }
    
    /* Alinhamento à esquerda para os links */
    .footer-links {
        text-align: left;
        padding-left: 0;
    }
    
    /* Ajustar espaçamento dos itens */
    .footer-links li {
        padding-left: 0;
    }
    
    /* Contatos alinhados à esquerda */
    .footer-contact-info {
        justify-content: flex-start;
        padding-left: 0;
    }
    
    /* Layout horizontal para cada item de contato */
    .footer-contact-info li {
        justify-content: flex-start;
        text-align: left;
        flex-direction: row;
        align-items: flex-start;
    }
    
    /* Manter o ícone à esquerda do texto */
    .footer-contact-info i {
        margin-right: 12px;
        margin-bottom: 0;
    }
    
    /* Badges de app alinhadas à esquerda */
    .app-badges {
        justify-content: flex-start;
    }
    
    /* Ajustes específicos para layout mobile mais agradável */
    .footer-newsletter {
        max-width: 100%;
    }
    
    /* Melhorar visualização dos horários em mobile */
    .gym-hours {
        width: 100%;
    }
    
    /* Garantir que o CTA fique bem visível */
    .footer-cta {
        display: inline-block;
        padding: 12px 30px;
        font-size: 16px;
    }
}

/* Dumbbell animation */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.dumbell-icon {
    display: inline-block;
    animation: spin 15s linear infinite;
}

/*--------------------------------------------------------------
# Seção de Planos com Design Arredondado
--------------------------------------------------------------*/
.planos-section {
    background: linear-gradient(135deg, #0a2616 0%, #051a0d 50%, #041209 100%);
    padding: 120px 0 100px;
    position: relative;
    color: #fff;
    overflow: hidden;
    contain: content;
}

/* Elementos decorativos curvos */
.curve-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background-color: #000;
    border-radius: 0 0 50% 50% / 0 0 100px 100px;
    transform: translateY(-50%);
    z-index: 1;
}

.curve-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background-color: #000;
    border-radius: 50% 50% 0 0 / 100px 100px 0 0;
    transform: translateY(50%);
    z-index: 1;
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.05) 0%, rgba(0, 204, 102, 0.02) 70%);
    opacity: 0.5;
    z-index: 0;
    animation: float 15s infinite ease-in-out;
}

.circle1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.circle2 {
    width: 300px;
    height: 300px;
    bottom: 50px;
    left: -50px;
    animation-delay: -5s;
}

.circle3 {
    width: 250px;
    height: 250px;
    top: 40%;
    right: 15%;
    animation-delay: -10s;
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(10px, -15px) rotate(5deg); }
    50% { transform: translate(0, 10px) rotate(0deg); }
    75% { transform: translate(-10px, -5px) rotate(-5deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

.section-badge {
    background: linear-gradient(45deg, #004d1a, #007729);
    color: #e0ffe0;
    font-weight: 800;
    font-size: 0.9rem;
    padding: 10px 25px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 20px;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 50, 20, 0.6);
    animation: subtle-pulse 4s ease-in-out infinite;
}

@keyframes subtle-pulse {
    0% { transform: translateY(0px); box-shadow: 0 5px 15px rgba(0, 50, 20, 0.6); }
    50% { transform: translateY(-5px); box-shadow: 0 8px 20px rgba(0, 70, 30, 0.8); }
    100% { transform: translateY(0px); box-shadow: 0 5px 15px rgba(0, 50, 20, 0.6); }
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.section-title h2 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
    font-weight: 700;
    position: relative;
    display: inline-block;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    width: 70%;
    height: 3px;
    background: linear-gradient(90deg, #00ff88, rgba(0, 77, 26, 0.5));
    bottom: -10px;
    left: 15%;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 255, 128, 0.3);
}

/* Cards dos planos */
.plan-card {
    background: #0c1712;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-bottom: 30px;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    transform: translateY(0);
    height: 100%;
    border: 1px solid rgba(0, 153, 51, 0.2);
    color: #e0e0e0;
    position: relative;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 180, 60, 0.25);
    border: 1px solid rgba(0, 153, 51, 0.5);
}

/* Headers dos planos */
.plan-header {
    padding: 40px 20px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-radius: 30px 30px 0 0;
}

.header-bubble {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.3) 0%, rgba(0, 204, 102, 0.1) 70%);
    opacity: 0.5;
    z-index: 0;
}

.premium-bubble {
    background: radial-gradient(circle, rgba(0, 255, 170, 0.4) 0%, rgba(0, 230, 120, 0.15) 70%);
    width: 220px;
    height: 220px;
}

.vip-bubble {
    background: radial-gradient(circle, rgba(0, 255, 200, 0.5) 0%, rgba(0, 240, 140, 0.2) 70%);
    width: 240px;
    height: 240px;
}

.plan-basic .plan-header {
    background: linear-gradient(135deg, #0a3d1d 0%, #062211 100%);
}

.plan-premium .plan-header {
    background: linear-gradient(135deg, #0d4b26 0%, #072d17 100%);
}

.plan-vip .plan-header {
    background: linear-gradient(135deg, #0f5d2f 0%, #093d1e 100%);
}

.plan-header h3 {
    color: white;
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.price {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #00ff88;
    margin: 15px 0;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
    position: relative;
    z-index: 1;
}

.price span {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.8;
    color: #e0e0e0;
}

/* Conteúdo dos planos */
.plan-features {
    padding: 30px;
    list-style: none;
    margin: 0;
}

.plan-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 153, 51, 0.15);
    display: flex;
    align-items: center;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features i {
    color: #00cc66;
    margin-right: 15px;
    font-size: 1.1rem;
    text-shadow: 0 0 5px rgba(0, 204, 102, 0.3);
    flex-shrink: 0;
}

.plan-features i.fa-times-circle {
    color: #666;
    text-shadow: none;
}

/* Footer dos planos */
.plan-footer {
    padding: 25px 30px 30px;
    text-align: center;
    background: rgba(0, 20, 10, 0.3);
    border-radius: 0 0 30px 30px;
}

.btn-plan {
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    border: none;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.btn-basic {
    background: linear-gradient(135deg, #0a3d1d 0%, #062211 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(10, 61, 29, 0.5);
}

.btn-premium {
    background: linear-gradient(135deg, #0d4b26 0%, #072d17 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(13, 75, 38, 0.5);
}

.btn-vip {
    background: linear-gradient(135deg, #0f5d2f 0%, #093d1e 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(15, 93, 47, 0.5);
}

.btn-plan:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 30, 10, 0.4);
}

.btn-plan::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
    transition: all 0.8s ease;
    pointer-events: none;
}

.btn-plan:hover::after {
    left: 100%;
}

/* Botão de contato */
.btn-contato {
    background: transparent;
    color: #00ff88;
    border: 2px solid #00cc66;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-contato:hover {
    background: rgba(0, 204, 102, 0.1);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
    color: #00ff88;
}

/* Ribbon Popular */
.ribbon {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
    overflow: hidden;
    width: 100px;
    height: 100px;
}

.ribbon span {
    position: absolute;
    display: block;
    width: 160px;
    padding: 10px 0;
    background-color: #004d1a;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    transform: rotate(45deg);
    top: 25px;
    right: -45px;
}

.badge-promocao {
    background: linear-gradient(135deg, #004d1a, #007729);
    color: white;
    font-size: 0.8rem;
    padding: 5px 15px;
    border-radius: 50px;
    margin-left: 10px;
    display: inline-block;
    position: relative;
    animation: glow 3s infinite;
}

@keyframes glow {
    0% { box-shadow: 0 0 5px rgba(0, 153, 51, 0.3); }
    50% { box-shadow: 0 0 15px rgba(0, 204, 102, 0.5); }
    100% { box-shadow: 0 0 5px rgba(0, 153, 51, 0.3); }
}

.beneficio-destaque {
    font-weight: 600;
    color: #00cc66;
}

/*--------------------------------------------------------------
# Media Queries
--------------------------------------------------------------*/
@media (max-width: 991px) {
    .planos-section {
        padding: 80px 0 60px;
    }
    
    .price {
        font-size: 2rem;
    }
    
    .curve-top, .curve-bottom {
        height: 80px;
    }
}

@media (max-width: 767px) {
    .plan-card {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .curve-top, .curve-bottom {
        height: 60px;
    }
    
    .floating-circle {
        opacity: 0.3;
    }
}

@media (max-width: 576px) {
    .plan-features {
        padding: 20px 15px;
    }
    
    .ribbon {
        width: 80px;
        height: 80px;
    }
    
    .ribbon span {
        width: 140px;
        font-size: 0.7rem;
        top: 20px;
        right: -40px;
    }
}

/*--------------------------------------------------------------
# Camisas
--------------------------------------------------------------*/
/* Estilos para o body com fundo em verde */
body {
  background: linear-gradient(135deg, #1a5d1a, #0d2e0d);
  background-attachment: fixed;
  color: #fff;
  font-family: 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  min-height: 100vh;
}

/* Estilos para o componente de loja */
.shop-promo-container {
  width: 100%;
  padding: 20px;
  margin: 40px 0;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.shop-promo-wrapper {
  background: linear-gradient(135deg, #0d3d0d, #20852c, #56c596);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
  max-width: 1200px;
  margin: 0 auto;
}

.shop-promo-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(13,61,13,0.9), rgba(32,133,44,0.8), rgba(86,197,150,0.7));
  z-index: -1;
  animation: gradientBG 15s ease infinite;
  background-size: 400% 400%;
}

@keyframes gradientBG {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.shop-promo-decorations {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.decoration-icon {
  position: absolute;
  color: rgba(255,255,255,0.15);
  font-size: 4rem;
  filter: drop-shadow(0 0 8px rgba(255,255,255,0.2));
}

.decoration-icon.icon-1 {
  top: 10%;
  left: 5%;
  transform: rotate(-15deg);
  animation: float 8s ease-in-out infinite;
}

.decoration-icon.icon-2 {
  bottom: 15%;
  left: 10%;
  transform: rotate(25deg);
  animation: float 7s ease-in-out infinite 1s;
}

.decoration-icon.icon-3 {
  top: 20%;
  right: 8%;
  transform: rotate(10deg);
  animation: float 9s ease-in-out infinite 0.5s;
}

@keyframes float {
  0% { transform: translateY(0) rotate(-15deg); }
  50% { transform: translateY(-20px) rotate(0deg); }
  100% { transform: translateY(0) rotate(-15deg); }
}

.shop-promo-content {
  display: flex;
  position: relative;
  z-index: 2;
  padding: 40px;
  color: white;
}

.shop-content-left {
  flex: 1;
  padding-right: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.shop-badge {
  background-color: rgba(255,255,255,0.2);
  color: white;
  padding: 5px 12px;
  border-radius: 50px;
  display: inline-block;
  font-weight: 600;
  font-size: 0.8rem;
  margin-bottom: 15px;
  backdrop-filter: blur(5px);
  letter-spacing: 1px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.shop-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 15px;
  letter-spacing: 1px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
  animation: slideInLeft 0.8s forwards;
  opacity: 0;
  transform: translateX(-20px);
  animation-delay: 0.3s;
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.shop-description {
  font-size: 1.1rem;
  margin-bottom: 20px;
  opacity: 0;
  max-width: 90%;
  line-height: 1.6;
  animation: fadeIn 0.8s forwards;
  animation-delay: 0.5s;
}

@keyframes fadeIn {
  to {
    opacity: 0.9;
  }
}

.shop-features {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 25px;
  gap: 15px;
}

.feature {
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  margin-right: 20px;
  opacity: 0;
  animation: fadeInUp 0.6s forwards;
}

.feature:nth-child(1) { animation-delay: 0.7s; }
.feature:nth-child(2) { animation-delay: 0.9s; }
.feature:nth-child(3) { animation-delay: 1.1s; }

.feature i {
  margin-right: 8px;
  color: #8eff8e;
  animation: scaleIn 0.4s ease-out;
}

@keyframes scaleIn {
  0% { transform: scale(0); }
  70% { transform: scale(1.2); }
  100% { transform: scale(1); }
}

.shop-button {
  background: white;
  color: #0d3d0d;
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
  width: fit-content;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  opacity: 0;
  animation: fadeInUp 0.8s forwards;
  animation-delay: 1.3s;
  position: relative;
  overflow: hidden;
}

.shop-button:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: all 0.6s;
}

.shop-button:hover:before {
  left: 100%;
}

.shop-button:hover {
  background: #8eff8e;
  color: #0d3d0d;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

.shop-button i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.shop-button:hover i {
  transform: translateX(5px);
}

.shop-content-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: fadeInRight 1s forwards;
  animation-delay: 0.5s;
}

@keyframes fadeInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.shirt-display {
  display: flex;
  position: relative;
  perspective: 1000px;
}

.shirt {
  transform-style: preserve-3d;
  margin: 0 -30px;
  transition: all 0.5s ease;
  position: relative;
}

.shirt:hover {
  transform: translateY(-15px);
  z-index: 10;
}

.shirt img {
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  transition: all 0.5s ease;
  border: 4px solid white;
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 0 10px rgba(142, 255, 142, 0.3));
}

.shirt:hover img {
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
  border-color: #8eff8e;
}

.shirt-1 {
  transform: rotate(-5deg) translateX(20px);
  z-index: 3;
  animation: floatShirt 8s ease-in-out infinite;
}

.shirt-2 {
  z-index: 2;
  animation: floatShirt 8s ease-in-out infinite 0.5s;
}

.shirt-3 {
  transform: rotate(5deg) translateX(-20px);
  z-index: 1;
  animation: floatShirt 8s ease-in-out infinite 1s;
}

@keyframes floatShirt {
  0% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-10px) rotate(-5deg); }
  100% { transform: translateY(0) rotate(-5deg); }
}

.shirt-label {
  background: rgba(255,255,255,0.9);
  color: #0d3d0d;
  padding: 5px 10px;
  font-weight: 700;
  font-size: 0.8rem;
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 4px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  text-align: center;
  transition: all 0.3s ease;
}

.shirt:hover .shirt-label {
  background: #8eff8e;
  padding: 5px 15px;
  transform: translateX(-50%) translateY(-5px);
}

.shop-close-mobile {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(255,255,255,0.2);
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  backdrop-filter: blur(5px);
  display: none;
  z-index: 10;
  transition: all 0.3s ease;
}

.shop-close-mobile:hover {
  background: rgba(255,255,255,0.3);
  transform: rotate(90deg);
}

/* Responsividade */
@media (max-width: 992px) {
  .shop-promo-content {
    flex-direction: column;
    padding: 30px;
  }
  
  .shop-content-left {
    padding-right: 0;
    margin-bottom: 30px;
    text-align: center;
    align-items: center;
  }
  
  .shop-description {
    max-width: 100%;
  }
  
  .shop-features {
    justify-content: center;
  }
  
  .shirt-display {
    width: 100%;
    justify-content: center;
  }
  
  .shirt {
    transform: none !important;
    margin: 0 -20px;
  }
  
  .shirt img {
    width: 120px;
  }
  
  .shop-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .shop-promo-container {
    padding: 15px;
    margin: 30px 0;
  }
  
  .shop-close-mobile {
    display: flex;
  }
  
  .shop-title {
    font-size: 1.8rem;
  }
  
  .shop-description {
    font-size: 1rem;
  }
  
  .shirt img {
    width: 100px;
  }
  
  .shirt-label {
    font-size: 0.7rem;
    padding: 4px 8px;
  }
}

@media (max-width: 576px) {
  .shop-promo-content {
    padding: 25px 20px 30px;
  }
  
  .shirt {
    margin: 0 -15px;
  }
  
  .shirt img {
    width: 85px;
    border-width: 3px;
  }
  
  .shop-title {
    font-size: 1.5rem;
  }
  
  .feature {
    font-size: 0.85rem;
    margin-right: 10px;
  }
  
  .shop-button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}


/*--------------------------------------------------------------
# Avaliação Botão 
--------------------------------------------------------------*/

/* Estilos para o botão de avaliação */
.avaliacao-btn {
    background: linear-gradient(135deg, #ff3636, #b50000);
    color: white !important;
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: bold;
    box-shadow: 0 4px 8px rgba(255, 0, 0, 0.3);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-left: 10px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.avaliacao-btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff5e5e, #ff0000);
    transition: all 0.6s ease;
    z-index: -1;
}

.avaliacao-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(255, 0, 0, 0.4);
}

.avaliacao-btn:hover:before {
    left: 0;
}

/* Animação de pulso */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}

.pulse-effect {
    animation: pulse 2s infinite;
}

/* Ajustes para mobile */
@media (max-width: 991px) {
    .avaliacao-btn {
        margin: 15px 0 5px 0;
        display: inline-flex;
        width: fit-content;
    }
    
    .auth-buttons-mobile .avaliacao-btn {
        margin-top: 15px;
        text-align: center;
        justify-content: center;
    }
}


/--------------------------------------------------------------
# Estilos Dropdown login 
--------------------------------------------------------------/
    .login-link.dropdown-toggle::after {
        display: inline-block;
        margin-left: 0.255em;
        vertical-align: 0.255em;
        content: "";
        border-top: 0.3em solid;
        border-right: 0.3em solid transparent;
        border-bottom: 0;
        border-left: 0.3em solid transparent;
        transition: transform 0.2s;
    }

    .login-link.dropdown-toggle[aria-expanded="true"]::after {
        transform: rotate(180deg);
    }

    .dropdown-menu-end {
        right: 0;
        left: auto;
    }

    .auth-buttons .dropdown-menu,
    .auth-buttons-mobile .dropdown-menu {
        background: linear-gradient(135deg, var(--transparent-dark), var(--transparent-medium));
        margin-top: 10px;
        min-width: 180px;
        padding: 10px 0;
    }

    .auth-buttons .dropdown-menu .dropdown-item,
    .auth-buttons-mobile .dropdown-menu .dropdown-item {
        color: white;
        padding: 10px 20px;
        transition: all 0.3s ease;
    }

    .auth-buttons .dropdown-menu .dropdown-item:hover,
    .auth-buttons-mobile .dropdown-menu .dropdown-item:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    .auth-buttons .dropdown-menu .dropdown-item i,
    .auth-buttons-mobile .dropdown-menu .dropdown-item i {
        margin-right: 10px;
        width: 20px;
        text-align: center;
        opacity: 0.7;
        transition: opacity 0.3s;
    }

    .auth-buttons .dropdown-menu .dropdown-item:hover i,
    .auth-buttons-mobile .dropdown-menu .dropdown-item:hover i {
        opacity: 1;
    }

    /* Ajuste para mobile */
    @media (max-width: 991px) {
        .auth-buttons-mobile .dropdown-menu {
            width: 100%;
            margin-top: 5px;
            position: static;
            float: none;
        }

        .auth-buttons-mobile .login-link.dropdown-toggle {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .auth-buttons-mobile .dropdown {
            width: 100%;
            margin-bottom: 10px;
        }
    }






