
.hero-section {
    height: 100vh;
    position: relative;
    width: 100%;
    overflow: hidden;
    }
    
    .hero-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: right center;
        position: absolute;
        inset: 0;
    }
    
    
    .perspective {
        perspective: 2000px;
    }
    
    .cards-container {
        position: relative;
        width: 100%;
        height: 100%;
        transform-style: preserve-3d;
        transition: transform 0.6s ease-out;
    }
    
    .plan-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    padding: 20px;
    border-radius: 20px;
    }
    

    .plan-card {
    position: absolute;
    width: 300px;
    left: 50%;
    top: 50%;
    transform-style: preserve-3d;
    transition: all 0.6s ease-out;
    overflow: hidden;
    border-radius: 20px;
    background: #000000;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 16px;
    }
    
    .plan-content h3 {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 16px;
    }
    
    .plan-content img {
    max-width: 160px;
    height: auto;
    margin-bottom: 10px;
    }
    
    .plan-content .space-y-2 p {
    margin: 4px 0;
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 12px;
    }
    
    .plan-content .space-y-2 p:nth-child(1),
    .plan-content .space-y-2 p:nth-child(2) {
    font-weight: bold;
    }
    
    .plan-content .text-tegg-green {
    background-color: #00F37F;
    color: #000000;
    border-radius: 30px;
    
    font-size: 22px;
    font-weight: bold;
    display: inline-block;
    width: 80%;
    margin-top: 12px; /* Ajuste conforme desejar */
    }
    .plan-content .whatsapp-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #00F37F;
    font-size: 16px;
    font-weight: 500;
    }
    
    .plan-content .whatsapp-info i {
    font-size: 18px;
    }
    
    .nav-link {
    position: relative;
    transition: all 0.3s ease;
    }
    
    .nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00F37F;
    transition: width 0.3s ease;
    }
    
    .nav-link:hover::after {
    width: 100%;
    }
    
    /* Improved cards */
    .benefit-card {
    background: linear-gradient(145deg, #18181b, #27272a);
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 243, 127, 0.1);
    border-color: rgba(0, 243, 127, 0.3);
    }
    
    .benefit-card img {
    transition: transform 0.4s ease;
    }
    
    .benefit-card:hover img {
    transform: scale(1.1);
    }
    
    .benefit-card h3 {
    transition: color 0.3s ease;
    }
    
    .benefit-card:hover h3 {
    color: #00F37F;
    }
    
    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .animate-fadeIn {
        animation: fadeIn 0.8s ease-out forwards;
    }
    
    .animate-cardFadeIn {
        animation: fadeIn 0.8s ease-out forwards;
    }
    
    .group:hover .group-hover\:-translate-y-2 {
        transform: translateY(-8px);
    }
    
    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes fadeInRight {
        from {
            opacity: 0;
            transform: translateX(50px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    .animate-fadeIn {
        animation: fadeIn 1s ease-out forwards;
    }
    
    .animate-fadeInRight {
        animation: fadeInRight 1s ease-out forwards;
    }
    
    @keyframes ping {
        75%, 100% {
            transform: scale(1.5);
            opacity: 0;
        }
    }
    
    .animate-ping {
        animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
    }
    
    .cards-container {
        position: relative;
        width: 100%;
        height: 100%;
        transform-style: preserve-3d;
        transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .animate-fadeIn {
        animation: fadeIn 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }
    
    .plan-content {
        transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .plan-content:hover {
        transform: translateY(-8px);
    }
    
    button:focus-visible {
        outline: 2px solid #00F37F;
        outline-offset: 2px;
    }
    
    .accordion-content {
        max-height: 0;
        opacity: 0;
        transform: translateY(-10px);
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .accordion-content.active {
        max-height: 1000px;
        opacity: 1;
        transform: translateY(0);
    }
    
    /* Plus/minus animation */
    .plus {
        position: relative;
        transition: transform 0.3s ease;
    }
    
    .plus::before,
    .plus::after {
        content: '';
        position: absolute;
        background-color: currentColor;
        border-radius: 2px;
        transition: all 0.3s ease;
    }
    
    .plus::before {
        width: 12px;
        height: 2px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    
    .plus::after {
        width: 2px;
        height: 12px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    
    .accordion.active .plus::after {
        transform: translate(-50%, -50%) rotate(90deg);
        opacity: 0;
    }
    
    /* Fade in animation */
    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .animate-fadeIn {
        animation: fadeIn 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }
    
    /* Active accordion styles */
    .accordion.active {
        border-color: rgba(0, 243, 127, 0.3);
        box-shadow: 0 10px 30px -10px rgba(0, 243, 127, 0.1);
    }
    
    .accordion.active button {
        color: #00F37F;
    }
    
    .accordion.active .plus {
        background-color: #00F37F;
        color: black;
        transform: rotate(45deg);
    }
    
    .navbar.scrolled {
        background-color: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
    }
    
    /* Nav Link Hover Effect */
    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 2px;
        background-color: #00F37F;
        transition: width 0.3s ease;
    }
    
    .nav-link:hover::after {
        width: 100%;
    }
    
    /* Mobile Menu Button Animation */
    #mobile-menu {
        max-height: 0;
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    #mobile-menu.active {
        max-height: 400px; /* Adjust based on your content */
        opacity: 1;
        pointer-events: auto;
    }
    
    /* Keep existing styles and add: */
    .mobile-menu-container {
        transform: translateY(-10px);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    #mobile-menu.active .mobile-menu-container {
        transform: translateY(0);
    }
    
    /* Update mobile menu button animation */
    #mobile-menu-button span {
        transform-origin: center;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    #mobile-menu-button.active span:first-child {
        transform: translateY(6px) rotate(45deg);
    }
    
    #mobile-menu-button.active span:nth-child(2) {
        opacity: 0;
    }
    
    #mobile-menu-button.active span:last-child {
        transform: translateY(-6px) rotate(-45deg);
    }
    
    /* Mobile Nav Link Animation */
    .mobile-nav-link {
        position: relative;
        padding-left: 0;
        transition: all 0.3s ease;
    }
    
    .mobile-nav-link:hover {
        padding-left: 12px;
    }
    
    .mobile-nav-link::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        width: 0;
        height: 2px;
        background-color: #00F37F;
        transform: translateY(-50%);
        transition: width 0.3s ease;
    }
    
    .mobile-nav-link:hover::before {
        width: 8px;
    }
    
    /* Ken Burns effect */
    @keyframes kenBurns {
        0% {
            transform: scale(1.1);
        }
        100% {
            transform: scale(1);
        }
    }
    
    .animate-kenBurns {
        animation: kenBurns 20s ease-out forwards;
    }
    
    /* Floating particles */
    @keyframes float {
        0%, 100% {
            transform: translateY(0) scale(1);
            opacity: 0;
        }
        25% {
            transform: translateY(-20px) scale(1.2);
            opacity: 1;
        }
        75% {
            transform: translateY(20px) scale(0.8);
            opacity: 1;
        }
    }
    
    .animate-float {
        animation: float 8s ease-in-out infinite;
    }
    
    /* Slide in animation */
    @keyframes slideIn {
        0% {
            transform: translateX(-50px);
            opacity: 0;
        }
        100% {
            transform: translateX(0);
            opacity: 1;
        }
    }
    
    .animate-slideIn {
        opacity: 0;
        animation: slideIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
        animation-delay: var(--delay, 0s);
    }
    
    /* Fade in up animation */
    @keyframes fadeInUp {
        0% {
            transform: translateY(20px);
            opacity: 0;
        }
        100% {
            transform: translateY(0);
            opacity: 1;
        }
    }
    
    .animate-fadeInUp {
        animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }
    
    /* Basic fade in animation */
    @keyframes fadeIn {
        0% {
            opacity: 0;
        }
        100% {
            opacity: 1;
        }
    }
    
    .animate-fadeIn {
        animation: fadeIn 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }
    
    /* Bounce animation */
    @keyframes bounce {
        0%, 100% {
            transform: translateY(-25%);
            animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
        }
        50% {
            transform: translateY(0);
            animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
        }
    }
    
    .animate-bounce {
        animation: bounce 2s infinite;
    }
    
    .plan-content .space-y-2 p {
      text-align: left;
      padding-left: 1.5rem;
      position: relative;
      margin: 0.25rem 0;
      line-height: 1.5;
    }
    
    .plan-content .space-y-2 p::before {
      content: "• ";
      position: absolute;
      left: 0;
      color: #00F37F;
      font-weight: bold;
    }