        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
.mw-dock-trigger-icon {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.mw-dock-trigger-icon svg {
  width: 26px;
  height: 26px;
  stroke: #000;
  transition: all 0.3s ease;
}

/* Esconde o ícone quando aberto */
.mw-social-dock.open .mw-dock-trigger-icon {
  opacity: 0;
  transform: scale(0.4);
}
        .header.on-white-section {
            background: rgba(0, 0, 0, 0.95) !important;
            box-shadow: 0 2px 25px rgba(0, 0, 0, 0.15);
        }

        .header.on-white-section .nav a {
            color: #ffffff;
        }

        .header.on-white-section .logo-text {
            filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.6));
        }

        /* ========== NEW HERO SECTION - STYLES ========== */
        .newherosection {
            position: relative;
            width: 100%;
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            background: #000;
        }

        /* Background container */
        .hero-background-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

        .hero-slide-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 2s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .hero-slide-bg.active {
            opacity: 1;
        }

        .hero-slide-bg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            filter: brightness(0.7);
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg,
                    rgba(0, 0, 0, 0.6) 0%,
                    rgba(0, 0, 0, 0.3) 50%,
                    rgba(212, 175, 55, 0.1) 100%);
        }

        /* Content wrapper */
        .hero-content-wrapper {
            position: relative;
            z-index: 2;
            width: 100%;
            max-width: 1400px;
            padding: 0 60px;
            margin: 0 auto;
        }

        .hero-content {
            max-width: 800px;
        }

        /* Badge */
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(212, 175, 55, 0.15);
            border: 1px solid rgba(212, 175, 55, 0.3);
            backdrop-filter: blur(20px);
            padding: 10px 24px;
            border-radius: 50px;
            margin-bottom: 30px;
            animation: fadeInDown 1s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .hero-badge svg {
            width: 18px;
            height: 18px;
            stroke: #D4AF37;
        }

        .hero-badge span {
            font-size: 12px;
            font-weight: 700;
            font-family: 'Montserrat', sans-serif;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: #D4AF37;
        }

        /* Main title */
        .hero-main-title {
            font-size: 82px;
            font-weight: 400;
            font-family: 'Bebas Neue', 'Oswald', sans-serif;
            line-height: 0.95;
            color: #ffffff;
            margin-bottom: 30px;
            letter-spacing: 2px;
            text-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
            animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
        }

        .hero-highlight {
            background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 50%, #FFD700 100%);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientShift 4s ease infinite;
            filter: drop-shadow(0 0 40px rgba(212, 175, 55, 0.9));
            display: inline-block;
        }

        /* Description */
        .hero-description {
            font-size: 20px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 45px;
            font-weight: 400;
            font-family: 'Montserrat', sans-serif;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
            animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
        }

        /* CTA Buttons */
        .hero-cta-group {
            display: flex;
            gap: 20px;
            margin-bottom: 60px;
            animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both;
        }

        .hero-btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
            color: #000;
            padding: 18px 40px;
            border-radius: 50px;
            font-size: 15px;
            font-weight: 800;
            font-family: 'Montserrat', sans-serif;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            text-decoration: none;
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
        }

        .hero-btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.6s;
        }

        .hero-btn-primary:hover::before {
            left: 100%;
        }

        .hero-btn-primary:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 20px 50px rgba(212, 175, 55, 0.6);
        }

        .hero-btn-primary svg {
            width: 20px;
            height: 20px;
            transition: transform 0.3s ease;
        }

        .hero-btn-primary:hover svg {
            transform: translateX(5px);
        }

        .hero-btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 255, 255, 0.2);
            color: #ffffff;
            padding: 16px 35px;
            border-radius: 50px;
            font-size: 15px;
            font-weight: 700;
            font-family: 'Montserrat', sans-serif;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            text-decoration: none;
            backdrop-filter: blur(10px);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .hero-btn-secondary:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: #D4AF37;
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
        }

        .hero-btn-secondary svg {
            width: 18px;
            height: 18px;
        }

        /* Stats */
        .hero-stats {
            display: flex;
            align-items: center;
            gap: 40px;
            animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.8s both;
        }

        .hero-stat-item {
            text-align: left;
        }

        .stat-value {
            font-size: 42px;
            font-weight: 400;
            font-family: 'Bebas Neue', 'Oswald', sans-serif;
            background: linear-gradient(135deg, #D4AF37, #F4D03F);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 2px;
            line-height: 1;
            margin-bottom: 8px;
        }

        .stat-label {
            font-size: 11px;
            color: rgba(255, 255, 255, 0.7);
            font-weight: 600;
            font-family: 'Montserrat', sans-serif;
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }

        .hero-stat-divider {
            width: 1px;
            height: 40px;
            background: linear-gradient(to bottom,
                    transparent,
                    rgba(212, 175, 55, 0.4),
                    transparent);
        }

        /* Slide controls */
        .hero-slide-controls {
            position: absolute;
            bottom: 50px;
            left: 60px;
            z-index: 3;
            display: flex;
            gap: 15px;
        }

        .hero-slide-indicator {
            width: 50px;
            height: 4px;
            background: rgba(255, 255, 255, 0.2);
            border: none;
            border-radius: 3px;
            cursor: pointer;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
        }

        .hero-slide-indicator:hover {
            background: rgba(255, 255, 255, 0.3);
        }

        .indicator-progress {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 0;
            background: linear-gradient(90deg, #D4AF37, #F4D03F);
            border-radius: 3px;
            transition: width 0.3s ease;
        }

        .hero-slide-indicator.active .indicator-progress {
            width: 100%;
            animation: slideProgress 7s linear;
        }

        @keyframes slideProgress {
            from {
                width: 0;
            }

            to {
                width: 100%;
            }
        }

        /* Scroll indicator */
        .hero-scroll-indicator {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 3;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
            cursor: pointer;
            animation: scrollBounce 2.5s ease-in-out infinite;
        }

        .scroll-text {
            font-size: 11px;
            color: rgba(255, 255, 255, 0.7);
            font-weight: 700;
            font-family: 'Montserrat', sans-serif;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .scroll-mouse {
            width: 28px;
            height: 45px;
            border: 2px solid rgba(255, 255, 255, 0.4);
            border-radius: 20px;
            position: relative;
        }

        .scroll-wheel {
            width: 4px;
            height: 10px;
            background: linear-gradient(135deg, #D4AF37, #F4D03F);
            border-radius: 4px;
            position: absolute;
            top: 10px;
            left: 50%;
            transform: translateX(-50%);
            animation: scrollWheel 2s ease-in-out infinite;
        }

        .scroll-arrows {
            display: flex;
            flex-direction: column;
            gap: -5px;
        }

        .scroll-arrow {
            width: 14px;
            height: 14px;
            border-right: 2px solid rgba(212, 175, 55, 0.6);
            border-bottom: 2px solid rgba(212, 175, 55, 0.6);
            transform: rotate(45deg);
            animation: arrowMove 2s ease-in-out infinite;
        }

        .scroll-arrow:nth-child(2) {
            animation-delay: 0.2s;
            opacity: 0.6;
        }

        /* Animations */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes gradientShift {

            0%,
            100% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }
        }

        @keyframes scrollBounce {

            0%,
            100% {
                transform: translateX(-50%) translateY(0);
            }

            50% {
                transform: translateX(-50%) translateY(-15px);
            }
        }

        @keyframes scrollWheel {
            0% {
                opacity: 1;
                top: 10px;
            }

            50% {
                opacity: 0.5;
                top: 22px;
            }

            100% {
                opacity: 0;
                top: 28px;
            }
        }

        @keyframes arrowMove {

            0%,
            100% {
                opacity: 0;
                transform: rotate(45deg) translateY(-10px);
            }

            50% {
                opacity: 1;
                transform: rotate(45deg) translateY(0);
            }
        }

        /* Responsive */
        @media (max-width: 968px) {
            .hero-content-wrapper {
                padding: 0 25px;
            }

            .hero-main-title {
                font-size: 56px;
            }

            .hero-description {
                font-size: 17px;
            }

            .hero-cta-group {
                flex-direction: column;
                gap: 15px;
            }

            .hero-btn-primary,
            .hero-btn-secondary {
                width: 100%;
                justify-content: center;
                padding: 16px 30px;
                font-size: 13px;
            }

            .hero-stats {
                flex-wrap: wrap;
                gap: 20px;
            }

            .hero-stat-divider {
                display: none;
            }

            .hero-slide-controls {
                left: 25px;
                bottom: 30px;
            }

            .hero-scroll-indicator {
                bottom: 90px;
            }
        }


        body {
            font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            overflow-x: hidden;
            background: #ffffff;
            scroll-behavior: smooth;
        }

        /* Header */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            padding: 20px 60px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 1000;
            background: transparent;
            backdrop-filter: blur(0px);
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            border-bottom: 1px solid rgba(212, 175, 55, 0);
        }

        .header.scrolled {
            padding: 14px 60px;
            background: rgba(0, 0, 0, 0.98);
            backdrop-filter: blur(30px);
            box-shadow: 0 5px 35px rgba(0, 0, 0, 0.4);
            border-bottom: 1px solid rgba(212, 175, 55, 0.25);
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 12px;
            cursor: pointer;
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .logo-container:hover {
            transform: translateY(-2px);
        }

        .logo-text {
            font-size: 32px;
            font-weight: 400;
            font-family: 'Bebas Neue', 'Oswald', sans-serif;
            background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 50%, #FFD700 100%);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 4px;
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
            animation: gradientShift 4s ease infinite;
            filter: drop-shadow(0 2px 15px rgba(0, 0, 0, 0.8));
        }

        .header.scrolled .logo-text {
            filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.5));
        }

        @keyframes gradientShift {

            0%,
            100% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }
        }

        .nav {
            display: flex;
            gap: 0;
            align-items: center;
        }

        .nav a:not(:last-child)::after {
            content: '|';
            color: rgba(212, 175, 55, 0.4);
            margin: 0 20px;
            font-weight: 300;
        }

        .nav .social-icons::before {
            content: '|';
            color: rgba(212, 175, 55, 0.4);
            margin: 0 20px 0 0;
            font-weight: 300;
        }

        .nav a.active {
            color: #D4AF37;
        }

        .nav a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 700;
            font-size: 11px;
            font-family: 'Montserrat', sans-serif;
            letter-spacing: 2px;
            position: relative;
            padding: 8px 0;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            text-transform: uppercase;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
            display: inline-block;
        }

        .header.scrolled .nav a {
            text-shadow: none;
        }

        .nav a:hover {
            color: #D4AF37;
        }

        .social-icons {
            display: flex;
            gap: 12px;
            margin-left: 0;
        }

        .social-icons a {
            width: 38px;
            height: 38px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.3);
            color: #D4AF37;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(212, 175, 55, 0.3);
            backdrop-filter: blur(10px);
        }

        .social-icons a svg {
            width: 18px;
            height: 18px;
            fill: #D4AF37;
            transition: all 0.3s ease;
        }

        .header.scrolled .social-icons a {
            background: rgba(212, 175, 55, 0.15);
            border: 1px solid rgba(212, 175, 55, 0.4);
        }

        .social-icons a:hover {
            border-color: #D4AF37;
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
            background: linear-gradient(135deg, #D4AF37, #F4D03F);
        }

        .social-icons a:hover svg {
            fill: #000;
        }

        /* Hero Slider - AJUSTADO */
        .hero-slider {
            position: relative;
            height: 100vh;
            overflow: hidden;
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }


        .hero-slider.highlight-section {
            animation: heroHighlight 1.2s cubic-bezier(0.4, 0, 0.2, 1);
        }


        @keyframes heroHighlight {
            0% {
                filter: brightness(1);
            }

            30% {
                filter: brightness(1.15) contrast(1.05);
            }

            100% {
                filter: brightness(1);
            }
        }


        .slide {
            position: absolute;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 2s ease-in-out;
        }



        .slide.active {
            opacity: 1;
        }

        .slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.25) 50%, rgba(212, 175, 55, 0.08) 100%);
            z-index: 1;
        }

        /* SOLUÇÃO PRINCIPAL - Ajuste da imagem de fundo */
        .slide-background {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center center;
            /* Centraliza a imagem */
            /* Removida a animação Ken Burns que causava o corte */
            image-rendering: -webkit-optimize-contrast;
            image-rendering: crisp-edges;
            transform: scale(1.05);
            /* Leve zoom para compensar espaços */
        }



        /* Animação Ken Burns SUAVE (opcional - pode comentar se preferir sem animação) */
        @keyframes kenBurnsSmooth {
            0% {
                transform: scale(1.05) translate(0, 0);
            }

            100% {
                transform: scale(1.08) translate(-10px, -10px);
            }
        }

        /* Aplicar animação apenas se desejar (descomente a linha abaixo) */
        /* .slide.active .slide-background {
            animation: kenBurnsSmooth 20s ease-in-out infinite alternate;
        } */

        .slide-content {
            position: absolute;
            top: 50%;
            left: 60px;
            transform: translateY(-50%);
            z-index: 2;
            max-width: 600px;
            color: white;
        }

        .slide-title {
            font-size: 68px;
            font-weight: 400;
            font-family: 'Bebas Neue', 'Oswald', sans-serif;
            line-height: 1;
            margin-bottom: 20px;
            letter-spacing: 3px;
            text-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
            animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
        }

        .slide-title .highlight {
            background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 50%, #FFD700 100%);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: inline-block;
            animation: gradientShift 3s ease infinite;
            filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.8));
        }

        @keyframes gradientShift {

            0%,
            100% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }
        }


        .slide-subtitle {
            font-size: 19px;
            line-height: 1.6;
            margin-bottom: 35px;
            font-weight: 400;
            font-family: 'Montserrat', sans-serif;
            text-shadow: 0 6px 25px rgba(0, 0, 0, 0.5);
            animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) 0.7s both;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
            color: #000;
            padding: 16px 42px;
            border: none;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 800;
            font-family: 'Montserrat', sans-serif;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 2.5px;
            position: relative;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
            animation: fadeInUp 1.2s cubic-bezier(0.4, 0, 0.2, 1) 1s both;
            text-decoration: none;
        }

        .cta-button:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 15px 45px rgba(212, 175, 55, 0.5);
        }

        /* Slide Indicators */
        .slide-indicators {
            position: absolute;
            bottom: 35px;
            left: 60px;
            z-index: 3;
            display: flex;
            gap: 12px;
        }


        .indicator {
            width: 40px;
            height: 3px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 2px;
            cursor: pointer;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .indicator::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 0;
            background: linear-gradient(90deg, #D4AF37, #F4D03F);
            border-radius: 2px;
        }

        .indicator.active::before {
            width: 100%;
            animation: indicatorProgress 7s linear;
        }

        @keyframes indicatorProgress {
            from {
                width: 0;
            }

            to {
                width: 100%;
            }
        }

        /* Mission Section */
  /* Exceções para seções brancas */
.mission-section,
.contact-section,
.newaboutmw-section,
.app-section {
  background-color: #ffffff;
}

        .mission-section.highlight-section {
            animation: sectionPulse 1.2s cubic-bezier(0.4, 0, 0.2, 1);
        }

        @keyframes sectionPulse {
            0% {
                background: #ffffff;
            }

            30% {
                background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(244, 208, 63, 0.05) 100%);
                transform: scale(1.005);
            }

            100% {
                background: #ffffff;
                transform: scale(1);
            }
        }

        .mission-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .mission-content {
            color: #1a1a1a;
        }

        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .mission-label {
            font-size: 11px;
            color: #D4AF37;
            font-weight: 800;
            font-family: 'Montserrat', sans-serif;
            letter-spacing: 4px;
            text-transform: uppercase;
            margin-bottom: 20px;
            display: inline-block;
        }

        .mission-title {
            font-size: 52px;
            font-weight: 400;
            font-family: 'Bebas Neue', 'Oswald', sans-serif;
            line-height: 1.1;
            margin-bottom: 25px;
            letter-spacing: 2px;
        }

        .mission-title .gold {
            background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientShift 3s ease infinite;
        }

        .mission-description {
            font-size: 16px;
            line-height: 1.7;
            color: #555;
            margin-bottom: 30px;
            font-weight: 400;
            font-family: 'Montserrat', sans-serif;
        }

        .mission-highlight {
            background: rgba(212, 175, 55, 0.08);
            border-left: 3px solid #D4AF37;
            padding: 20px 25px;
            border-radius: 6px;
            margin-bottom: 30px;
        }

        .mission-highlight p {
            font-size: 17px;
            color: #D4AF37;
            font-weight: 600;
            font-family: 'Montserrat', sans-serif;
            line-height: 1.5;
            font-style: italic;
        }

        .mission-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        .stat-card {
            background: rgba(212, 175, 55, 0.05);
            padding: 20px;
            border-radius: 10px;
            border: 1px solid rgba(212, 175, 55, 0.15);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .stat-card:hover {
            transform: translateY(-4px);
            background: rgba(212, 175, 55, 0.1);
            border-color: rgba(212, 175, 55, 0.3);
            box-shadow: 0 8px 30px rgba(212, 175, 55, 0.15);
        }

        .stat-number {
            font-size: 48px;
            font-weight: 400;
            font-family: 'Bebas Neue', 'Oswald', sans-serif;
            background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 6px;
            letter-spacing: 2px;
        }

        .stat-label {
            font-size: 12px;
            color: #666;
            font-weight: 700;
            font-family: 'Montserrat', sans-serif;
            text-transform: uppercase;
            letter-spacing: 1.5px;
        }

        /* Mission Visual */
        .mission-visual {
            position: relative;
        }

        .runner-icon-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
        }

        .icon-box {
            background: rgba(212, 175, 55, 0.04);
            padding: 30px 22px;
            border-radius: 15px;
            text-align: center;
            border: 1.5px solid rgba(212, 175, 55, 0.1);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .icon-box:hover {
            transform: translateY(-8px) scale(1.02);
            border-color: rgba(212, 175, 55, 0.3);
            background: rgba(212, 175, 55, 0.08);
            box-shadow: 0 15px 45px rgba(212, 175, 55, 0.2);
        }

        .runner-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 18px;
        }

        .runner-icon svg {
            width: 100%;
            height: 100%;
            fill: none;
            stroke: #D4AF37;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
        }

        .icon-title {
            font-size: 19px;
            font-weight: 800;
            font-family: 'Montserrat', sans-serif;
            color: #1a1a1a;
            margin-bottom: 10px;
            letter-spacing: 0.5px;
        }

        .icon-description {
            font-size: 13px;
            color: #666;
            line-height: 1.5;
        }

        /* Stories Section */
        .stories-section {
            padding: 100px 60px;
            background: linear-gradient(180deg, #f8f8f8 0%, #ffffff 100%);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .stories-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, #D4AF37, transparent);
            opacity: 0.3;
        }

        .stories-section.highlight-section {
            animation: sectionPulse 1.2s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* About MW Section - Elegant Design */
        .about-mw-section {
            padding: 80px 60px 100px;
            background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
            position: relative;
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .about-mw-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 200px;
            height: 1px;
            background: linear-gradient(90deg, transparent, #D4AF37, transparent);
            opacity: 0.5;
        }

        .about-mw-section.highlight-section {
            animation: sectionPulse 1.2s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .about-mw-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .about-mw-visual {
            position: relative;
        }

        .about-mw-logo-big {
            font-size: 140px;
            font-weight: 400;
            font-family: 'Bebas Neue', 'Oswald', sans-serif;
            background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 50%, #FFD700 100%);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 12px;
            animation: gradientShift 4s ease infinite;
            line-height: 1;
            margin-bottom: 20px;
            filter: drop-shadow(0 10px 40px rgba(212, 175, 55, 0.3));
            text-align: center;
        }

        .about-mw-badge {
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(244, 208, 63, 0.05) 100%);
            border: 2px solid rgba(212, 175, 55, 0.2);
            border-radius: 50px;
            padding: 12px 30px;
            display: inline-block;
            margin: 0 auto;
            display: flex;
            justify-content: center;
        }

        .about-mw-badge-text {
            font-size: 11px;
            color: #D4AF37;
            font-weight: 800;
            font-family: 'Montserrat', sans-serif;
            letter-spacing: 3px;
            text-transform: uppercase;
        }

        .about-decorative-lines {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 120%;
            height: 120%;
            z-index: -1;
            opacity: 0.1;
        }

        .about-decorative-lines svg {
            width: 100%;
            height: 100%;
        }

        .about-mw-content {
            color: #1a1a1a;
        }

        .about-mw-title {
            font-size: 48px;
            font-weight: 400;
            font-family: 'Bebas Neue', 'Oswald', sans-serif;
            color: #1a1a1a;
            line-height: 1.2;
            margin-bottom: 30px;
            letter-spacing: 2px;
        }

        .about-mw-title .gold {
            background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientShift 3s ease infinite;
        }

        .about-mw-description {
            font-size: 17px;
            line-height: 1.9;
            color: #555;
            font-weight: 400;
            font-family: 'Montserrat', sans-serif;
            margin-bottom: 35px;
        }

        .about-mw-description strong {
            color: #D4AF37;
            font-weight: 700;
        }

        .about-mw-features {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 35px;
        }

        .about-feature-tag {
            background: rgba(212, 175, 55, 0.08);
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 25px;
            padding: 10px 20px;
            font-size: 13px;
            font-weight: 700;
            font-family: 'Montserrat', sans-serif;
            color: #D4AF37;
            letter-spacing: 0.5px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .about-feature-tag:hover {
            background: linear-gradient(135deg, #D4AF37, #F4D03F);
            color: #000;
            border-color: #D4AF37;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
        }

        .transformation-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 100px;
            align-items: center;
        }

        .transformation-content {
            color: #1a1a1a;
        }

        .transformation-title {
            font-size: 54px;
            font-weight: 400;
            font-family: 'Bebas Neue', 'Oswald', sans-serif;
            color: #000;
            line-height: 1.1;
            margin-bottom: 35px;
            letter-spacing: 2px;
        }

        .transformation-text p {
            font-size: 16px;
            line-height: 1.8;
            color: #555;
            margin-bottom: 25px;
            font-weight: 400;
            font-family: 'Montserrat', sans-serif;
        }

        .transformation-text p strong {
            color: #D4AF37;
            font-weight: 700;
        }

        .transformation-highlight-box {
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(244, 208, 63, 0.05) 100%);
            border-left: 4px solid #D4AF37;
            padding: 30px;
            border-radius: 12px;
            margin: 35px 0;
            display: flex;
            gap: 20px;
            align-items: flex-start;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .transformation-highlight-box:hover {
            transform: translateX(5px);
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(244, 208, 63, 0.08) 100%);
            box-shadow: 0 10px 40px rgba(212, 175, 55, 0.15);
        }

        .highlight-icon {
            width: 50px;
            height: 50px;
            min-width: 50px;
            background: linear-gradient(135deg, #D4AF37, #F4D03F);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #000;
        }

        .highlight-icon svg {
            width: 28px;
            height: 28px;
        }

        .highlight-content h4 {
            font-size: 20px;
            font-weight: 800;
            font-family: 'Montserrat', sans-serif;
            color: #D4AF37;
            margin-bottom: 10px;
            letter-spacing: 0.5px;
        }

        .highlight-content p {
            font-size: 15px;
            line-height: 1.6;
            color: #666;
            margin-bottom: 0;
        }

        .transformation-features {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-top: 35px;
        }

        .feature-item {
            display: flex;
            gap: 20px;
            align-items: flex-start;
            padding: 20px;
            background: #ffffff;
            border-radius: 10px;
            border: 1px solid rgba(212, 175, 55, 0.15);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .feature-item:hover {
            transform: translateX(8px);
            border-color: rgba(212, 175, 55, 0.4);
            box-shadow: 0 8px 30px rgba(212, 175, 55, 0.12);
        }

        .feature-number {
            font-size: 32px;
            font-weight: 400;
            font-family: 'Bebas Neue', 'Oswald', sans-serif;
            background: linear-gradient(135deg, #D4AF37, #F4D03F);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            min-width: 50px;
            letter-spacing: 1px;
        }

        .feature-info h5 {
            font-size: 17px;
            font-weight: 800;
            font-family: 'Montserrat', sans-serif;
            color: #1a1a1a;
            margin-bottom: 6px;
            letter-spacing: 0.3px;
        }

        .feature-info p {
            font-size: 14px;
            color: #666;
            line-height: 1.5;
            margin-bottom: 0;
        }

        .section-subtitle {
            font-size: 11px;
            color: #D4AF37;
            font-weight: 800;
            font-family: 'Montserrat', sans-serif;
            letter-spacing: 4px;
            text-transform: uppercase;
            margin-bottom: 15px;
            display: inline-block;
        }

        .section-title .gold {
            background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientShift 3s ease infinite;
        }

        /* Video Section - FORMATO INSTAGRAM (9:16) */
        .transformation-video {
            position: relative;
            display: flex;
            justify-content: center;
        }

        .video-wrapper {
            position: relative;
            width: 100%;
            max-width: 380px;
            margin: 0 auto;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(212, 175, 55, 0.1);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .video-wrapper:hover {
            transform: translateY(-10px);
            box-shadow: 0 35px 90px rgba(0, 0, 0, 0.25), 0 0 0 2px rgba(212, 175, 55, 0.3);
        }

        .video-placeholder {
            position: relative;
            width: 100%;
            padding-bottom: 177.78%;
            /* 9:16 Aspect Ratio (16/9 * 100 = 177.78%) */
            background: #000;
            border-radius: 24px;
            overflow: hidden;
        }

        .video-placeholder video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 24px;
        }

        .video-decoration {
            position: absolute;
            top: -50px;
            right: -50px;
            width: 200px;
            height: 200px;
            z-index: -1;
            opacity: 0.3;
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0) rotate(0deg);
            }

            50% {
                transform: translateY(-20px) rotate(10deg);
            }
        }

        /* WhatsApp Float Button */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 65px;
            height: 65px;
            background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            cursor: pointer;
            z-index: 999;
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            animation: whatsappPulse 2s ease-in-out infinite;
            text-decoration: none;
        }

        .whatsapp-float::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: rgba(37, 211, 102, 0.3);
            animation: whatsappRipple 2s ease-out infinite;
        }

        .whatsapp-float svg {
            width: 35px;
            height: 35px;
            fill: white;
            position: relative;
            z-index: 1;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
        }

        @keyframes whatsappPulse {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.08);
            }
        }

        @keyframes whatsappRipple {
            0% {
                transform: scale(1);
                opacity: 0.8;
            }

            50% {
                transform: scale(1.3);
                opacity: 0.4;
            }

            100% {
                transform: scale(1.6);
                opacity: 0;
            }
        }

        .whatsapp-float:hover {
            transform: scale(1.15);
            box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
            animation: none;
        }

        .whatsapp-float:hover::before {
            animation: none;
        }

        .whatsapp-float:active {
            transform: scale(1.05);
        }

        /* Mobile Menu */
        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            z-index: 1001;
        }

        .mobile-menu-btn span {
            width: 26px;
            height: 2.5px;
            background: linear-gradient(90deg, #D4AF37, #F4D03F);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            border-radius: 2px;
        }

        /* Responsive */
        @media (max-width: 968px) {
            .header {
                padding: 15px 25px;
            }

            .logo-text {
                font-size: 28px;
                letter-spacing: 3px;
            }

            .nav {
                position: fixed;
                top: 0;
                right: -100%;
                height: 100vh;
                width: 80%;
                max-width: 350px;
                background: rgba(0, 0, 0, 0.98);
                flex-direction: column;
                justify-content: center;
                gap: 35px;
                transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
                backdrop-filter: blur(30px);
                border-left: 2px solid rgba(212, 175, 55, 0.3);
            }

            .nav a:not(:last-child)::after {
                display: none;
            }

            .nav .social-icons::before {
                display: none;
            }

            .nav.active {
                right: 0;
            }

            .social-icons {
                margin-left: 0;
            }

            .mobile-menu-btn {
                display: flex;
            }

            .mobile-menu-btn.active span:nth-child(1) {
                transform: rotate(45deg) translate(7px, 7px);
            }

            .mobile-menu-btn.active span:nth-child(2) {
                opacity: 0;
            }

            .mobile-menu-btn.active span:nth-child(3) {
                transform: rotate(-45deg) translate(7px, -7px);
            }

            .hero-slider {
                height: 100vh;
            }

            .slide-content {
                left: 25px;
                right: 25px;
                max-width: calc(100% - 50px);
            }

            .slide-title {
                font-size: 48px;
                letter-spacing: 2px;
            }

            .slide-subtitle {
                font-size: 15px;
            }

            .slide-indicators {
                left: 25px;
                bottom: 25px;
            }

            .mission-section {
                padding: 70px 25px;
            }

            .mission-container {
                grid-template-columns: 1fr;
                gap: 45px;
            }

            .mission-title {
                font-size: 42px;
                letter-spacing: 1.5px;
            }

            .mission-description {
                font-size: 15px;
            }

            .mission-highlight p {
                font-size: 15px;
            }

            .runner-icon-container {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .stories-section {
                padding: 70px 25px;
            }

            .about-mw-section {
                padding: 70px 25px;
            }

            .about-mw-container {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .about-mw-logo-big {
                font-size: 72px;
                letter-spacing: 6px;
            }

            .about-mw-title {
                font-size: 38px;
                letter-spacing: 1.5px;
            }

            .about-mw-description {
                font-size: 15px;
            }

            .about-mw-features {
                justify-content: center;
            }

            .transformation-container {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .transformation-title {
                font-size: 40px;
                letter-spacing: 1.5px;
            }

            .transformation-text p {
                font-size: 15px;
            }

            .transformation-highlight-box {
                flex-direction: column;
                padding: 25px;
            }

            .highlight-icon {
                width: 45px;
                height: 45px;
                min-width: 45px;
            }

            .highlight-content h4 {
                font-size: 18px;
            }

            .feature-item {
                padding: 18px;
            }

            .feature-number {
                font-size: 28px;
                min-width: 45px;
            }

            .video-wrapper {
                max-width: 100%;
            }

            .whatsapp-float {
                bottom: 20px;
                right: 20px;
                width: 60px;
                height: 60px;
            }

            .whatsapp-float svg {
                width: 32px;
                height: 32px;
            }
        }



        /* Carousel Wrapper */
        .carousel-wrapper {
            position: relative;
            margin-bottom: 50px;
        }

        .carousel-container {
            overflow: hidden;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
        }

        .carousel-track {
            display: flex;
            transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .carousel-slide {
            min-width: 100%;
            position: relative;
        }

        .slide-image-wrapper {
            position: relative;
            width: 100%;
            padding-bottom: 56.25%;
            /* 16:9 Aspect Ratio */
            overflow: hidden;
            background: #000;
        }

        .carousel-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .carousel-slide:hover .carousel-image {
            transform: scale(1.05);
        }

        .slide-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
            padding: 40px;
            transform: translateY(0);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .slide-tag {
            display: inline-block;
            background: linear-gradient(135deg, #D4AF37, #F4D03F);
            color: #000;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 800;
            font-family: 'Montserrat', sans-serif;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-bottom: 12px;
        }

        .slide-caption {
            font-size: 32px;
            font-weight: 400;
            font-family: 'Bebas Neue', 'Oswald', sans-serif;
            color: #ffffff;
            letter-spacing: 2px;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
        }

        /* Carousel Navigation Buttons */
        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(212, 175, 55, 0.3);
            width: 55px;
            height: 55px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 10;
            color: #D4AF37;
        }

        .carousel-btn:hover {
            background: linear-gradient(135deg, #D4AF37, #F4D03F);
            border-color: #D4AF37;
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
            color: #000;
        }

        .carousel-btn svg {
            width: 24px;
            height: 24px;
        }

        .prev-btn {
            left: 20px;
        }

        .next-btn {
            right: 20px;
        }

        /* Carousel Dots */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 30px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(212, 175, 55, 0.2);
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid transparent;
        }

        .dot:hover {
            background: rgba(212, 175, 55, 0.5);
            transform: scale(1.2);
        }

        .dot.active {
            background: linear-gradient(135deg, #D4AF37, #F4D03F);
            border-color: rgba(212, 175, 55, 0.3);
            transform: scale(1.3);
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
        }

        /* Gallery CTA */
        .gallery-cta {
            text-align: center;
            margin-top: 50px;
        }

        .view-gallery-btn {
            display: inline-flex;
            align-items: center;
            gap: 15px;
            background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
            color: #000;
            padding: 18px 45px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 800;
            font-family: 'Montserrat', sans-serif;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-decoration: none;
            position: relative;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 12px 35px rgba(212, 175, 55, 0.3);
        }

        .view-gallery-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transition: left 0.6s;
        }

        .view-gallery-btn:hover::before {
            left: 100%;
        }

        .view-gallery-btn:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 18px 50px rgba(212, 175, 55, 0.5);
        }

        .btn-icon {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .btn-icon svg {
            width: 20px;
            height: 20px;
        }

        .btn-arrow {
            font-size: 20px;
            transition: transform 0.3s ease;
        }

        .view-gallery-btn:hover .btn-arrow {
            transform: translateX(5px);
        }

        .gallery-cta-subtitle {
            font-size: 13px;
            color: #999;
            margin-top: 15px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 500;
            letter-spacing: 0.5px;
        }

        /* Responsive */
        @media (max-width: 968px) {
            .gallery-section {
                padding: 70px 25px;
            }

            .gallery-title {
                font-size: 40px;
            }

            .gallery-description {
                font-size: 15px;
            }

            .slide-caption {
                font-size: 24px;
            }

            .slide-overlay {
                padding: 25px;
            }

            .carousel-btn {
                width: 45px;
                height: 45px;
            }

            .carousel-btn svg {
                width: 20px;
                height: 20px;
            }

            .prev-btn {
                left: 10px;
            }

            .next-btn {
                right: 10px;
            }

            .view-gallery-btn {
                padding: 16px 35px;
                font-size: 12px;
            }
        }

        /* App Section */
        .app-section {
            padding: 100px 60px;
            background: linear-gradient(135deg, #ffffff 0%, #f8f8f8 100%);
            position: relative;
            overflow: hidden;
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .app-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, #D4AF37, transparent);
            opacity: 0.3;
        }

        .app-section.highlight-section {
            animation: sectionPulse 1.2s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .app-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        /* App Visual */
        .app-visual {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .app-image-wrapper {
            position: relative;
            width: 100%;
            max-width: 550px;
            animation: floatImage 6s ease-in-out infinite;
        }

        @keyframes floatImage {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-20px);
            }
        }

        .app-showcase {
            width: 100%;
            height: auto;
            filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.15));
            position: relative;
            z-index: 2;
            border-radius: 20px;
        }

        .app-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80%;
            height: 80%;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
            filter: blur(60px);
            z-index: 1;
            animation: glowPulse 4s ease-in-out infinite;
        }

        @keyframes glowPulse {

            0%,
            100% {
                opacity: 0.5;
                transform: translate(-50%, -50%) scale(1);
            }

            50% {
                opacity: 0.8;
                transform: translate(-50%, -50%) scale(1.1);
            }
        }

        /* App Content */
        .app-content {
            color: #1a1a1a;
        }

        .app-title {
            font-size: 54px;
            font-weight: 400;
            font-family: 'Bebas Neue', 'Oswald', sans-serif;
            color: #1a1a1a;
            line-height: 1.1;
            margin-bottom: 30px;
            letter-spacing: 2px;
        }

        .app-title .gold {
            background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientShift 3s ease infinite;
        }

        .app-description {
            font-size: 17px;
            line-height: 1.8;
            color: #555;
            margin-bottom: 20px;
            font-weight: 400;
            font-family: 'Montserrat', sans-serif;
        }

        .app-description strong {
            color: #1a1a1a;
            font-weight: 700;
        }

        .highlight-text {
            color: #D4AF37;
            font-weight: 800;
        }

        .app-cta-button {
            display: inline-block;
            background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
            color: #000;
            padding: 18px 45px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 800;
            font-family: 'Montserrat', sans-serif;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-decoration: none;
            position: relative;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 12px 35px rgba(212, 175, 55, 0.3);
            margin: 30px 0;
        }

        .app-cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.6s;
        }

        .app-cta-button:hover::before {
            left: 100%;
        }

        .app-cta-button:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 18px 50px rgba(212, 175, 55, 0.5);
        }

        /* App Features List */
        .app-features-list {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-top: 35px;
        }

        .app-feature-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 0;
            font-size: 15px;
            font-family: 'Montserrat', sans-serif;
            color: #555;
            font-weight: 500;
        }

        .feature-check {
            width: 24px;
            height: 24px;
            color: #D4AF37;
            flex-shrink: 0;
        }

        /* Responsive */
        @media (max-width: 968px) {
            .app-section {
                padding: 70px 25px;
            }

            .app-container {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .app-visual {
                order: 2;
            }

            .app-content {
                order: 1;
            }

            .app-title {
                font-size: 40px;
                letter-spacing: 1.5px;
            }

            .app-description {
                font-size: 15px;
            }

            .app-cta-button {
                width: 100%;
                text-align: center;
                padding: 16px 35px;
                font-size: 12px;
            }

            .app-image-wrapper {
                max-width: 100%;
            }

            .app-feature-item {
                font-size: 14px;
            }
        }

        /* Scroll Indicator */
        .scroll-indicator {
            position: absolute;
            bottom: 80px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 3;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 12px;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            animation: scrollBounce 2s ease-in-out infinite;
        }

        .scroll-indicator:hover {
            transform: translateX(-50%) translateY(5px);
        }

        .scroll-text {
            font-size: 11px;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 700;
            font-family: 'Montserrat', sans-serif;
            letter-spacing: 2px;
            text-transform: uppercase;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
            transition: all 0.3s ease;
        }

        .scroll-indicator:hover .scroll-text {
            color: #D4AF37;
        }

        .scroll-mouse {
            width: 26px;
            height: 42px;
            border: 2px solid rgba(255, 255, 255, 0.5);
            border-radius: 20px;
            position: relative;
            transition: all 0.3s ease;
        }

        .scroll-indicator:hover .scroll-mouse {
            border-color: #D4AF37;
        }

        .scroll-wheel {
            width: 4px;
            height: 8px;
            background: linear-gradient(135deg, #D4AF37, #F4D03F);
            border-radius: 4px;
            position: absolute;
            top: 8px;
            left: 50%;
            transform: translateX(-50%);
            animation: scrollWheel 2s ease-in-out infinite;
        }

        .scroll-arrows {
            display: flex;
            flex-direction: column;
            gap: -6px;
        }

        .scroll-arrow {
            width: 12px;
            height: 12px;
            border-right: 2px solid rgba(212, 175, 55, 0.6);
            border-bottom: 2px solid rgba(212, 175, 55, 0.6);
            transform: rotate(45deg);
            animation: arrowMove 2s ease-in-out infinite;
        }

        .scroll-arrow:nth-child(2) {
            animation-delay: 0.2s;
            opacity: 0.6;
        }

        .scroll-arrow:nth-child(3) {
            animation-delay: 0.4s;
            opacity: 0.3;
        }

        @keyframes scrollBounce {

            0%,
            100% {
                transform: translateX(-50%) translateY(0);
            }

            50% {
                transform: translateX(-50%) translateY(-10px);
            }
        }

        @keyframes scrollWheel {
            0% {
                opacity: 1;
                top: 8px;
            }

            50% {
                opacity: 0.5;
                top: 20px;
            }

            100% {
                opacity: 0;
                top: 26px;
            }
        }

        @keyframes arrowMove {

            0%,
            100% {
                opacity: 0;
                transform: rotate(45deg) translateY(-10px);
            }

            50% {
                opacity: 1;
                transform: rotate(45deg) translateY(0);
            }
        }

        /* Responsive - Mobile */
        @media (max-width: 968px) {
            .scroll-indicator {
                bottom: 90px;
            }

            .scroll-text {
                font-size: 10px;
            }
        }


        /* Partners Section */
        .partners-section {
            padding: 100px 0;
            background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
            position: relative;
            overflow: hidden;
        }

        .partners-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 200px;
            height: 1px;
            background: linear-gradient(90deg, transparent, #D4AF37, transparent);
            opacity: 0.5;
        }

        .partners-container {
            max-width: 100%;
            margin: 0 auto;
            padding: 0 60px;
        }

        .partners-header {
            text-align: center;
            margin-bottom: 70px;
        }

        .section-subtitle {
            font-size: 11px;
            color: #D4AF37;
            font-weight: 800;
            font-family: 'Montserrat', sans-serif;
            letter-spacing: 4px;
            text-transform: uppercase;
            margin-bottom: 15px;
            display: inline-block;
        }

        .partners-title {
            font-size: 54px;
            font-weight: 400;
            font-family: 'Bebas Neue', 'Oswald', sans-serif;
            color: #1a1a1a;
            line-height: 1.1;
            margin-bottom: 20px;
            letter-spacing: 2px;
        }

        .gold {
            background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientShift 3s ease infinite;
        }

        @keyframes gradientShift {

            0%,
            100% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }
        }

        .partners-description {
            font-size: 17px;
            line-height: 1.6;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
            font-weight: 400;
        }

        /* Carousel Wrapper */
        .partners-carousel-wrapper {
            position: relative;
            width: 100%;
            overflow: hidden;
            margin: 50px 0 0 0;
            padding: 20px 0;
        }

        .partners-carousel-track {
            display: flex;
            gap: 50px;
            animation: scroll 30s linear infinite;
            width: fit-content;
            padding-left: 0;
        }

        /* Pause animation on hover */
        .partners-carousel-wrapper:hover .partners-carousel-track {
            animation-play-state: paused;
        }

        @keyframes scroll {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        /* Partner Logo Card */
        .partner-logo-card {
            flex-shrink: 0;
            width: 320px;
            height: 180px;
            background: #ffffff;
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 35px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(212, 175, 55, 0.1);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .partner-logo-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
            transition: left 0.6s;
        }

        .partner-logo-card:hover::before {
            left: 100%;
        }

        .partner-logo-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 35px rgba(212, 175, 55, 0.2);
            border-color: rgba(212, 175, 55, 0.3);
        }

        .partner-logo {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
            transition: all 0.4s ease;
        }

        .partner-logo-card:hover .partner-logo {
            transform: scale(1.05);
        }

        /* Trust Badge */
        .partners-trust-badge {
            text-align: center;
            margin-top: 60px;
            padding: 25px;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(244, 208, 63, 0.05) 100%);
            border-radius: 15px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .trust-text {
            font-size: 15px;
            color: #555;
            font-weight: 600;
            font-family: 'Montserrat', sans-serif;
            letter-spacing: 0.5px;
        }

        .trust-highlight {
            color: #D4AF37;
            font-weight: 800;
        }

        /* Responsive */
        @media (max-width: 968px) {
            .partners-section {
                padding: 70px 0;
            }

            .partners-container {
                padding: 0 25px;
            }

            .partners-title {
                font-size: 40px;
            }

            .partners-description {
                font-size: 15px;
            }

            .partner-logo-card {
                width: 220px;
                height: 140px;
            }

            .partners-carousel-track {
                gap: 25px;
            }
        }

        @media (max-width: 480px) {
            .partner-logo-card {
                width: 180px;
                height: 120px;
                padding: 20px;
            }
        }

        /* ========================================
           HERO GALLERY SECTION - FULL SCREEN
        ======================================== */
        .hero-gallery-section {
            position: relative;
            width: 100%;
            min-height: 100vh;
            background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
            overflow: hidden;
            display: flex;
            align-items: center;
            padding: 0;
        }

        /* Background Pattern */
        .gallery-bg-pattern {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0.03;

            background-size: 60px 60px;
            background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
            z-index: 0;
        }

        /* Container wrapper */
        .gallery-wrapper {
            position: relative;
            width: 100%;
            z-index: 2;
        }

        /* Header */
        .gallery-header {
            text-align: center;
            padding: 80px 40px 60px;
            position: relative;
            z-index: 3;
        }

        .gallery-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(212, 175, 55, 0.15);
            border: 1px solid rgba(212, 175, 55, 0.3);
            backdrop-filter: blur(20px);
            padding: 10px 24px;
            border-radius: 50px;
            margin-bottom: 25px;
            animation: fadeInDown 1s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .gallery-badge-text {
            font-size: 11px;
            font-weight: 800;
            font-family: 'Montserrat', sans-serif;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: #D4AF37;
        }

        .gallery-main-title {
            font-size: 72px;
            font-weight: 400;
            font-family: 'Bebas Neue', 'Oswald', sans-serif;
            line-height: 1;
            color: color;
            margin-bottom: 25px;
            letter-spacing: 3px;
            animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both;
        }

        .gallery-highlight {
            background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 50%, #FFD700 100%);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientShift 4s ease infinite;
            filter: drop-shadow(0 0 40px rgba(212, 175, 55, 0.9));
            display: inline-block;
        }

        @keyframes gradientShift {

            0%,
            100% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .gallery-description {
            font-size: 18px;
            line-height: 1.7;
            color: black;
            max-width: 700px;
            margin: 0 auto 50px;
            font-weight: 400;
            animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both;
        }

        /* Main Carousel Container */
        .main-carousel-container {
            position: relative;
            width: 100%;
            padding: 40px 0 80px;
        }

        /* Carousel Track - 3D Perspective */
        .carousel-3d-wrapper {
            position: relative;
            width: 100%;
            height: 600px;
            perspective: 2000px;
            perspective-origin: center;
        }

        .carousel-3d-track {
            position: relative;
            width: 100%;
            height: 100%;
            transform-style: preserve-3d;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Individual Slide */
        .carousel-3d-slide {
            position: absolute;
            width: 700px;
            height: 500px;
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
        }

        .slide-image-container {
            position: relative;
            width: 100%;
            height: 100%;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
            border: 3px solid rgba(212, 175, 55, 0.2);
            transition: all 0.5s ease;
        }

        .carousel-3d-slide.active .slide-image-container {
            border-color: rgba(212, 175, 55, 0.6);
            box-shadow: 0 40px 100px rgba(212, 175, 55, 0.4);
        }

        .slide-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }

        .carousel-3d-slide.active .slide-img {
            transform: scale(1.05);
        }

        /* Slide Overlay */
        .slide-overlay-content {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
            padding: 40px;
            transform: translateY(20px);
            opacity: 0;
            transition: all 0.5s ease;
        }

        .carousel-3d-slide.active .slide-overlay-content {
            transform: translateY(0);
            opacity: 1;
        }

        .slide-category {
            display: inline-block;
            background: linear-gradient(135deg, #D4AF37, #F4D03F);
            color: #000;
            padding: 8px 18px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 800;
            font-family: 'Montserrat', sans-serif;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            margin-bottom: 15px;
        }

        .slide-title {
            font-size: 36px;
            font-weight: 400;
            font-family: 'Bebas Neue', 'Oswald', sans-serif;
            color: #ffffff;
            letter-spacing: 2px;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
            margin-bottom: 10px;
        }

        .slide-info {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            font-weight: 500;
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .slide-info-item {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .slide-info-item svg {
            width: 16px;
            height: 16px;
            stroke: #D4AF37;
        }

        /* Positioning for 3D carousel effect */
        .carousel-3d-slide {
            z-index: 0;
            opacity: 0.4;
            transform: scale(0.7) translateX(0) rotateY(0deg);
        }

        .carousel-3d-slide.active {
            z-index: 10;
            opacity: 1;
            transform: scale(1) translateX(0) rotateY(0deg);
        }

        .carousel-3d-slide.prev {
            z-index: 5;
            opacity: 0.6;
            transform: scale(0.85) translateX(-450px) rotateY(25deg);
        }

        .carousel-3d-slide.next {
            z-index: 5;
            opacity: 0.6;
            transform: scale(0.85) translateX(450px) rotateY(-25deg);
        }

        .carousel-3d-slide.hidden-left {
            z-index: 1;
            opacity: 0;
            transform: scale(0.6) translateX(-900px) rotateY(35deg);
            pointer-events: none;
        }

        .carousel-3d-slide.hidden-right {
            z-index: 1;
            opacity: 0;
            transform: scale(0.6) translateX(900px) rotateY(-35deg);
            pointer-events: none;
        }

        /* Navigation Arrows */
        .carousel-nav-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 70px;
            height: 70px;
            background: rgba(0, 0, 0, 0.7);
            backdrop-filter: blur(10px);
            border: 2px solid rgba(212, 175, 55, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            z-index: 100;
            color: #D4AF37;
        }

        .carousel-nav-arrow:hover {
            background: linear-gradient(135deg, #D4AF37, #F4D03F);
            border-color: #D4AF37;
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
            color: #000;
        }

        .carousel-nav-arrow svg {
            width: 30px;
            height: 30px;
        }

        .arrow-left {
            left: 80px;
        }

        .arrow-right {
            right: 80px;
        }

        /* Progress Dots */
        .carousel-dots {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 50px;
        }

        .carousel-dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: rgba(212, 175, 55, 0.2);
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 2px solid transparent;
            position: relative;
        }

        .carousel-dot::before {
            content: '';
            position: absolute;
            inset: -5px;
            border-radius: 50%;
            border: 2px solid rgba(212, 175, 55, 0.3);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .carousel-dot:hover {
            background: rgba(212, 175, 55, 0.5);
            transform: scale(1.2);
        }

        .carousel-dot.active {
            background: linear-gradient(135deg, #D4AF37, #F4D03F);
            border-color: rgba(212, 175, 55, 0.4);
            transform: scale(1.4);
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
        }

        .carousel-dot.active::before {
            opacity: 1;
        }

        /* Counter */
        .gallery-counter {
            text-align: center;
            margin-top: 40px;
            font-size: 16px;
            color: rgba(255, 255, 255, 0.6);
            font-weight: 700;
            font-family: 'Montserrat', sans-serif;
            letter-spacing: 2px;
        }

        .counter-current {
            color: #D4AF37;
            font-size: 28px;
            font-family: 'Bebas Neue', sans-serif;
            margin: 0 8px;
        }

        /* CTA Button */
        .gallery-cta {
            text-align: center;
            margin-top: 60px;
            padding-bottom: 60px;
        }

        .view-all-btn {
            display: inline-flex;
            align-items: center;
            gap: 15px;
            background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
            color: #000;
            padding: 18px 45px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 800;
            font-family: 'Montserrat', sans-serif;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-decoration: none;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
            border: none;
            cursor: pointer;
        }

        .view-all-btn:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 25px 60px rgba(212, 175, 55, 0.5);
        }

        .btn-icon svg {
            width: 20px;
            height: 20px;
            transition: transform 0.3s ease;
        }

        .view-all-btn:hover .btn-icon svg {
            transform: translateX(5px);
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .carousel-3d-slide {
                width: 600px;
                height: 430px;
            }

            .carousel-3d-slide.prev {
                transform: scale(0.8) translateX(-350px) rotateY(25deg);
            }

            .carousel-3d-slide.next {
                transform: scale(0.8) translateX(350px) rotateY(-25deg);
            }

            .arrow-left {
                left: 40px;
            }

            .arrow-right {
                right: 40px;
            }
        }

        @media (max-width: 968px) {
            .gallery-main-title {
                font-size: 48px;
            }

            .gallery-description {
                font-size: 16px;
                padding: 0 20px;
            }

            .carousel-3d-wrapper {
                height: 500px;
            }

            .carousel-3d-slide {
                width: 90%;
                max-width: 450px;
                height: 350px;
            }

            .carousel-3d-slide.prev,
            .carousel-3d-slide.next {
                opacity: 0;
                pointer-events: none;
            }

            .carousel-nav-arrow {
                width: 55px;
                height: 55px;
            }

            .carousel-nav-arrow svg {
                width: 24px;
                height: 24px;
            }

            .arrow-left {
                left: 20px;
            }

            .arrow-right {
                right: 20px;
            }

            .slide-title {
                font-size: 28px;
            }

            .slide-overlay-content {
                padding: 25px;
            }
        }

        @media (max-width: 480px) {
            .gallery-header {
                padding: 60px 20px 40px;
            }

            .gallery-main-title {
                font-size: 36px;
            }

            .carousel-3d-slide {
                height: 300px;
            }

            .view-all-btn {
                padding: 16px 35px;
                font-size: 12px;
            }
        }

        /* Keyboard navigation hint */
        .keyboard-hint {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 12px;
            color: rgba(255, 255, 255, 0.4);
            font-weight: 600;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .key-icon {
            background: rgba(255, 255, 255, 0.1);
            padding: 6px 12px;
            border-radius: 6px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            font-family: 'Courier New', monospace;
            font-size: 13px;
        }

        /* ========================================
   NEW ABOUT MW SECTION - PREMIUM DESIGN
======================================== */
        .newaboutmw-section {
            position: relative;
            padding: 120px 60px;
            background: linear-gradient(180deg, #ffffff 0%, #f8f8f8 50%, #ffffff 100%);
            overflow: hidden;
        }

        .newaboutmw-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 300px;
            height: 1px;
            background: linear-gradient(90deg, transparent, #D4AF37, transparent);
            opacity: 0.4;
        }

        .newaboutmw-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 100px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        /* ========== LEFT SIDE - VISUAL ========== */
        .newaboutmw-visual {
            position: relative;
            height: 700px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Animated Background Circles */
        .newaboutmw-bg-animation {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
        }

        .animated-circle {
            position: absolute;
            border-radius: 50%;
            border: 1px solid rgba(212, 175, 55, 0.15);
            animation: pulseRotate 20s linear infinite;
        }

        .circle-1 {
            width: 500px;
            height: 500px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .circle-2 {
            width: 350px;
            height: 350px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation-delay: -7s;
        }

        .circle-3 {
            width: 200px;
            height: 200px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation-delay: -14s;
        }

        @keyframes pulseRotate {

            0%,
            100% {
                transform: translate(-50%, -50%) scale(1) rotate(0deg);
                opacity: 0.3;
            }

            50% {
                transform: translate(-50%, -50%) scale(1.05) rotate(180deg);
                opacity: 0.6;
            }
        }

        /* Logo Showcase - CENTRALIZADO */
        .newaboutmw-logo-showcase {
            position: relative;
            z-index: 3;
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .logo-main-text {
            font-size: 180px;
            font-weight: 400;
            font-family: 'Bebas Neue', 'Oswald', sans-serif;
            background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 50%, #FFD700 100%);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 15px;
            line-height: 0.9;
            animation: gradientShift 4s ease infinite, logoFloat 6s ease-in-out infinite;
            filter: drop-shadow(0 20px 60px rgba(212, 175, 55, 0.4));
        }

        .logo-subtitle {
            font-size: 36px;
            font-weight: 700;
            font-family: 'Montserrat', sans-serif;
            letter-spacing: 12px;
            color: #1a1a1a;
            margin-top: -10px;
            animation: fadeInUp 1s ease 0.3s both;
        }

        .logo-tagline {
            font-size: 14px;
            font-weight: 600;
            font-family: 'Montserrat', sans-serif;
            letter-spacing: 4px;
            color: #999;
            margin-top: 15px;
            animation: fadeInUp 1s ease 0.5s both;
        }

        @keyframes logoFloat {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-20px);
            }
        }

        /* Decorative Elements */
        .newaboutmw-decoration {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
            opacity: 0.3;
        }

        .deco-line {
            position: absolute;
            background: linear-gradient(90deg, transparent, #D4AF37, transparent);
            height: 2px;
        }

        .line-1 {
            width: 150px;
            top: 15%;
            left: 10%;
            transform: rotate(-30deg);
            animation: lineGlow 4s ease-in-out infinite;
        }

        .line-2 {
            width: 100px;
            bottom: 20%;
            right: 15%;
            transform: rotate(30deg);
            animation: lineGlow 4s ease-in-out infinite 2s;
        }

        @keyframes lineGlow {

            0%,
            100% {
                opacity: 0.2;
            }

            50% {
                opacity: 0.8;
            }
        }

        .deco-dot {
            position: absolute;
            width: 8px;
            height: 8px;
            background: #D4AF37;
            border-radius: 50%;
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
            animation: dotPulse 3s ease-in-out infinite;
        }

        .dot-1 {
            top: 20%;
            right: 20%;
        }

        .dot-2 {
            bottom: 30%;
            left: 15%;
            animation-delay: 1s;
        }

        .dot-3 {
            top: 60%;
            right: 10%;
            animation-delay: 2s;
        }

        @keyframes dotPulse {

            0%,
            100% {
                transform: scale(1);
                opacity: 0.5;
            }

            50% {
                transform: scale(1.5);
                opacity: 1;
            }
        }

        /* ========== RIGHT SIDE - CONTENT ========== */
        .newaboutmw-content {
            color: #1a1a1a;
        }

        /* Premium Badge */
        .newaboutmw-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(244, 208, 63, 0.05));
            border: 2px solid rgba(212, 175, 55, 0.3);
            border-radius: 50px;
            padding: 12px 28px;
            margin-bottom: 30px;
            animation: fadeInDown 1s ease both;
        }

        .badge-icon {
            width: 20px;
            height: 20px;
            stroke: #D4AF37;
        }

        .newaboutmw-badge span {
            font-size: 12px;
            font-weight: 800;
            font-family: 'Montserrat', sans-serif;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #D4AF37;
        }

        /* Title */
        .newaboutmw-title {
            font-size: 56px;
            font-weight: 400;
            font-family: 'Bebas Neue', 'Oswald', sans-serif;
            line-height: 1.1;
            margin-bottom: 35px;
            letter-spacing: 2px;
            animation: fadeInUp 1s ease 0.2s both;
        }

        .gold-gradient {
            background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientShift 3s ease infinite;
            display: inline-block;
        }

        /* Description */
        .newaboutmw-description {
            margin-bottom: 45px;
            animation: fadeInUp 1s ease 0.4s both;
        }

        .lead-text {
            font-size: 20px;
            line-height: 1.7;
            color: #1a1a1a;
            margin-bottom: 20px;
            font-weight: 500;
        }

        .newaboutmw-description p {
            font-size: 16px;
            line-height: 1.8;
            color: #555;
            margin-bottom: 18px;
        }

        .newaboutmw-description strong {
            color: #1a1a1a;
            font-weight: 700;
        }

        /* Pillars Grid */
        .newaboutmw-pillars {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-bottom: 45px;
            animation: fadeInUp 1s ease 0.6s both;
        }

        .pillar-card {
            background: #ffffff;
            border: 1.5px solid rgba(212, 175, 55, 0.15);
            border-radius: 16px;
            padding: 28px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .pillar-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.05), transparent);
            transition: left 0.6s;
        }

        .pillar-card:hover::before {
            left: 100%;
        }

        .pillar-card:hover {
            transform: translateY(-8px);
            border-color: rgba(212, 175, 55, 0.4);
            box-shadow: 0 20px 50px rgba(212, 175, 55, 0.15);
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.03), transparent);
        }

        .pillar-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(244, 208, 63, 0.05));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 18px;
            transition: all 0.4s ease;
        }

        .pillar-card:hover .pillar-icon {
            background: linear-gradient(135deg, #D4AF37, #F4D03F);
            transform: scale(1.1) rotate(5deg);
        }

        .pillar-icon svg {
            width: 26px;
            height: 26px;
            stroke: #D4AF37;
            transition: all 0.4s ease;
        }

        .pillar-card:hover .pillar-icon svg {
            stroke: #000;
        }

        .pillar-title {
            font-size: 18px;
            font-weight: 800;
            font-family: 'Montserrat', sans-serif;
            color: #1a1a1a;
            margin-bottom: 8px;
            letter-spacing: 0.5px;
        }

        .pillar-desc {
            font-size: 14px;
            line-height: 1.6;
            color: #666;
            font-weight: 500;
        }

        /* CTA Section */
        .newaboutmw-cta {
            display: flex;
            align-items: center;
            gap: 25px;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease 0.8s both;
        }

        .newaboutmw-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
            color: #000;
            padding: 18px 40px;
            border-radius: 50px;
            font-size: 15px;
            font-weight: 800;
            font-family: 'Montserrat', sans-serif;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-decoration: none;
            position: relative;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
        }

        .newaboutmw-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.6s;
        }

        .newaboutmw-btn:hover::before {
            left: 100%;
        }

        .newaboutmw-btn:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 20px 55px rgba(212, 175, 55, 0.5);
        }

        .btn-arrow {
            width: 20px;
            height: 20px;
            transition: transform 0.3s ease;
        }

        .newaboutmw-btn:hover .btn-arrow {
            transform: translateX(5px);
        }

        .cta-note {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 13px;
            color: #999;
            font-weight: 600;
        }

        .cta-note svg {
            width: 18px;
            height: 18px;
            stroke: #D4AF37;
        }

        /* Background Pattern */
        .newaboutmw-pattern {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            opacity: 0.5;
            z-index: 0;
        }

        .newaboutmw-pattern svg {
            width: 100%;
            display: block;
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .newaboutmw-container {
                gap: 60px;
            }

            .logo-main-text {
                font-size: 140px;
            }

            .newaboutmw-visual {
                height: 600px;
            }
        }

        @media (max-width: 968px) {
            .newaboutmw-section {
                padding: 80px 25px;
            }

            .newaboutmw-container {
                grid-template-columns: 1fr;
                gap: 60px;
            }

            .newaboutmw-visual {
                height: 500px;
                order: 2;
            }

            .newaboutmw-content {
                order: 1;
            }

            .logo-main-text {
                font-size: 100px;
                letter-spacing: 10px;
            }

            .logo-subtitle {
                font-size: 24px;
                letter-spacing: 8px;
            }

            .newaboutmw-title {
                font-size: 42px;
            }

            .lead-text {
                font-size: 18px;
            }

            .newaboutmw-pillars {
                grid-template-columns: 1fr;
            }

            .newaboutmw-cta {
                flex-direction: column;
                align-items: flex-start;
            }

            .newaboutmw-btn {
                width: 100%;
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .logo-main-text {
                font-size: 80px;
                letter-spacing: 8px;
            }

            .newaboutmw-title {
                font-size: 36px;
            }

            .pillar-card {
                padding: 22px;
            }
        }

        /* ========================================
   PLANS SECTION - PREMIUM DESIGN
======================================== */
        .plans-section {
            position: relative;
            padding: 120px 60px;
            background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
            overflow: hidden;
        }

        .plans-container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        /* ========== HEADER ========== */
        .plans-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .plans-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(212, 175, 55, 0.15);
            border: 1px solid rgba(212, 175, 55, 0.3);
            backdrop-filter: blur(20px);
            padding: 12px 28px;
            border-radius: 50px;
            margin-bottom: 30px;
            animation: fadeInDown 1s ease both;
        }

        .plans-badge svg {
            width: 20px;
            height: 20px;
            stroke: #D4AF37;
        }

        .plans-badge span {
            font-size: 12px;
            font-weight: 800;
            font-family: 'Montserrat', sans-serif;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #D4AF37;
        }

        .plans-title {
            font-size: 64px;
            font-weight: 400;
            font-family: 'Bebas Neue', 'Oswald', sans-serif;
            line-height: 1.1;
            color: #ffffff;
            margin-bottom: 25px;
            letter-spacing: 2px;
            animation: fadeInUp 1s ease 0.2s both;
        }

        .plans-description {
            font-size: 18px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.7);
            max-width: 700px;
            margin: 0 auto;
            animation: fadeInUp 1s ease 0.4s both;
        }

        /* ========== PLANS GRID ========== */
        .plans-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 35px;
            margin-bottom: 80px;
        }

        .plan-card {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(20px);
            border: 1.5px solid rgba(212, 175, 55, 0.15);
            border-radius: 24px;
            padding: 40px 35px;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            animation: fadeInUp 1s ease 0.6s both;
        }

        .plan-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.05), transparent);
            transition: left 0.6s;
        }

        .plan-card:hover::before {
            left: 100%;
        }

        .plan-card:hover {
            transform: translateY(-12px);
            border-color: rgba(212, 175, 55, 0.4);
            box-shadow: 0 30px 80px rgba(212, 175, 55, 0.2);
            background: rgba(255, 255, 255, 0.05);
        }

        /* Featured Plan (Pro) */
        .plan-card.featured {
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(244, 208, 63, 0.05));
            border: 2px solid rgba(212, 175, 55, 0.4);
            transform: scale(1.05);
            box-shadow: 0 25px 70px rgba(212, 175, 55, 0.25);
        }

        .plan-card.featured:hover {
            transform: scale(1.05) translateY(-12px);
        }

        .popular-badge {
            position: absolute;
            top: -15px;
            right: 30px;
            background: linear-gradient(135deg, #D4AF37, #F4D03F);
            color: #000;
            padding: 8px 20px;
            border-radius: 20px;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 11px;
            font-weight: 800;
            font-family: 'Montserrat', sans-serif;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
        }

        .popular-badge svg {
            width: 14px;
            height: 14px;
            stroke: #000;
            fill: #000;
        }

        /* Plan Header */
        .plan-header {
            text-align: center;
            margin-bottom: 35px;
        }

        .plan-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(244, 208, 63, 0.05));
            border: 2px solid rgba(212, 175, 55, 0.3);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            transition: all 0.4s ease;
        }

        .plan-card:hover .plan-icon {
            background: linear-gradient(135deg, #D4AF37, #F4D03F);
            border-color: #D4AF37;
            transform: rotate(5deg) scale(1.1);
        }

        .plan-icon svg {
            width: 34px;
            height: 34px;
            stroke: #D4AF37;
            transition: all 0.4s ease;
        }

        .plan-card:hover .plan-icon svg {
            stroke: #000;
        }

        .plan-name {
            font-size: 32px;
            font-weight: 400;
            font-family: 'Bebas Neue', 'Oswald', sans-serif;
            color: #ffffff;
            margin-bottom: 8px;
            letter-spacing: 2px;
        }

        .plan-subtitle {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            font-weight: 500;
        }

        /* Plan Price */
        .plan-price {
            text-align: center;
            margin-bottom: 40px;
            padding-bottom: 35px;
            border-bottom: 1px solid rgba(212, 175, 55, 0.15);
            display: flex;
            align-items: baseline;
            justify-content: center;
            gap: 5px;
        }

        .currency {
            font-size: 24px;
            font-weight: 700;
            font-family: 'Montserrat', sans-serif;
            color: #D4AF37;
        }

        .amount {
            font-size: 64px;
            font-weight: 400;
            font-family: 'Bebas Neue', 'Oswald', sans-serif;
            background: linear-gradient(135deg, #D4AF37, #F4D03F);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 2px;
            line-height: 1;
        }

        .period {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.5);
            font-weight: 600;
        }

        /* Plan Features */
        .plan-features {
            margin-bottom: 35px;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 15px;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 500;
            line-height: 1.5;
        }

        .check-icon {
            width: 20px;
            height: 20px;
            stroke: #D4AF37;
            flex-shrink: 0;
            margin-top: 2px;
        }

        /* Plan CTA */
        .plan-cta {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            width: 100%;
            background: rgba(212, 175, 55, 0.1);
            border: 2px solid rgba(212, 175, 55, 0.3);
            color: #D4AF37;
            padding: 16px 30px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 800;
            font-family: 'Montserrat', sans-serif;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            margin-bottom: 20px;
        }

        .plan-cta svg {
            width: 18px;
            height: 18px;
            transition: transform 0.3s ease;
        }

        .plan-cta:hover {
            background: linear-gradient(135deg, #D4AF37, #F4D03F);
            border-color: #D4AF37;
            color: #000;
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(212, 175, 55, 0.4);
        }

        .plan-cta:hover svg {
            stroke: #000;
            transform: translateX(5px);
        }

        .plan-card.featured .plan-cta {
            background: linear-gradient(135deg, #D4AF37, #F4D03F);
            border-color: #D4AF37;
            color: #000;
            box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
        }

        .plan-card.featured .plan-cta svg {
            stroke: #000;
        }

        .plan-card.featured .plan-cta:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
        }

        .plan-note {
            text-align: center;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.5);
            font-weight: 600;
            font-style: italic;
        }

        /* ========== EXTRA INFO ========== */
        .plans-extra {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 60px;
        }

        .extra-card {
            display: flex;
            align-items: flex-start;
            gap: 20px;
            padding: 30px;
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(212, 175, 55, 0.1);
            border-radius: 16px;
            transition: all 0.4s ease;
        }

        .extra-card:hover {
            background: rgba(255, 255, 255, 0.05);
            border-color: rgba(212, 175, 55, 0.3);
            transform: translateY(-5px);
        }

        .extra-card svg {
            width: 32px;
            height: 32px;
            stroke: #D4AF37;
            flex-shrink: 0;
        }

        .extra-content h4 {
            font-size: 17px;
            font-weight: 800;
            font-family: 'Montserrat', sans-serif;
            color: #ffffff;
            margin-bottom: 6px;
        }

        .extra-content p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.5;
        }

        /* ========== FAQ TRIGGER ========== */
        .plans-faq-trigger {
            text-align: center;
            padding: 40px;
            background: rgba(212, 175, 55, 0.05);
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 20px;
        }

        .plans-faq-trigger p {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 20px;
            font-weight: 500;
        }

        .faq-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: #D4AF37;
            font-size: 16px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .faq-link svg {
            width: 18px;
            height: 18px;
            transition: transform 0.3s ease;
        }

        .faq-link:hover {
            gap: 15px;
        }

        .faq-link:hover svg {
            transform: translateX(5px);
        }

        /* ========== BACKGROUND DECORATION ========== */
        .plans-bg-decoration {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
            z-index: 0;
        }

        .bg-circle {
            position: absolute;
            border-radius: 50%;
            border: 1px solid rgba(212, 175, 55, 0.08);
            animation: floatCircle 20s ease-in-out infinite;
        }

        .circle-1 {
            width: 600px;
            height: 600px;
            top: -200px;
            right: -200px;
        }

        .circle-2 {
            width: 400px;
            height: 400px;
            bottom: -100px;
            left: -100px;
            animation-delay: -7s;
        }

        .circle-3 {
            width: 300px;
            height: 300px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation-delay: -14s;
        }

        @keyframes floatCircle {

            0%,
            100% {
                transform: translate(0, 0) scale(1);
                opacity: 0.3;
            }

            50% {
                transform: translate(-30px, -30px) scale(1.1);
                opacity: 0.5;
            }
        }

        /* ========== ANIMATIONS ========== */
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1200px) {
            .plans-grid {
                gap: 25px;
            }

            .plan-card {
                padding: 35px 30px;
            }
        }

        @media (max-width: 968px) {
            .plans-section {
                padding: 80px 25px;
            }

            .plans-title {
                font-size: 48px;
            }

            .plans-description {
                font-size: 16px;
            }

            .plans-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .plan-card.featured {
                transform: scale(1);
            }

            .plan-card.featured:hover {
                transform: translateY(-12px);
            }

            .plans-extra {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }

        @media (max-width: 480px) {
            .plans-title {
                font-size: 36px;
            }

            .plan-card {
                padding: 30px 25px;
            }

            .amount {
                font-size: 52px;
            }

            .popular-badge {
                top: -12px;
                right: 20px;
                padding: 6px 16px;
                font-size: 10px;
            }
        }

        .spancolor {
            color: black;
        }

        /* ========================================
   CONTACT SECTION - PREMIUM WHITE DESIGN
======================================== */
        .contact-section {
            position: relative;
            padding: 120px 60px;
            background: linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%);
            overflow: hidden;
        }

        .contact-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 300px;
            height: 1px;
            background: linear-gradient(90deg, transparent, #D4AF37, transparent);
            opacity: 0.4;
        }

        .contact-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 80px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        /* ========== LEFT SIDE - INFO ========== */
        .contact-info-side {
            position: relative;
        }

        .contact-info-content {
            position: relative;
            z-index: 2;
        }

        .contact-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(212, 175, 55, 0.1);
            border: 1px solid rgba(212, 175, 55, 0.3);
            backdrop-filter: blur(20px);
            padding: 12px 28px;
            border-radius: 50px;
            margin-bottom: 30px;
            animation: fadeInDown 1s ease both;
        }

        .contact-badge svg {
            width: 20px;
            height: 20px;
            stroke: #D4AF37;
        }

        .contact-badge span {
            font-size: 12px;
            font-weight: 800;
            font-family: 'Montserrat', sans-serif;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #D4AF37;
        }

        .contact-title {
            font-size: 56px;
            font-weight: 400;
            font-family: 'Bebas Neue', 'Oswald', sans-serif;
            line-height: 1.1;
            color: #1a1a1a;
            margin-bottom: 30px;
            letter-spacing: 2px;
            animation: fadeInUp 1s ease 0.2s both;
        }

        .contact-description {
            font-size: 17px;
            line-height: 1.8;
            color: #555;
            margin-bottom: 50px;
            animation: fadeInUp 1s ease 0.4s both;
        }

        /* Contact Cards */
        .contact-cards {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-bottom: 50px;
            animation: fadeInUp 1s ease 0.6s both;
        }

        .contact-card {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 25px;
            background: #ffffff;
            border: 1.5px solid rgba(212, 175, 55, 0.15);
            border-radius: 16px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
        }

        .contact-card:hover {
            background: rgba(212, 175, 55, 0.03);
            border-color: rgba(212, 175, 55, 0.4);
            transform: translateX(10px);
            box-shadow: 0 10px 35px rgba(212, 175, 55, 0.15);
        }

        .contact-card-icon {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(244, 208, 63, 0.05));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            transition: all 0.4s ease;
        }

        .contact-card:hover .contact-card-icon {
            background: linear-gradient(135deg, #D4AF37, #F4D03F);
            transform: scale(1.1) rotate(5deg);
        }

        .contact-card-icon svg {
            width: 24px;
            height: 24px;
            stroke: #D4AF37;
            transition: all 0.4s ease;
        }

        .contact-card:hover .contact-card-icon svg {
            stroke: #000;
        }

        .contact-card-content h4 {
            font-size: 16px;
            font-weight: 800;
            font-family: 'Montserrat', sans-serif;
            color: #1a1a1a;
            margin-bottom: 5px;
            letter-spacing: 0.5px;
        }

        .contact-card-content p {
            font-size: 15px;
            color: #666;
            font-weight: 500;
        }

        /* Social Links */
        .contact-social {
            animation: fadeInUp 1s ease 0.8s both;
        }

        .social-title {
            font-size: 14px;
            font-weight: 700;
            font-family: 'Montserrat', sans-serif;
            color: #666;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 20px;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-link {
            width: 50px;
            height: 50px;
            background: #ffffff;
            border: 1.5px solid rgba(212, 175, 55, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
        }

        .social-link svg {
            width: 22px;
            height: 22px;
            fill: #D4AF37;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background: linear-gradient(135deg, #D4AF37, #F4D03F);
            border-color: #D4AF37;
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
        }

        .social-link:hover svg {
            fill: #000;
        }

        /* Decoration */
        .contact-decoration {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 0;
        }

        .deco-circle {
            position: absolute;
            border-radius: 50%;
            border: 1px solid rgba(212, 175, 55, 0.08);
        }

        .deco-circle.circle-1 {
            width: 300px;
            height: 300px;
            top: -50px;
            left: -100px;
            animation: float 8s ease-in-out infinite;
        }

        .deco-circle.circle-2 {
            width: 200px;
            height: 200px;
            bottom: -50px;
            left: 50px;
            animation: float 10s ease-in-out infinite reverse;
        }

        .deco-line {
            position: absolute;
            background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.15), transparent);
            height: 2px;
        }

        .deco-line.line-1 {
            width: 150px;
            top: 30%;
            left: -50px;
            transform: rotate(-30deg);
            animation: lineGlow 4s ease-in-out infinite;
        }

        .deco-line.line-2 {
            width: 100px;
            bottom: 25%;
            left: 20px;
            transform: rotate(30deg);
            animation: lineGlow 4s ease-in-out infinite 2s;
        }

        /* ========== RIGHT SIDE - FORM ========== */
        .contact-form-side {
            position: relative;
        }

        .contact-form-wrapper {
            background: #ffffff;
            border: 1.5px solid rgba(212, 175, 55, 0.15);
            border-radius: 24px;
            padding: 50px 45px;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
            animation: fadeInUp 1s ease 0.4s both;
            position: relative;
            overflow: hidden;
        }

        .contact-form-wrapper::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #D4AF37, #F4D03F, #D4AF37);
            background-size: 200% 100%;
            animation: gradientMove 3s ease infinite;
        }

        @keyframes gradientMove {

            0%,
            100% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }
        }

        .form-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .form-header h3 {
            font-size: 32px;
            font-weight: 400;
            font-family: 'Bebas Neue', 'Oswald', sans-serif;
            color: #1a1a1a;
            margin-bottom: 10px;
            letter-spacing: 2px;
        }

        .form-header p {
            font-size: 14px;
            color: #666;
            font-weight: 500;
        }

        /* Form Elements */
        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .form-label {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            font-weight: 700;
            font-family: 'Montserrat', sans-serif;
            color: #1a1a1a;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .form-label svg {
            width: 18px;
            height: 18px;
            stroke: #D4AF37;
        }

        .form-input,
        .form-select,
        .form-textarea {
            width: 100%;
            padding: 16px 20px;
            background: #f8f8f8;
            border: 1.5px solid rgba(212, 175, 55, 0.2);
            border-radius: 12px;
            font-size: 15px;
            font-family: 'Montserrat', sans-serif;
            color: #1a1a1a;
            transition: all 0.3s ease;
            font-weight: 500;
        }

        .form-input::placeholder,
        .form-textarea::placeholder {
            color: #999;
        }

        .form-input:focus,
        .form-select:focus,
        .form-textarea:focus {
            outline: none;
            border-color: #D4AF37;
            background: #ffffff;
            box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
        }

        .form-select {
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23D4AF37' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 20px center;
            padding-right: 50px;
        }

        .form-select option {
            background: #ffffff;
            color: #1a1a1a;
        }

        .form-textarea {
            resize: vertical;
            min-height: 140px;
        }

        /* Submit Button */
        .form-submit-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            width: 100%;
            background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
            color: #ffffff;
            padding: 18px 40px;
            border: none;
            border-radius: 50px;
            font-size: 15px;
            font-weight: 800;
            font-family: 'Montserrat', sans-serif;
            text-transform: uppercase;
            letter-spacing: 2px;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
            margin-top: 10px;
        }

        .form-submit-btn:hover {
            transform: translateY(-4px) scale(1.02);
            box-shadow: 0 15px 45px rgba(37, 211, 102, 0.5);
        }

        .form-submit-btn:active {
            transform: translateY(-2px) scale(1);
        }

        .btn-icon {
            width: 24px;
            height: 24px;
            transition: transform 0.3s ease;
        }

        .form-submit-btn:hover .btn-icon {
            transform: scale(1.2) rotate(10deg);
        }

        /* Privacy Note */
        .form-privacy {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            font-size: 12px;
            color: #999;
            font-weight: 600;
            margin-top: 15px;
        }

        .form-privacy svg {
            width: 16px;
            height: 16px;
            stroke: #D4AF37;
        }

        /* ========== BACKGROUND ANIMATION ========== */
        .contact-bg-animation {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
            z-index: 0;
        }

        .animated-blob {
            position: absolute;
            border-radius: 50%;
            filter: blur(100px);
            opacity: 0.08;
            animation: blobFloat 20s ease-in-out infinite;
        }

        .blob-1 {
            width: 500px;
            height: 500px;
            background: linear-gradient(135deg, #D4AF37, #F4D03F);
            top: -200px;
            right: -200px;
        }

        .blob-2 {
            width: 400px;
            height: 400px;
            background: linear-gradient(135deg, #25D366, #128C7E);
            bottom: -150px;
            left: -150px;
            animation-delay: -7s;
        }

        .blob-3 {
            width: 350px;
            height: 350px;
            background: linear-gradient(135deg, #D4AF37, #F4D03F);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation-delay: -14s;
        }

        @keyframes blobFloat {

            0%,
            100% {
                transform: translate(0, 0) scale(1);
                opacity: 0.08;
            }

            33% {
                transform: translate(30px, -30px) scale(1.1);
                opacity: 0.12;
            }

            66% {
                transform: translate(-30px, 30px) scale(0.9);
                opacity: 0.06;
            }
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1200px) {
            .contact-container {
                gap: 60px;
            }

            .contact-form-wrapper {
                padding: 40px 35px;
            }
        }

        @media (max-width: 968px) {
            .contact-section {
                padding: 80px 25px;
            }

            .contact-container {
                grid-template-columns: 1fr;
                gap: 60px;
            }

            .contact-title {
                font-size: 42px;
            }

            .contact-description {
                font-size: 16px;
            }

            .contact-cards {
                margin-bottom: 40px;
            }

            .contact-form-wrapper {
                padding: 35px 30px;
            }

            .form-header h3 {
                font-size: 28px;
            }
        }

        @media (max-width: 480px) {
            .contact-title {
                font-size: 36px;
            }

            .contact-badge {
                padding: 10px 20px;
            }

            .contact-card {
                padding: 20px;
            }

            .social-link {
                width: 45px;
                height: 45px;
            }

            .form-submit-btn {
                padding: 16px 30px;
                font-size: 13px;
            }

            .contact-form-wrapper {
                padding: 30px 25px;
            }
        }

        /* ========================================
   NEW PLANS SECTION - SINGLE PLAN DESIGN
======================================== */
        .newplans-section {
            position: relative;
            padding: 120px 60px;
            background: linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%);
            overflow: hidden;
        }

        .newplans-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 300px;
            height: 1px;
            background: linear-gradient(90deg, transparent, #D4AF37, transparent);
            opacity: 0.4;
        }

        .newplans-container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        /* ========== HEADER ========== */
        .newplans-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .newplans-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: rgba(212, 175, 55, 0.1);
            border: 1px solid rgba(212, 175, 55, 0.3);
            backdrop-filter: blur(20px);
            padding: 12px 28px;
            border-radius: 50px;
            margin-bottom: 30px;
            animation: fadeInDown 1s ease both;
        }

        .newplans-badge svg {
            width: 20px;
            height: 20px;
            stroke: #D4AF37;
        }

        .newplans-badge span {
            font-size: 12px;
            font-weight: 800;
            font-family: 'Montserrat', sans-serif;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: #D4AF37;
        }

        .newplans-title {
            font-size: 64px;
            font-weight: 400;
            font-family: 'Bebas Neue', 'Oswald', sans-serif;
            line-height: 1.1;
            color: #1a1a1a;
            margin-bottom: 25px;
            letter-spacing: 2px;
            animation: fadeInUp 1s ease 0.2s both;
        }

        .newplans-description {
            font-size: 18px;
            line-height: 1.7;
            color: #555;
            max-width: 800px;
            margin: 0 auto;
            animation: fadeInUp 1s ease 0.4s both;
        }

        /* ========== MAIN PLAN CARD ========== */
        .newplan-card-wrapper {
            max-width: 1200px;
            margin: 0 auto 80px;
            animation: fadeInUp 1s ease 0.6s both;
        }

        .newplan-card {
            background: #ffffff;
            border: 2px solid rgba(212, 175, 55, 0.2);
            border-radius: 30px;
            padding: 60px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
            position: relative;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .newplan-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: linear-gradient(90deg, #D4AF37, #F4D03F, #D4AF37);
            background-size: 200% 100%;
            animation: gradientMove 3s ease infinite;
        }

        @keyframes gradientMove {

            0%,
            100% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }
        }

        .newplan-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 80px rgba(212, 175, 55, 0.15);
            border-color: rgba(212, 175, 55, 0.4);
        }

        /* Plan Header */
        .newplan-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .newplan-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(244, 208, 63, 0.05));
            border: 2px solid rgba(212, 175, 55, 0.3);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            transition: all 0.4s ease;
        }

        .newplan-card:hover .newplan-icon {
            background: linear-gradient(135deg, #D4AF37, #F4D03F);
            border-color: #D4AF37;
            transform: scale(1.1) rotate(5deg);
        }

        .newplan-icon svg {
            width: 40px;
            height: 40px;
            stroke: #D4AF37;
            transition: all 0.4s ease;
        }

        .newplan-card:hover .newplan-icon svg {
            stroke: #000;
        }

        .newplan-name {
            font-size: 38px;
            font-weight: 400;
            font-family: 'Bebas Neue', 'Oswald', sans-serif;
            color: #1a1a1a;
            margin-bottom: 10px;
            letter-spacing: 2px;
        }

        .newplan-subtitle {
            font-size: 16px;
            color: #666;
            font-weight: 600;
            font-family: 'Montserrat', sans-serif;
        }

        /* Plan Price */
        .newplan-price {
            text-align: center;
            padding: 35px;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(244, 208, 63, 0.05));
            border-radius: 20px;
            margin-bottom: 50px;
        }

        .price-badge {
            display: flex;
            align-items: baseline;
            justify-content: center;
            gap: 5px;
            margin-bottom: 15px;
        }

        .currency {
            font-size: 28px;
            font-weight: 700;
            font-family: 'Montserrat', sans-serif;
            color: #D4AF37;
        }

        .amount {
            font-size: 72px;
            font-weight: 400;
            font-family: 'Bebas Neue', 'Oswald', sans-serif;
            background: linear-gradient(135deg, #D4AF37, #F4D03F);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 2px;
            line-height: 1;
        }

        .period {
            font-size: 20px;
            color: #666;
            font-weight: 600;
            font-family: 'Montserrat', sans-serif;
        }

        .price-note {
            font-size: 15px;
            color: #555;
            font-weight: 600;
            font-style: italic;
        }

        /* Plan Content Grid */
        .newplan-content-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            margin-bottom: 50px;
            padding-bottom: 50px;
            border-bottom: 1px solid rgba(212, 175, 55, 0.15);
        }

        /* Features Column */
        .newplan-features {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .features-title {
            font-size: 22px;
            font-weight: 800;
            font-family: 'Montserrat', sans-serif;
            color: #1a1a1a;
            margin-bottom: 15px;
            letter-spacing: 0.5px;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            padding: 15px;
            background: rgba(212, 175, 55, 0.03);
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .feature-item:hover {
            background: rgba(212, 175, 55, 0.08);
            transform: translateX(5px);
        }

        .check-icon {
            width: 24px;
            height: 24px;
            stroke: #D4AF37;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .feature-item span {
            font-size: 15px;
            color: #555;
            font-weight: 500;
            line-height: 1.6;
        }

        /* Schedule Column */
        .newplan-schedule {
            background: rgba(212, 175, 55, 0.05);
            padding: 30px;
            border-radius: 16px;
            border: 1px solid rgba(212, 175, 55, 0.15);
        }

        .schedule-title {
            font-size: 22px;
            font-weight: 800;
            font-family: 'Montserrat', sans-serif;
            color: #1a1a1a;
            margin-bottom: 15px;
            letter-spacing: 0.5px;
        }

        .schedule-location {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            color: #D4AF37;
            font-weight: 700;
            margin-bottom: 25px;
            padding: 12px;
            background: rgba(212, 175, 55, 0.1);
            border-radius: 10px;
        }

        .schedule-location svg {
            width: 18px;
            height: 18px;
            flex-shrink: 0;
        }

        .schedule-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-bottom: 25px;
        }

        .schedule-item {
            padding: 20px;
            background: #ffffff;
            border-radius: 12px;
            border: 1px solid rgba(212, 175, 55, 0.1);
            transition: all 0.3s ease;
        }

        .schedule-item:hover {
            border-color: rgba(212, 175, 55, 0.3);
            box-shadow: 0 5px 20px rgba(212, 175, 55, 0.1);
        }

        .schedule-item.special {
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(244, 208, 63, 0.05));
            border-color: rgba(212, 175, 55, 0.3);
        }

        .schedule-day {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }

        .schedule-day svg {
            width: 18px;
            height: 18px;
            stroke: #D4AF37;
        }

        .schedule-day strong {
            font-size: 16px;
            font-weight: 800;
            font-family: 'Montserrat', sans-serif;
            color: #1a1a1a;
        }

        .schedule-item p {
            font-size: 15px;
            color: #555;
            font-weight: 600;
            margin: 5px 0;
        }

        .schedule-detail {
            font-size: 13px !important;
            color: #777 !important;
            font-weight: 500 !important;
            margin-left: 28px;
        }

        .schedule-highlight {
            color: #D4AF37 !important;
            font-weight: 700 !important;
            font-style: italic;
        }

        /* Online Badge */
        .schedule-online {
            margin-top: 20px;
        }

        .online-badge {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 15px;
            background: linear-gradient(135deg, rgba(37, 211, 102, 0.1), rgba(18, 140, 126, 0.05));
            border: 1px solid rgba(37, 211, 102, 0.3);
            border-radius: 12px;
        }

        .online-badge svg {
            width: 24px;
            height: 24px;
            stroke: #25D366;
            flex-shrink: 0;
        }

        .online-badge span {
            font-size: 14px;
            color: #128C7E;
            font-weight: 700;
        }

        /* CTA Section */
        .newplan-cta {
            text-align: center;
        }

        .newplan-btn {
            display: inline-flex;
            align-items: center;
            gap: 15px;
            background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
            color: #000;
            padding: 20px 50px;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 800;
            font-family: 'Montserrat', sans-serif;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-decoration: none;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
            margin-bottom: 20px;
        }

        .newplan-btn:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 20px 55px rgba(212, 175, 55, 0.5);
        }

        .newplan-btn svg {
            width: 22px;
            height: 22px;
            transition: transform 0.3s ease;
        }

        .newplan-btn:hover svg {
            transform: translateX(5px);
        }

        .cta-note {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            font-size: 14px;
            color: #666;
            font-weight: 600;
        }

        .cta-note svg {
            width: 18px;
            height: 18px;
            stroke: #D4AF37;
        }

        /* ========== BENEFITS SECTION ========== */
        .newplans-benefits {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .benefit-card {
            text-align: center;
            padding: 40px 30px;
            background: #ffffff;
            border: 1px solid rgba(212, 175, 55, 0.15);
            border-radius: 20px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .benefit-card:hover {
            transform: translateY(-10px);
            border-color: rgba(212, 175, 55, 0.4);
            box-shadow: 0 20px 50px rgba(212, 175, 55, 0.15);
        }

        .benefit-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(244, 208, 63, 0.05));
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            transition: all 0.4s ease;
        }

        .benefit-card:hover .benefit-icon {
            background: linear-gradient(135deg, #D4AF37, #F4D03F);
            transform: scale(1.1) rotate(5deg);
        }

        .benefit-icon svg {
            width: 34px;
            height: 34px;
            stroke: #D4AF37;
            transition: all 0.4s ease;
        }

        .benefit-card:hover .benefit-icon svg {
            stroke: #000;
        }

        .benefit-card h4 {
            font-size: 20px;
            font-weight: 800;
            font-family: 'Montserrat', sans-serif;
            color: #1a1a1a;
            margin-bottom: 12px;
            letter-spacing: 0.5px;
        }

        .benefit-card p {
            font-size: 15px;
            color: #666;
            line-height: 1.6;
        }

        /* ========== BACKGROUND DECORATION ========== */
        .newplans-bg-decoration {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
            z-index: 0;
        }

        .newplans-bg-decoration .bg-circle {
            position: absolute;
            border-radius: 50%;
            border: 1px solid rgba(212, 175, 55, 0.08);
            animation: floatCircle 20s ease-in-out infinite;
        }

        .newplans-bg-decoration .circle-1 {
            width: 600px;
            height: 600px;
            top: -200px;
            right: -200px;
        }

        .newplans-bg-decoration .circle-2 {
            width: 400px;
            height: 400px;
            bottom: -100px;
            left: -100px;
            animation-delay: -7s;
        }

        @keyframes floatCircle {

            0%,
            100% {
                transform: translate(0, 0) scale(1);
                opacity: 0.3;
            }

            50% {
                transform: translate(-30px, -30px) scale(1.1);
                opacity: 0.5;
            }
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1200px) {
            .newplan-content-grid {
                gap: 40px;
            }
        }

        @media (max-width: 968px) {
            .newplans-section {
                padding: 80px 25px;
            }

            .newplans-title {
                font-size: 48px;
            }

            .newplans-description {
                font-size: 16px;
            }

            .newplan-card {
                padding: 40px 30px;
            }

            .newplan-content-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .newplans-benefits {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .amount {
                font-size: 56px;
            }
        }

        @media (max-width: 480px) {
            .newplans-title {
                font-size: 36px;
            }

            .newplan-card {
                padding: 30px 20px;
            }

            .newplan-name {
                font-size: 28px;
            }

            .newplan-btn {
                width: 100%;
                justify-content: center;
                padding: 18px 30px;
                font-size: 14px;
            }
        }

        /* ========================================
   REVOLUTIONARY PLANS SECTION - ULTRA CLEAN PREMIUM
======================================== */
   .revolutionplans-section {
        background: #ffffff !important;
    }
        /* ========== ULTRA PREMIUM HEADER ========== */
        .revolutionplans-header {
            text-align: center;
            margin-bottom: 100px;
            position: relative;
            z-index: 10;
        }
    /* FORÇA todos os textos para preto */
    .revolutionplans-title,
    .revolutionplans-description,
    .revolutionplan-name,
    .revolutionplan-subtitle,
    .features-header h4,
    .feature-content h5,
    .feature-content p,
    .schedule-header h4,
    .schedule-content strong,
    .schedule-details span,
    .revolutionplan-benefit h4,
    .revolutionplan-benefit p,
    .pricing-label {
        color: #1a1a1a !important;
    }
    
        .revolutionplans-badge {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(244, 208, 63, 0.05));
            border: 2px solid rgba(212, 175, 55, 0.3);
            backdrop-filter: blur(20px);
            padding: 14px 32px;
            border-radius: 50px;
            margin-bottom: 40px;
            position: relative;
            overflow: hidden;
            animation: badgeFloat 3s ease-in-out infinite;
        }

        @keyframes badgeFloat {

            0%,
            100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-5px);
            }
        }

        .badge-glow {
            position: absolute;
            inset: -3px;
            background: linear-gradient(45deg, #D4AF37, #F4D03F, #D4AF37);
            border-radius: 50px;
            opacity: 0;
            filter: blur(15px);
            animation: glowPulse 3s ease-in-out infinite;
            z-index: -1;
        }

        @keyframes glowPulse {

            0%,
            100% {
                opacity: 0;
            }

            50% {
                opacity: 0.4;
            }
        }

        .badge-shine {
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            animation: shine 3s ease-in-out infinite;
        }

        @keyframes shine {
            0% {
                left: -100%;
            }

            100% {
                left: 200%;
            }
        }

        .revolutionplans-badge svg {
            width: 22px;
            height: 22px;
            stroke: #D4AF37;
            filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.4));
        }

        .revolutionplans-badge span {
            font-size: 13px;
            font-weight: 900;
            font-family: 'Montserrat', sans-serif;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            background: linear-gradient(135deg, #D4AF37, #F4D03F);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .revolutionplans-title {
            font-size: 72px;
            font-weight: 400;
            font-family: 'Bebas Neue', 'Oswald', sans-serif;
            line-height: 1.1;
            color: #1a1a1a;
            margin-bottom: 35px;
            letter-spacing: 3px;
        }

        .revolutionplans-highlight {
            background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 50%, #FFD700 100%);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientShift 4s ease infinite;
            display: inline-block;
        }

        @keyframes gradientShift {

            0%,
            100% {
                background-position: 0% 50%;
            }

            50% {
                background-position: 100% 50%;
            }
        }

        .revolutionplans-description {
            font-size: 20px;
            line-height: 1.8;
            color: #555;
            max-width: 900px;
            margin: 0 auto;
            font-weight: 400;
        }

        /* ========== NO CARD - DIRECT CONTENT ========== */
        .revolutionplan-wrapper {
            max-width: 1400px;
            margin: 0 auto 120px;
            position: relative;
            z-index: 2;
        }

        /* ========== PREMIUM HEADER ========== */
        .revolutionplan-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .revolutionplan-icon-wrapper {
            position: relative;
            width: 140px;
            height: 140px;
            margin: 0 auto 40px;
        }

        .icon-orbit {
            position: absolute;
            inset: 0;
            border: 2px solid transparent;
            border-radius: 50%;
            border-top-color: rgba(212, 175, 55, 0.3);
            border-right-color: rgba(212, 175, 55, 0.1);
            animation: rotate 8s linear infinite;
        }

        .orbit-1 {
            animation-duration: 8s;
        }

        .orbit-2 {
            inset: 10px;
            animation-duration: 12s;
            animation-direction: reverse;
        }

        .orbit-3 {
            inset: 20px;
            animation-duration: 16s;
        }

        @keyframes rotate {
            100% {
                transform: rotate(360deg);
            }
        }

        .revolutionplan-icon {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #D4AF37, #F4D03F);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow:
                0 20px 60px rgba(212, 175, 55, 0.3),
                inset 0 2px 0 rgba(255, 255, 255, 0.3);
            transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .revolutionplan-icon:hover {
            transform: scale(1.1) rotate(15deg);
            box-shadow:
                0 30px 80px rgba(212, 175, 55, 0.5),
                inset 0 2px 0 rgba(255, 255, 255, 0.5);
        }

        .revolutionplan-icon svg {
            width: 60px;
            height: 60px;
            stroke: #000;
            stroke-width: 2.5;
        }

        .revolutionplan-name {
            font-size: 48px;
            font-weight: 400;
            font-family: 'Bebas Neue', 'Oswald', sans-serif;
            color: #1a1a1a;
            margin-bottom: 30px;
            letter-spacing: 3px;
        }

        .revolutionplan-badges {
            display: flex;
            justify-content: center;
            gap: 20px;
        }

        .mode-badge {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 28px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 800;
            font-family: 'Montserrat', sans-serif;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
        }

        .mode-badge svg {
            width: 20px;
            height: 20px;
        }

        .mode-badge.presencial {
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(244, 208, 63, 0.05));
            border: 2px solid rgba(212, 175, 55, 0.3);
            color: #D4AF37;
        }

        .mode-badge.online {
            background: linear-gradient(135deg, rgba(37, 211, 102, 0.15), rgba(18, 140, 126, 0.05));
            border: 2px solid rgba(37, 211, 102, 0.3);
            color: #128C7E;
        }

        .mode-badge:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
        }

        /* ========== PRICING DISPLAY ========== */
        .revolutionplan-pricing {
            text-align: center;
            margin-bottom: 80px;
        }

        .pricing-wrapper {
            max-width: 600px;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
            border-radius: 30px;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(244, 208, 63, 0.03));
            border: 2px solid rgba(212, 175, 55, 0.2);
            padding: 60px 50px;
            box-shadow: 0 15px 50px rgba(212, 175, 55, 0.1);
        }

        .pricing-shine {
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(from 0deg,
                    transparent 0deg,
                    rgba(255, 255, 255, 0.15) 90deg,
                    transparent 180deg);
            animation: priceRotate 6s linear infinite;
        }

        @keyframes priceRotate {
            100% {
                transform: rotate(360deg);
            }
        }

        .pricing-content {
            position: relative;
            z-index: 1;
        }

        .pricing-label {
            font-size: 15px;
            font-weight: 800;
            font-family: 'Montserrat', sans-serif;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            color: #999;
            margin-bottom: 25px;
            display: block;
        }

        .pricing-value {
            display: flex;
            align-items: baseline;
            justify-content: center;
            gap: 10px;
            margin-bottom: 25px;
        }

        .currency {
            font-size: 36px;
            font-weight: 900;
            font-family: 'Montserrat', sans-serif;
            background: linear-gradient(135deg, #D4AF37, #F4D03F);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .amount {
            font-size: 84px;
            font-weight: 400;
            font-family: 'Bebas Neue', 'Oswald', sans-serif;
            background: linear-gradient(135deg, #D4AF37, #F4D03F, #FFD700);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 4px;
            line-height: 1;
            animation: gradientShift 4s ease infinite;
        }

        .pricing-note {
            font-size: 14px;
            color: #666;
            font-weight: 600;
            font-style: italic;
        }

        /* ========== DIVIDER LINE ========== */
        .content-divider {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            margin: 80px 0;
        }

        .divider-line {
            flex: 1;
            height: 2px;
            background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
            max-width: 300px;
        }

        .divider-dot {
            width: 12px;
            height: 12px;
            background: linear-gradient(135deg, #D4AF37, #F4D03F);
            border-radius: 50%;
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
            animation: dotPulse 2s ease-in-out infinite;
        }

        @keyframes dotPulse {

            0%,
            100% {
                transform: scale(1);
                opacity: 1;
            }

            50% {
                transform: scale(1.3);
                opacity: 0.7;
            }
        }

        /* ========== SPLIT CONTENT GRID ========== */
        .revolutionplan-content-split {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            margin-bottom: 80px;
        }

        /* ========== FEATURES SECTION ========== */
        .revolutionplan-features {}

        .features-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 40px;
        }

        .header-line {
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, #D4AF37, #F4D03F);
            border-radius: 3px;
        }

        .features-header svg {
            width: 30px;
            height: 30px;
            stroke: #D4AF37;
        }

        .features-header h4 {
            font-size: 28px;
            font-weight: 800;
            font-family: 'Montserrat', sans-serif;
            color: #1a1a1a;
            letter-spacing: 1px;
        }

        .features-list {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .revolutionplan-feature {
            display: flex;
            align-items: flex-start;
            gap: 25px;
            padding: 30px;
            background: #ffffff;
            border: 2px solid rgba(212, 175, 55, 0.15);
            border-radius: 20px;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
        }

        .feature-glow {
            position: absolute;
            inset: -50%;
            background: radial-gradient(circle, rgba(212, 175, 55, 0.1), transparent 70%);
            opacity: 0;
            transition: opacity 0.5s ease;
            pointer-events: none;
        }

        .revolutionplan-feature:hover .feature-glow {
            opacity: 1;
        }

        .revolutionplan-feature:hover {
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), #ffffff);
            border-color: rgba(212, 175, 55, 0.4);
            transform: translateX(15px);
            box-shadow: 0 15px 50px rgba(212, 175, 55, 0.15);
        }

        .feature-number {
            font-size: 48px;
            font-weight: 400;
            font-family: 'Bebas Neue', 'Oswald', sans-serif;
            background: linear-gradient(135deg, #D4AF37, #F4D03F);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
            min-width: 60px;
            letter-spacing: 2px;
        }

        .feature-content h5 {
            font-size: 20px;
            font-weight: 800;
            font-family: 'Montserrat', sans-serif;
            color: #1a1a1a;
            margin-bottom: 10px;
            letter-spacing: 0.5px;
        }

        .feature-content p {
            font-size: 15px;
            color: #666;
            line-height: 1.7;
            font-weight: 500;
        }

        /* ========== SCHEDULE SECTION ========== */
        .revolutionplan-schedule {
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(244, 208, 63, 0.02));
            border: 2px solid rgba(212, 175, 55, 0.15);
            border-radius: 25px;
            padding: 45px;
            box-shadow: 0 10px 40px rgba(212, 175, 55, 0.08);
        }

        .schedule-header {
            margin-bottom: 40px;
        }

        .schedule-header h4 {
            font-size: 28px;
            font-weight: 800;
            font-family: 'Montserrat', sans-serif;
            color: #1a1a1a;
            margin-bottom: 15px;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .schedule-header h4 svg {
            width: 30px;
            height: 30px;
            stroke: #D4AF37;
        }

        .schedule-header h4::before {
            content: '';
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, #D4AF37, #F4D03F);
            border-radius: 3px;
        }

        .schedule-location {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 15px;
            color: #D4AF37;
            font-weight: 700;
            margin-left: 75px;
        }

        .schedule-location svg {
            width: 18px;
            height: 18px;
        }

        .schedule-timeline {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-bottom: 30px;
        }

        .revolutionplan-schedule-card {
            display: flex;
            gap: 25px;
            align-items: flex-start;
            padding: 25px;
            background: #ffffff;
            border: 2px solid rgba(212, 175, 55, 0.1);
            border-radius: 18px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
        }

        .revolutionplan-schedule-card:hover {
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.03), #ffffff);
            border-color: rgba(212, 175, 55, 0.3);
            transform: translateX(10px);
            box-shadow: 0 10px 35px rgba(212, 175, 55, 0.12);
        }

        .revolutionplan-schedule-card.special {
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(244, 208, 63, 0.03));
            border: 2px solid rgba(212, 175, 55, 0.3);
        }

        .schedule-icon {
            width: 50px;
            height: 50px;
            min-width: 50px;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(244, 208, 63, 0.05));
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s ease;
        }

        .revolutionplan-schedule-card:hover .schedule-icon {
            background: linear-gradient(135deg, #D4AF37, #F4D03F);
            transform: scale(1.1) rotate(10deg);
        }

        .schedule-icon svg {
            width: 26px;
            height: 26px;
            stroke: #D4AF37;
            transition: stroke 0.4s ease;
        }

        .revolutionplan-schedule-card:hover .schedule-icon svg {
            stroke: #000;
        }

        .schedule-icon.special {
            background: linear-gradient(135deg, #D4AF37, #F4D03F);
        }

        .schedule-icon.special svg {
            stroke: #000;
        }

        .schedule-content {
            flex: 1;
        }

        .schedule-content strong {
            display: block;
            font-size: 19px;
            font-weight: 800;
            font-family: 'Montserrat', sans-serif;
            color: #1a1a1a;
            margin-bottom: 12px;
        }

        .schedule-time {
            display: inline-block;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(244, 208, 63, 0.05));
            border: 1px solid rgba(212, 175, 55, 0.3);
            padding: 8px 18px;
            border-radius: 20px;
            font-size: 15px;
            font-weight: 700;
            color: #D4AF37;
            margin-bottom: 12px;
        }

        .schedule-details {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .schedule-details span {
            font-size: 14px;
            color: #666;
            font-weight: 600;
        }

        .special-note {
            font-size: 16px;
            color: #555;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .special-highlight {
            display: flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(244, 208, 63, 0.1));
            padding: 12px 18px;
            border-radius: 15px;
            font-size: 14px;
            font-weight: 700;
            color: #D4AF37;
            font-style: italic;
        }

        .special-highlight svg {
            width: 18px;
            height: 18px;
        }

        .online-training-badge {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            padding: 20px;
            background: linear-gradient(135deg, rgba(37, 211, 102, 0.1), rgba(18, 140, 126, 0.03));
            border: 2px solid rgba(37, 211, 102, 0.2);
            border-radius: 20px;
            margin-top: 20px;
        }

        .online-training-badge svg {
            width: 26px;
            height: 26px;
            stroke: #25D366;
        }

        .online-training-badge span {
            font-size: 15px;
            font-weight: 700;
            color: #128C7E;
        }

        /* ========== CTA SECTION ========== */
        .revolutionplan-cta {
            text-align: center;
            padding-top: 40px;
            border-top: 2px solid rgba(212, 175, 55, 0.1);
        }

        .revolutionplan-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            position: relative;
            background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 100%);
            color: #000;
            padding: 26px 60px;
            border-radius: 50px;
            font-size: 18px;
            font-weight: 900;
            font-family: 'Montserrat', sans-serif;
            text-transform: uppercase;
            letter-spacing: 2.5px;
            text-decoration: none;
            overflow: hidden;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow:
                0 20px 50px rgba(212, 175, 55, 0.4),
                inset 0 2px 0 rgba(255, 255, 255, 0.3);
            margin-bottom: 35px;
        }

        .btn-bg-shine {
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(from 0deg,
                    transparent 0deg,
                    rgba(255, 255, 255, 0.4) 90deg,
                    transparent 180deg);
            animation: btnRotate 4s linear infinite;
        }

        @keyframes btnRotate {
            100% {
                transform: rotate(360deg);
            }
        }

        .revolutionplan-btn:hover {
            transform: translateY(-8px) scale(1.05);
            box-shadow:
                0 30px 70px rgba(212, 175, 55, 0.6),
                inset 0 2px 0 rgba(255, 255, 255, 0.5);
        }

        .btn-content {
            display: flex;
            align-items: center;
            gap: 15px;
            position: relative;
            z-index: 1;
        }

        .btn-content svg {
            width: 26px;
            height: 26px;
            transition: transform 0.3s ease;
        }

        .revolutionplan-btn:hover .btn-content svg {
            transform: translateX(10px);
        }

        .cta-trust-badges {
            display: flex;
            justify-content: center;
            gap: 50px;
            flex-wrap: wrap;
        }

        .trust-item {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 15px;
            color: #666;
            font-weight: 700;
        }

        .trust-item svg {
            width: 22px;
            height: 22px;
            stroke: #D4AF37;
        }

        /* ========== ULTRA PREMIUM BENEFITS ========== */
        .revolutionplans-benefits {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 50px;
        }

        .revolutionplan-benefit {
            text-align: center;
            padding: 50px 40px;
            background: #ffffff;
            border: 2px solid rgba(212, 175, 55, 0.15);
            border-radius: 25px;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
        }

        .revolutionplan-benefit:hover {
            transform: translateY(-15px);
            border-color: rgba(212, 175, 55, 0.4);
            box-shadow: 0 25px 70px rgba(212, 175, 55, 0.2);
        }

        .benefit-number {
            position: absolute;
            top: 25px;
            right: 30px;
            font-size: 80px;
            font-weight: 400;
            font-family: 'Bebas Neue', 'Oswald', sans-serif;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(244, 208, 63, 0.05));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
            letter-spacing: 3px;
        }

        .benefit-icon-wrapper {
            width: 90px;
            height: 90px;
            margin: 0 auto 30px;
            transition: all 0.5s ease;
        }

        .revolutionplan-benefit:hover .benefit-icon-wrapper {
            transform: scale(1.15) rotate(10deg);
        }

        .benefit-icon-wrapper svg {
            width: 100%;
            height: 100%;
            stroke: #D4AF37;
            transition: stroke 0.5s ease;
        }

        .revolutionplan-benefit:hover .benefit-icon-wrapper svg {
            stroke: #F4D03F;
        }

        .revolutionplan-benefit h4 {
            font-size: 24px;
            font-weight: 800;
            font-family: 'Montserrat', sans-serif;
            color: #1a1a1a;
            margin-bottom: 18px;
            letter-spacing: 0.5px;
        }

        .revolutionplan-benefit p {
            font-size: 16px;
            color: #666;
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .benefit-line {
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #D4AF37, #F4D03F);
            margin: 0 auto;
            border-radius: 4px;
            transition: width 0.5s ease;
        }

        .revolutionplan-benefit:hover .benefit-line {
            width: 120px;
        }

        /* ========== PREMIUM BACKGROUND EFFECTS ========== */
        .revolutionplans-bg-effects {
            position: absolute;
            inset: 0;
            pointer-events: none;
            overflow: hidden;
            z-index: 0;
        }

        .bg-gradient-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(150px);
            opacity: 0.12;
            animation: orbFloat 25s ease-in-out infinite;
        }

        .orb-1 {
            width: 900px;
            height: 900px;
            background: radial-gradient(circle, #D4AF37, transparent);
            top: -250px;
            right: -250px;
        }

        .orb-2 {
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, #F4D03F, transparent);
            bottom: -200px;
            left: -200px;
            animation-delay: -8s;
        }

        .orb-3 {
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, #25D366, transparent);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation-delay: -16s;
        }

        @keyframes orbFloat {

            0%,
            100% {
                transform: translate(0, 0);
                opacity: 0.12;
            }

            33% {
                transform: translate(60px, -60px);
                opacity: 0.18;
            }

            66% {
                transform: translate(-60px, 60px);
                opacity: 0.08;
            }
        }

        .bg-mesh {
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(212, 175, 55, 0.02) 1px, transparent 1px),
                linear-gradient(90deg, rgba(212, 175, 55, 0.02) 1px, transparent 1px);
            background-size: 60px 60px;
            opacity: 0.5;
        }

        /* Floating Particles */
        .floating-particles {
            position: absolute;
            inset: 0;
        }

        .particle {
            position: absolute;
            width: 6px;
            height: 6px;
            background: linear-gradient(135deg, #D4AF37, #F4D03F);
            border-radius: 50%;
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
            animation: particleFloat 20s ease-in-out infinite;
        }

        .particle:nth-child(1) {
            top: 15%;
            left: 10%;
            animation-delay: 0s;
        }

        .particle:nth-child(2) {
            top: 70%;
            left: 85%;
            animation-delay: 4s;
        }

        .particle:nth-child(3) {
            top: 45%;
            right: 12%;
            animation-delay: 8s;
        }

        .particle:nth-child(4) {
            bottom: 25%;
            left: 75%;
            animation-delay: 12s;
        }

        .particle:nth-child(5) {
            top: 85%;
            left: 25%;
            animation-delay: 16s;
        }

        .particle:nth-child(6) {
            top: 30%;
            left: 60%;
            animation-delay: 20s;
        }

        @keyframes particleFloat {

            0%,
            100% {
                transform: translate(0, 0) scale(1);
                opacity: 0.3;
            }

            25% {
                transform: translate(40px, -50px) scale(1.5);
                opacity: 0.8;
            }

            50% {
                transform: translate(-30px, -80px) scale(0.8);
                opacity: 0.4;
            }

            75% {
                transform: translate(25px, -40px) scale(1.2);
                opacity: 0.6;
            }
        }

        /* ========== RESPONSIVE - MOBILE FIX ========== */
        @media (max-width: 968px) {
            .revolutionplans-section {
                padding: 80px 25px;
                background: #ffffff;
            }

            .revolutionplans-header {
                margin-bottom: 60px;
            }

            .revolutionplans-badge {
                padding: 12px 24px;
                margin-bottom: 25px;
            }

            .revolutionplans-badge svg {
                width: 20px;
                height: 20px;
            }

            .revolutionplans-badge span {
                font-size: 12px;
                letter-spacing: 2px;
            }

            .revolutionplans-title {
                font-size: 36px;
                margin-bottom: 20px;
                letter-spacing: 2px;
            }

            .revolutionplans-description {
                font-size: 16px;
                line-height: 1.7;
                padding: 0 10px;
            }

            /* Plan Header Mobile */
            .revolutionplan-header {
                margin-bottom: 50px;
            }

            .revolutionplan-icon-wrapper {
                width: 100px;
                height: 100px;
                margin-bottom: 30px;
            }

            .revolutionplan-icon svg {
                width: 50px;
                height: 50px;
            }

            .revolutionplan-name {
                font-size: 32px;
                margin-bottom: 20px;
                letter-spacing: 2px;
            }

            .revolutionplan-badges {
                flex-direction: column;
                gap: 15px;
            }

            .mode-badge {
                justify-content: center;
                padding: 14px 28px;
                font-size: 13px;
            }

            /* Pricing Mobile */
            .revolutionplan-pricing {
                margin-bottom: 50px;
            }

            .pricing-wrapper {
                padding: 40px 25px;
                border-radius: 20px;
            }

            .pricing-label {
                font-size: 13px;
                margin-bottom: 20px;
            }

            .pricing-value {
                gap: 8px;
                margin-bottom: 20px;
            }

            .currency {
                font-size: 28px;
            }

            .amount {
                font-size: 56px;
                letter-spacing: 2px;
            }

            .pricing-note {
                font-size: 13px;
            }

            /* Content Split - Stack on Mobile */
            .revolutionplan-content-split {
                grid-template-columns: 1fr;
                gap: 40px;
                margin-bottom: 50px;
            }

            /* Features Mobile */
            .features-header {
                gap: 12px;
                margin-bottom: 30px;
            }

            .features-header h4 {
                font-size: 22px;
            }

            .features-header svg {
                width: 24px;
                height: 24px;
            }

            .features-list {
                gap: 20px;
            }

            .revolutionplan-feature {
                gap: 20px;
                padding: 20px;
                border-radius: 16px;
            }

            .revolutionplan-feature:hover {
                transform: translateX(5px);
            }

            .feature-number {
                font-size: 36px;
                min-width: 50px;
            }

            .feature-content h5 {
                font-size: 17px;
                margin-bottom: 8px;
            }

            .feature-content p {
                font-size: 14px;
                line-height: 1.6;
            }

            /* Schedule Mobile */
            .revolutionplan-schedule {
                padding: 30px 20px;
                border-radius: 20px;
            }

            .schedule-header {
                margin-bottom: 30px;
            }

            .schedule-header h4 {
                font-size: 22px;
                flex-wrap: wrap;
                gap: 12px;
            }

            .schedule-header h4::before {
                width: 50px;
                height: 3px;
            }

            .schedule-header h4 svg {
                width: 24px;
                height: 24px;
            }

            .schedule-location {
                font-size: 14px;
                margin-left: 0;
                margin-top: 10px;
            }

            .schedule-location svg {
                width: 16px;
                height: 16px;
            }

            .schedule-timeline {
                gap: 15px;
                margin-bottom: 25px;
            }

            .revolutionplan-schedule-card {
                gap: 15px;
                padding: 20px;
                border-radius: 15px;
            }

            .revolutionplan-schedule-card:hover {
                transform: translateX(5px);
            }

            .schedule-icon {
                width: 45px;
                height: 45px;
                min-width: 45px;
                border-radius: 12px;
            }

            .schedule-icon svg {
                width: 24px;
                height: 24px;
            }

            .schedule-content strong {
                font-size: 16px;
                margin-bottom: 10px;
            }

            .schedule-time {
                padding: 6px 14px;
                border-radius: 15px;
                font-size: 13px;
                margin-bottom: 10px;
            }

            .schedule-details span {
                font-size: 13px;
            }

            .special-note {
                font-size: 15px;
            }

            .special-highlight {
                padding: 12px 16px;
                font-size: 13px;
            }

            .online-training-badge {
                padding: 15px;
                gap: 12px;
                border-radius: 15px;
            }

            .online-training-badge svg {
                width: 22px;
                height: 22px;
            }

            .online-training-badge span {
                font-size: 14px;
            }

            /* CTA Mobile */
            .revolutionplan-cta {
                padding-top: 30px;
            }

            .revolutionplan-btn {
                width: 100%;
                padding: 20px 35px;
                font-size: 15px;
                letter-spacing: 2px;
                margin-bottom: 25px;
            }

            .btn-content {
                gap: 12px;
            }

            .btn-content svg {
                width: 22px;
                height: 22px;
            }

            .cta-trust-badges {
                flex-direction: column;
                gap: 15px;
            }

            .trust-item {
                justify-content: center;
                font-size: 14px;
            }

            .trust-item svg {
                width: 20px;
                height: 20px;
            }

            /* Benefits Mobile */
            .revolutionplans-benefits {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .revolutionplan-benefit {
                padding: 35px 25px;
                border-radius: 20px;
            }

            .revolutionplan-benefit:hover {
                transform: translateY(-8px);
            }

            .benefit-number {
                font-size: 60px;
                top: 20px;
                right: 25px;
            }

            .benefit-icon-wrapper {
                width: 70px;
                height: 70px;
                margin-bottom: 20px;
            }

            .revolutionplan-benefit h4 {
                font-size: 20px;
                margin-bottom: 15px;
            }

            .revolutionplan-benefit p {
                font-size: 15px;
                line-height: 1.7;
                margin-bottom: 25px;
            }

            .benefit-line {
                width: 60px;
                height: 3px;
            }

            .revolutionplan-benefit:hover .benefit-line {
                width: 100px;
            }

            /* Background Effects - Simplified on Mobile */
            .revolutionplans-bg-effects {
                opacity: 0.3;
            }

            .bg-gradient-orb {
                filter: blur(80px);
                opacity: 0.1;
            }

            .bg-gradient-orb.orb-1 {
                width: 300px;
                height: 300px;
                top: -100px;
                right: -100px;
            }

            .bg-gradient-orb.orb-2 {
                width: 250px;
                height: 250px;
                bottom: -80px;
                left: -80px;
            }

            .bg-gradient-orb.orb-3 {
                display: none;
            }

            .bg-mesh {
                display: none;
            }

            .floating-particles {
                display: none;
            }

            /* Divider Mobile */
            .content-divider {
                margin: 50px 0;
                gap: 15px;
            }

            .divider-line {
                max-width: 100px;
            }

            .divider-dot {
                width: 10px;
                height: 10px;
            }
        }

        @media (max-width: 480px) {
            .revolutionplans-section {
                padding: 60px 20px;
            }

            .revolutionplans-title {
                font-size: 32px;
            }

            .revolutionplan-name {
                font-size: 28px;
            }

            .revolutionplan-icon-wrapper {
                width: 90px;
                height: 90px;
            }

            .amount {
                font-size: 48px;
            }

            .currency {
                font-size: 24px;
            }
        }

        /* ========== ULTRA PREMIUM BENEFITS ========== */
        .revolutionplans-benefits {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 50px;
        }

        .revolutionplan-benefit {
            text-align: center;
            padding: 50px 40px;
            background: #ffffff;
            border: 2px solid rgba(212, 175, 55, 0.15);
            border-radius: 25px;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
        }

        .revolutionplan-benefit:hover {
            transform: translateY(-15px);
            border-color: rgba(212, 175, 55, 0.4);
            box-shadow: 0 25px 70px rgba(212, 175, 55, 0.2);
        }

        .benefit-number {
            position: absolute;
            top: 25px;
            right: 30px;
            font-size: 80px;
            font-weight: 400;
            font-family: 'Bebas Neue', 'Oswald', sans-serif;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(244, 208, 63, 0.05));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
            letter-spacing: 3px;
        }

        .benefit-icon-wrapper {
            width: 90px;
            height: 90px;
            margin: 0 auto 30px;
            transition: all 0.5s ease;
        }

        .revolutionplan-benefit:hover .benefit-icon-wrapper {
            transform: scale(1.15) rotate(10deg);
        }

        .benefit-icon-wrapper svg {
            width: 100%;
            height: 100%;
            stroke: #D4AF37;
            transition: stroke 0.5s ease;
        }

        .revolutionplan-benefit:hover .benefit-icon-wrapper svg {
            stroke: #F4D03F;
        }

        .revolutionplan-benefit h4 {
            font-size: 24px;
            font-weight: 800;
            font-family: 'Montserrat', sans-serif;
            color: #1a1a1a;
            margin-bottom: 18px;
            letter-spacing: 0.5px;
        }

        .revolutionplan-benefit p {
            font-size: 16px;
            color: #666;
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .benefit-line {
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #D4AF37, #F4D03F);
            margin: 0 auto;
            border-radius: 4px;
            transition: width 0.5s ease;
        }

        .revolutionplan-benefit:hover .benefit-line {
            width: 120px;
        }

        /* ========== PREMIUM BACKGROUND EFFECTS ========== */
        .revolutionplans-bg-effects {
            position: absolute;
            inset: 0;
            pointer-events: none;
            overflow: hidden;
            z-index: 0;
        }

        .bg-gradient-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(150px);
            opacity: 0.12;
            animation: orbFloat 25s ease-in-out infinite;
        }

        .orb-1 {
            width: 900px;
            height: 900px;
            background: radial-gradient(circle, #D4AF37, transparent);
            top: -250px;
            right: -250px;
        }

        .orb-2 {
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, #F4D03F, transparent);
            bottom: -200px;
            left: -200px;
            animation-delay: -8s;
        }

        .orb-3 {
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, #25D366, transparent);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            animation-delay: -16s;
        }

        @keyframes orbFloat {

            0%,
            100% {
                transform: translate(0, 0);
                opacity: 0.12;
            }

            33% {
                transform: translate(60px, -60px);
                opacity: 0.18;
            }

            66% {
                transform: translate(-60px, 60px);
                opacity: 0.08;
            }
        }

        .bg-mesh {
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(212, 175, 55, 0.02) 1px, transparent 1px),
                linear-gradient(90deg, rgba(212, 175, 55, 0.02) 1px, transparent 1px);
            background-size: 60px 60px;
            opacity: 0.5;
        }

        /* Floating Particles */
        .floating-particles {
            position: absolute;
            inset: 0;
        }

        .particle {
            position: absolute;
            width: 6px;
            height: 6px;
            background: linear-gradient(135deg, #D4AF37, #F4D03F);
            border-radius: 50%;
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
            animation: particleFloat 20s ease-in-out infinite;
        }

        .particle:nth-child(1) {
            top: 15%;
            left: 10%;
            animation-delay: 0s;
        }

        .particle:nth-child(2) {
            top: 70%;
            left: 85%;
            animation-delay: 4s;
        }

        .particle:nth-child(3) {
            top: 45%;
            right: 12%;
            animation-delay: 8s;
        }

        .particle:nth-child(4) {
            bottom: 25%;
            left: 75%;
            animation-delay: 12s;
        }

        .particle:nth-child(5) {
            top: 85%;
            left: 25%;
            animation-delay: 16s;
        }

        .particle:nth-child(6) {
            top: 30%;
            left: 60%;
            animation-delay: 20s;
        }

        @keyframes particleFloat {

            0%,
            100% {
                transform: translate(0, 0) scale(1);
                opacity: 0.3;
            }

            25% {
                transform: translate(40px, -50px) scale(1.5);
                opacity: 0.8;
            }

            50% {
                transform: translate(-30px, -80px) scale(0.8);
                opacity: 0.4;
            }

            75% {
                transform: translate(25px, -40px) scale(1.2);
                opacity: 0.6;
            }
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1200px) {
            .revolutionplan-content-split {
                gap: 60px;
            }

            .revolutionplans-benefits {
                gap: 40px;
            }
        }

        @media (max-width: 968px) {
            .revolutionplans-section {
                padding: 100px 25px;
            }

            .revolutionplans-title {
                font-size: 52px;
            }

            .revolutionplans-description {
                font-size: 17px;
            }

            .revolutionplan-content-split {
                grid-template-columns: 1fr;
                gap: 60px;
            }

            .revolutionplans-benefits {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .amount {
                font-size: 68px;
            }

            .revolutionplan-badges {
                flex-direction: column;
                align-items: stretch;
            }

            .mode-badge {
                justify-content: center;
            }

            .revolutionplan-schedule {
                padding: 35px;
            }
        }

        @media (max-width: 480px) {
            .revolutionplans-title {
                font-size: 38px;
            }

            .revolutionplan-name {
                font-size: 36px;
            }

            .revolutionplan-btn {
                width: 100%;
                padding: 22px 35px;
                font-size: 15px;
            }

            .cta-trust-badges {
                flex-direction: column;
                gap: 25px;
            }

            .revolutionplan-icon-wrapper {
                width: 100px;
                height: 100px;
            }

            .pricing-wrapper {
                padding: 45px 30px;
            }

            .amount {
                font-size: 56px;
            }
        }

        /* ========================================
   FOOTER SECTION - PREMIUM DESIGN
======================================== */
        .footer-section {
            position: relative;
            padding: 80px 60px 30px;
            background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
            color: #ffffff;
            overflow: hidden;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        /* ========== TOP FOOTER ========== */
        .footer-top {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 60px;
            padding-bottom: 60px;
            border-bottom: 1px solid rgba(212, 175, 55, 0.15);
            margin-bottom: 50px;
        }

        .footer-column {}

        /* Brand Column */
        .footer-brand {}

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 20px;
        }

        .footer-logo .logo-text {
            font-size: 48px;
            font-weight: 400;
            font-family: 'Bebas Neue', 'Oswald', sans-serif;
            background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 50%, #FFD700 100%);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 4px;
            animation: gradientShift 4s ease infinite;
            filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.4));
        }

        .footer-logo .logo-subtitle {
            font-size: 14px;
            font-weight: 800;
            font-family: 'Montserrat', sans-serif;
            color: rgba(255, 255, 255, 0.7);
            letter-spacing: 3px;
            text-transform: uppercase;
            align-self: flex-end;
            margin-bottom: 8px;
        }

        .footer-tagline {
            font-size: 15px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.6);
            margin-bottom: 30px;
            font-weight: 400;
        }

        .footer-social {
            display: flex;
            gap: 12px;
        }

        .footer-social .social-link {
            width: 45px;
            height: 45px;
            background: rgba(212, 175, 55, 0.1);
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .footer-social .social-link svg {
            width: 20px;
            height: 20px;
            fill: #D4AF37;
            transition: all 0.3s ease;
        }

        .footer-social .social-link:hover {
            background: linear-gradient(135deg, #D4AF37, #F4D03F);
            border-color: #D4AF37;
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
        }

        .footer-social .social-link:hover svg {
            fill: #000;
        }

        /* Footer Titles */
        .footer-title {
            font-size: 18px;
            font-weight: 800;
            font-family: 'Montserrat', sans-serif;
            color: #ffffff;
            margin-bottom: 25px;
            letter-spacing: 1px;
            position: relative;
            display: inline-block;
        }

        .footer-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 3px;
            background: linear-gradient(90deg, #D4AF37, #F4D03F);
            border-radius: 3px;
        }

        /* Footer Links */
        .footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .footer-links li a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            transition: all 0.3s ease;
            display: inline-block;
            position: relative;
        }

        .footer-links li a::before {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #D4AF37, #F4D03F);
            transition: width 0.3s ease;
        }

        .footer-links li a:hover {
            color: #D4AF37;
            transform: translateX(5px);
        }

        .footer-links li a:hover::before {
            width: 100%;
        }

        /* Footer Contact */
        .footer-contact {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .footer-contact li {
            display: flex;
            align-items: flex-start;
            gap: 15px;
        }

        .footer-contact li svg {
            width: 22px;
            height: 22px;
            stroke: #D4AF37;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .footer-contact li span {
            color: rgba(255, 255, 255, 0.6);
            font-size: 15px;
            line-height: 1.6;
            font-weight: 500;
        }

        /* ========== FOOTER STATS ========== */
        .footer-stats {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 50px 0;
            border-bottom: 1px solid rgba(212, 175, 55, 0.15);
            margin-bottom: 40px;
        }

        .footer-stat-item {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .stat-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(244, 208, 63, 0.05));
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s ease;
        }

        .footer-stat-item:hover .stat-icon {
            background: linear-gradient(135deg, #D4AF37, #F4D03F);
            transform: scale(1.1) rotate(5deg);
        }

        .stat-icon svg {
            width: 28px;
            height: 28px;
            stroke: #D4AF37;
            transition: stroke 0.4s ease;
        }

        .footer-stat-item:hover .stat-icon svg {
            stroke: #000;
        }

        .stat-content {}

        .stat-content .stat-number {
            font-size: 36px;
            font-weight: 400;
            font-family: 'Bebas Neue', 'Oswald', sans-serif;
            background: linear-gradient(135deg, #D4AF37, #F4D03F);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 2px;
            line-height: 1;
            margin-bottom: 5px;
        }

        .stat-content .stat-label {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.6);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .footer-stat-divider {
            width: 1px;
            height: 50px;
            background: linear-gradient(to bottom,
                    transparent,
                    rgba(212, 175, 55, 0.3),
                    transparent);
        }

        /* ========== BOTTOM FOOTER ========== */
        .footer-bottom {
            padding-top: 30px;
        }

        .footer-bottom-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .copyright {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.5);
            font-weight: 500;
        }

        .footer-bottom-links {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .footer-bottom-links a {
            color: rgba(255, 255, 255, 0.5);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: color 0.3s ease;
        }

        .footer-bottom-links a:hover {
            color: #D4AF37;
        }

        .footer-bottom-links .separator {
            color: rgba(255, 255, 255, 0.3);
        }

        .developer {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.5);
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .heart-icon {
            width: 16px;
            height: 16px;
            fill: #D4AF37;
            animation: heartbeat 1.5s ease-in-out infinite;
        }

        @keyframes heartbeat {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.1);
            }
        }

        .dev-link {
            color: #D4AF37;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s ease;
        }

        .dev-link:hover {
            color: #F4D03F;
            text-decoration: underline;
        }

        /* ========== BACKGROUND ELEMENTS ========== */
        .footer-bg-elements {
            position: absolute;
            inset: 0;
            pointer-events: none;
            overflow: hidden;
            z-index: 0;
        }

        .footer-gradient-orb {
            position: absolute;
            border-radius: 50%;
            filter: blur(120px);
            opacity: 0.08;
            animation: orbFloat 25s ease-in-out infinite;
        }

        .footer-gradient-orb.orb-1 {
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, #D4AF37, transparent);
            top: -200px;
            right: -200px;
        }

        .footer-gradient-orb.orb-2 {
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, #F4D03F, transparent);
            bottom: -150px;
            left: -150px;
            animation-delay: -8s;
        }

        .footer-pattern {
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(212, 175, 55, 0.02) 1px, transparent 1px),
                linear-gradient(90deg, rgba(212, 175, 55, 0.02) 1px, transparent 1px);
            background-size: 60px 60px;
            opacity: 0.3;
        }

        /* ========== RESPONSIVE ========== */
        @media (max-width: 1200px) {
            .footer-top {
                grid-template-columns: 1fr 1fr 1fr;
                gap: 40px;
            }

            .footer-brand {
                grid-column: 1 / -1;
            }

            .footer-stats {
                flex-wrap: wrap;
                justify-content: center;
                gap: 30px;
            }

            .footer-stat-divider {
                display: none;
            }
        }

        @media (max-width: 968px) {
            .footer-section {
                padding: 60px 25px 25px;
            }

            .footer-top {
                grid-template-columns: 1fr;
                gap: 40px;
                padding-bottom: 40px;
                margin-bottom: 40px;
            }

            .footer-brand {
                grid-column: 1;
            }

            .footer-logo .logo-text {
                font-size: 42px;
            }

            .footer-stats {
                padding: 40px 0;
                margin-bottom: 30px;
            }

            .footer-bottom-content {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }

            .footer-bottom-links {
                flex-wrap: wrap;
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .footer-logo {
                flex-direction: column;
                align-items: flex-start;
                gap: 5px;
            }

            .footer-logo .logo-subtitle {
                align-self: flex-start;
                margin-bottom: 0;
            }

            .footer-stat-item {
                flex-direction: column;
                text-align: center;
                gap: 10px;
            }

            .stat-content .stat-number {
                font-size: 32px;
            }

            .footer-social {
                justify-content: center;
            }
        }

        .mission-section {
            padding: 80px 20px;
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        }

        .mission-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .mission-label {
            color: #d4af37;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 15px;
        }

        .mission-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 25px;
            line-height: 1.2;
        }

        .gold {
            color: #d4af37;
        }

        .mission-description {
            font-size: 1.1rem;
            color: #555;
            margin-bottom: 20px;
            line-height: 1.8;
        }

        .mission-highlight {
            background: linear-gradient(135deg, #fff9e6 0%, #f5f5dc 100%);
            border-left: 4px solid #d4af37;
            padding: 25px 30px;
            margin: 30px 0;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(212, 175, 55, 0.1);
        }

        .mission-highlight p {
            font-style: italic;
            color: #d4af37;
            font-size: 1.15rem;
            font-weight: 500;
        }

        .mission-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
            margin-top: 40px;
            margin-bottom: 30px;
        }

        .stat-card {
            background: white;
            padding: 30px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease;
        }

        .stat-card:hover {
            transform: translateY(-5px);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            color: #d4af37;
            margin-bottom: 10px;
        }

        .stat-label {
            color: #666;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Estilos do Botão WhatsApp */
        .whatsapp-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
            color: white;
            padding: 18px 35px;
            border-radius: 50px;
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 600;
            box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
            transition: all 0.3s ease;
            margin-top: 20px;
            position: relative;
            overflow: hidden;
        }

        .whatsapp-btn::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: left 0.5s ease;
        }

        .whatsapp-btn:hover::before {
            left: 100%;
        }

        .whatsapp-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 35px rgba(37, 211, 102, 0.5);
        }

        .whatsapp-btn:active {
            transform: translateY(-1px);
        }

        .whatsapp-icon {
            width: 24px;
            height: 24px;
            animation: pulse 2s infinite;
        }

        .whatsapp-text {
            position: relative;
            z-index: 1;
        }

        .whatsapp-arrow {
            width: 20px;
            height: 20px;
            transition: transform 0.3s ease;
        }

        .whatsapp-btn:hover .whatsapp-arrow {
            transform: translateX(5px);
        }

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.1);
            }
        }

        /* Seção Visual */
        .runner-icon-container {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
        }

        .icon-box {
            background: white;
            padding: 30px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .icon-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
        }

        .runner-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            color: #d4af37;
        }

        .runner-icon svg {
            width: 100%;
            height: 100%;
            fill: none;
            stroke: currentColor;
        }

        .icon-title {
            font-size: 1.2rem;
            color: #1a1a1a;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .icon-description {
            color: #666;
            font-size: 0.95rem;
            line-height: 1.5;
        }

        .fade-in {
            animation: fadeIn 1s ease-in;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 768px) {
            .mission-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .mission-title {
                font-size: 2rem;
            }

            .mission-stats {
                grid-template-columns: 1fr;
            }

            .runner-icon-container {
                grid-template-columns: 1fr;
            }

            .whatsapp-btn {
                width: 100%;
                justify-content: center;
            }
        }

        .whatsapp-icon {
            fill: #25D366;
            /* Cor verde oficial do WhatsApp */
        }

        .whatsapp-icon:hover {
            fill: #128C7E;
            /* Tom mais escuro no hover */
        }

        .email-icon {
            width: 30px;
            height: 30px;
            fill: #EA4335;
            /* Vermelho Gmail */
            transition: all 0.3s ease;
        }

        .contact-card:hover .email-icon {
            fill: #C5221F;
            transform: scale(1.1);
        }/* ========================================
   NAVBAR SOCIAL COMPACT - TEXT VERSION
======================================== */
/* ========================================
   NAVBAR SOCIAL COMPACT - VERSÃO CORRIGIDA
======================================== */

/* BASE - Desktop */
.navbar-social-compact {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 25px;
}

.social-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    padding: 10px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    outline: none;
}

.social-toggle-text {
    font-size: 11px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.toggle-arrow {
    width: 14px;
    height: 14px;
    stroke: #D4AF37;
    transition: all 0.3s ease;
}

.social-toggle:hover {
    background: rgba(212, 175, 55, 0.1);
}

.social-toggle:hover .social-toggle-text {
    color: #D4AF37;
}

.social-toggle:hover .toggle-arrow {
    transform: translateY(2px);
    stroke: #F4D03F;
}

.navbar-social-compact:hover .toggle-arrow {
    transform: rotate(180deg);
}

.header.scrolled .social-toggle-text {
    text-shadow: none;
}

.header.on-white-section .social-toggle-text {
    color: #1a1a1a;
    text-shadow: none;
}

.header.on-white-section .social-toggle:hover .social-toggle-text {
    color: #D4AF37;
}

/* Dropdown - DESKTOP */
.social-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px) scale(0.95);
    background: rgba(0, 0, 0, 0.98);
    backdrop-filter: blur(30px);
    border: 1.5px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    padding: 10px;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    z-index: 1001;
}

.social-dropdown::after {
    content: '';
    position: absolute;
    top: -12px;
    left: 0;
    right: 0;
    height: 12px;
    background: transparent;
}

.social-dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 14px;
    height: 14px;
    background: rgba(0, 0, 0, 0.98);
    border-top: 1.5px solid rgba(212, 175, 55, 0.3);
    border-left: 1.5px solid rgba(212, 175, 55, 0.3);
    z-index: -1;
}

.navbar-social-compact:hover .social-dropdown,
.social-dropdown:hover {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateX(-50%) translateY(0) scale(1);
}

/* Social Items - DESKTOP */
.social-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    padding: 14px 18px;
    border-radius: 12px;
    text-decoration: none;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    margin-bottom: 6px;
}

.social-item:last-child {
    margin-bottom: 0;
}

.social-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.15), transparent);
    transition: left 0.6s ease;
}

.social-item:hover::before {
    left: 100%;
}

.social-item:hover {
    background: rgba(212, 175, 55, 0.12);
    transform: translateX(6px);
    padding-left: 22px;
}

.social-item svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

/* Instagram */
.social-item.instagram svg {
    fill: #E4405F;
}

.social-item.instagram:hover {
    background: rgba(228, 64, 95, 0.12);
    color: #E4405F;
}

.social-item.instagram:hover svg {
    transform: scale(1.15) rotate(-5deg);
}

/* TikTok */
.social-item.tiktok svg {
    fill: #00F2EA;
}

.social-item.tiktok:hover {
    background: rgba(0, 242, 234, 0.12);
    color: #00F2EA;
}

.social-item.tiktok:hover svg {
    transform: scale(1.15) rotate(5deg);
}

/* WhatsApp */
.social-item.whatsapp svg {
    fill: #25D366;
}

.social-item.whatsapp:hover {
    background: rgba(37, 211, 102, 0.12);
    color: #25D366;
}

.social-item.whatsapp:hover svg {
    transform: scale(1.15) rotate(-5deg);
}

/* ========================================
   MOBILE - SEM ANIMAÇÕES
======================================== */
@media (max-width: 968px) {
    .navbar-social-compact {
        position: static;
        margin: 30px 0 0 0;
        justify-content: center;
        width: 100%;
        padding-top: 30px;
        border-top: 1px solid rgba(212, 175, 55, 0.2);
    }
    
    /* Esconde o botão toggle no mobile */
    .social-toggle {
        display: none !important;
    }
    
    /* Dropdown vira lista estática */
    .social-dropdown {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: all !important;
        transform: none !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
        width: 100%;
        padding: 0;
        min-width: auto;
        transition: none !important;
    }
    
    /* Remove pseudo-elementos */
    .social-dropdown::before,
    .social-dropdown::after {
        display: none !important;
    }
    
    /* Items sempre visíveis e sem animação */
    .social-item {
        justify-content: center;
        padding: 16px 20px !important;
        background: rgba(212, 175, 55, 0.08) !important;
        margin-bottom: 10px;
        border-radius: 14px;
        /* FORÇA remoção de TODAS animações */
        animation: none !important;
        transition: transform 0.2s ease !important;
    }
    
    /* Remove shine effect */
    .social-item::before {
        display: none !important;
    }
    
    .social-item:hover {
        transform: scale(1.02) !important;
        padding-left: 20px !important;
    }
}

.navbar-social-compact:hover .social-item:nth-child(1) {
    animation: socialItemFadeIn 0.35s ease 0.05s both;
}

.navbar-social-compact:hover .social-item:nth-child(2) {
    animation: socialItemFadeIn 0.35s ease 0.12s both;
}

.navbar-social-compact:hover .social-item:nth-child(3) {
    animation: socialItemFadeIn 0.35s ease 0.19s both;
}


/* Container principal */
.mw-social-dock {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 998; /* ✅ Menor que o header (999) mas acima do conteúdo */
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
  pointer-events: none;
}


/* Botão gatilho (o logo MW) */
.mw-dock-trigger {
  pointer-events: all;
  position: relative;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #D4AF37, #F4D03F);
  border-radius: 16px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 6px 20px rgba(212, 175, 55, 0.5),
    0 2px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.3s ease;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  overflow: hidden;
    animation: socialButtonPulse 2s ease-in-out infinite;

}
/* Animação de pulso para o botão de redes sociais */
@keyframes socialButtonPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 
      0 6px 20px rgba(212, 175, 55, 0.5),
      0 2px 8px rgba(0,0,0,0.2);
  }
  50% {
    transform: scale(1.08);
    box-shadow: 
      0 10px 35px rgba(212, 175, 55, 0.7),
      0 0 0 8px rgba(212, 175, 55, 0.2),
      0 2px 8px rgba(0,0,0,0.3);
  }
}

/* Para o pulso quando o botão estiver aberto */
.mw-social-dock.open .mw-dock-trigger {
  animation: none;
}

/* Pausa a animação ao passar o mouse */
.mw-dock-trigger:hover {
  animation-play-state: paused;
}
.mw-dock-trigger::before {
  content: '';
  position: absolute;
  inset: -50%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(255,255,255,0.35) 60deg,
    transparent 120deg
  );
  animation: dockShine 3s linear infinite;
  pointer-events: none;
}

@keyframes dockShine {
  100% { transform: rotate(360deg); }
}

.mw-dock-trigger-text {
  font-family: 'Bebas Neue', 'Oswald', sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #000;
  letter-spacing: 2px;
  position: relative;
  z-index: 1;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.mw-dock-trigger-close {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: rotate(-90deg) scale(0.6);
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 1;
}

.mw-dock-trigger-close svg {
  width: 22px;
  height: 22px;
  stroke: #000;
  stroke-width: 2.5;
}

/* Estado aberto do trigger */
.mw-social-dock.open .mw-dock-trigger {
  transform: scale(1.08);
  box-shadow:
    0 10px 35px rgba(212, 175, 55, 0.7),
    0 0 0 3px rgba(212, 175, 55, 0.2);
}

.mw-social-dock.open .mw-dock-trigger-text {
  opacity: 0;
  transform: scale(0.4);
}

.mw-social-dock.open .mw-dock-trigger-close {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

/* Pulso de atenção no trigger */
.mw-dock-trigger-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 20px;
  border: 2px solid rgba(212, 175, 55, 0.5);
  animation: dockPulse 2.5s ease-in-out infinite;
  pointer-events: none;
}

.mw-dock-trigger-pulse:nth-child(2) {
  animation-delay: 0.8s;
}

@keyframes dockPulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.25); opacity: 0; }
}

/* Label "Redes Sociais" que some quando abre */
.mw-dock-label {
  pointer-events: none;
  position: absolute;
  right: 60px;
  bottom: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(10px);
  color: rgba(255,255,255,0.9);
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 20px;
  white-space: nowrap;
  border: 1px solid rgba(212, 175, 55, 0.25);
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateX(5px);
  animation: labelBlink 4s ease-in-out infinite 3s;
}

.mw-dock-label::before {
  content: '';
  position: absolute;
  right: -8px;
  left: auto;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: rgba(0,0,0,0.85);
}

.mw-social-dock.open .mw-dock-label {
  opacity: 0;
  transform: translateX(-10px);
  pointer-events: none;
}

@keyframes labelBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Itens da dock */
.mw-dock-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 10px;
  pointer-events: none;
}

.mw-dock-item {
  pointer-events: none;
  display: flex;
  align-items: center;
  flex-direction: row-reverse; /* label à esquerda, ícone à direita */
  gap: 12px;
  opacity: 0;
  transform: translateX(30px) scale(0.7);
  transition: opacity 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  -webkit-tap-highlight-color: transparent;
}

/* Entrada com stagger */
.mw-social-dock.open .mw-dock-items {
  pointer-events: all;
}

.mw-social-dock.open .mw-dock-item {
  pointer-events: all;
  opacity: 1;
  transform: translateX(0) scale(1);
}

.mw-social-dock.open .mw-dock-item:nth-child(1) {
  transition-delay: 0.05s;
}
.mw-social-dock.open .mw-dock-item:nth-child(2) {
  transition-delay: 0.13s;
}
.mw-social-dock.open .mw-dock-item:nth-child(3) {
  transition-delay: 0.21s;
}

/* Ícone de cada rede */
.mw-dock-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.mw-dock-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.2s ease;
  border-radius: inherit;
}

.mw-dock-icon:active {
  transform: scale(0.88) !important;
}

.mw-dock-icon:active::after {
  background: rgba(255,255,255,0.2);
}

.mw-dock-icon svg {
  width: 26px;
  height: 26px;
  fill: #fff;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

/* Instagram */
.mw-dock-icon.instagram {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  box-shadow: 0 6px 20px rgba(220,39,67,0.45);
}

/* TikTok */
.mw-dock-icon.tiktok {
  background: #010101;
  box-shadow: 0 6px 20px rgba(0,242,234,0.3);
  border: 1.5px solid rgba(255,255,255,0.08);
}

/* WhatsApp */
.mw-dock-icon.whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  box-shadow: 0 6px 20px rgba(37,211,102,0.45);
}

/* Label ao lado do ícone */
.mw-dock-item-label {
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(10px);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 8px 16px;
  border-radius: 20px;
  white-space: nowrap;
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.mw-dock-item-label::before {
  content: '';
  position: absolute;
  right: -8px;
  left: auto;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: rgba(0,0,0,0.85);
}

/* Overlay escuro ao abrir */
.mw-dock-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0);
  z-index: 997;
  pointer-events: none;
  transition: background 0.35s ease;
}

.mw-social-dock.open ~ .mw-dock-overlay {
  background: rgba(0,0,0,0.35);
  pointer-events: all;
}

/* Pontinho de notificação no trigger */
.mw-dock-notif {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 14px;
  height: 14px;
  background: #E4405F;
  border-radius: 50%;
  border: 2px solid #fff;
  animation: notifPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 2s both;
  z-index: 2;
}

@keyframes notifPop {
  from { transform: scale(0); }
  to { transform: scale(1); }
}

.mw-social-dock.open .mw-dock-notif {
  display: none;
}













































































/* ========================================
   SEÇÃO PLANOS - VERSÃO FUNDO BRANCO
======================================== */

/* BASE */
.secnew-plans {
    position: relative;
    padding: 120px 60px;
    background: #ffffff;
    overflow: hidden;
}

.secnew-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* ========== HEADER ========== */
.secnew-header {
    text-align: center;
    margin-bottom: 100px;
}

.secnew-title {
    font-size: 64px;
    font-weight: 400;
    font-family: 'Bebas Neue', 'Oswald', sans-serif;
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.secnew-highlight {
    background: linear-gradient(135deg, #D4AF37 0%, #F4D03F 50%, #FFD700 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.secnew-description {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.65);
    max-width: 900px;
    margin: 0 auto;
}

/* ========== PLAN WRAPPER ========== */
.secnew-wrapper {
    max-width: 1400px;
    margin: 0 auto 120px;
}

/* Icon Header */
.secnew-plan-header {
    text-align: center;
    margin-bottom: 80px;
}

.secnew-icon-box {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 40px;
}

.secnew-orbit {
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-radius: 50%;
    border-top-color: rgba(212, 175, 55, 0.4);
    animation: rotate 8s linear infinite;
}

.secnew-orbit-2 {
    inset: 10px;
    animation-duration: 12s;
    animation-direction: reverse;
}

.secnew-orbit-3 {
    inset: 20px;
    animation-duration: 16s;
}

@keyframes rotate {
    100% { transform: rotate(360deg); }
}

.secnew-icon {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #D4AF37, #F4D03F);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.4);
}

.secnew-icon svg {
    width: 50px;
    height: 50px;
    stroke: #000;
}

.secnew-plan-name {
    font-size: 42px;
    font-weight: 400;
    font-family: 'Bebas Neue', 'Oswald', sans-serif;
    color: #1a1a1a;
    margin-bottom: 30px;
    letter-spacing: 3px;
}

.secnew-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.secnew-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.4s ease;
}

.secnew-badge svg {
    width: 20px;
    height: 20px;
}

.secnew-presencial {
    background: rgba(212, 175, 55, 0.12);
    border: 2px solid rgba(212, 175, 55, 0.4);
    color: #B8941F;
}

.secnew-online {
    background: rgba(37, 211, 102, 0.12);
    border: 2px solid rgba(37, 211, 102, 0.4);
    color: #1EA851;
}

/* ========== PRICING ========== */
.secnew-pricing {
    text-align: center;
    margin-bottom: 80px;
}

.secnew-price-card {
    max-width: 600px;
    margin: 0 auto 40px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.06), rgba(244, 208, 63, 0.03));
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 30px;
    padding: 50px;
}

.secnew-price-label {
    font-size: 14px;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.5);
    display: block;
    margin-bottom: 20px;
}

.secnew-price-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.secnew-currency {
    font-size: 32px;
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
    color: #D4AF37;
}

.secnew-amount {
    font-size: 72px;
    font-weight: 400;
    font-family: 'Bebas Neue', 'Oswald', sans-serif;
    background: linear-gradient(135deg, #D4AF37, #F4D03F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
}

.secnew-price-note {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.5);
    font-weight: 600;
    font-style: italic;
}

/* WhatsApp Button */
.secnew-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #ffffff;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.secnew-whatsapp-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px rgba(37, 211, 102, 0.5);
}

.secnew-btn-icon {
    width: 24px;
    height: 24px;
}

/* ========== DIVIDER ========== */
.secnew-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 80px 0;
}

.secnew-divider-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.4), transparent);
    max-width: 300px;
}

.secnew-divider-dot {
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, #D4AF37, #F4D03F);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.6);
}

/* ========== CONTENT GRID ========== */
.secnew-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-bottom: 80px;
}

/* Features */
.secnew-features-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
}

.secnew-features-header svg {
    width: 30px;
    height: 30px;
    stroke: #D4AF37;
}

.secnew-features-header h4 {
    font-size: 26px;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    color: #1a1a1a;
    letter-spacing: 1px;
}

.secnew-features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.secnew-feature {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: rgba(0, 0, 0, 0.02);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 16px;
    transition: all 0.4s ease;
}

.secnew-feature:hover {
    background: rgba(212, 175, 55, 0.08);
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateX(10px);
}

.secnew-feature-num {
    font-size: 40px;
    font-weight: 400;
    font-family: 'Bebas Neue', 'Oswald', sans-serif;
    background: linear-gradient(135deg, #D4AF37, #F4D03F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    min-width: 50px;
}

.secnew-feature-content h5 {
    font-size: 18px;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.secnew-feature-content p {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.6;
}

/* Schedule */
.secnew-schedule {
    background: rgba(212, 175, 55, 0.06);
    border: 2px solid rgba(212, 175, 55, 0.25);
    border-radius: 20px;
    padding: 40px;
}

.secnew-schedule-header h4 {
    font-size: 26px;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.secnew-location {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #B8941F;
    font-weight: 700;
    margin-bottom: 30px;
}

.secnew-location svg {
    width: 18px;
    height: 18px;
}

.secnew-schedule-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.secnew-schedule-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.6);
    border: 2px solid rgba(212, 175, 55, 0.15);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.secnew-schedule-item:hover {
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateX(5px);
}

.secnew-schedule-item.secnew-special {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.4);
}

.secnew-schedule-icon {
    width: 45px;
    height: 45px;
    background: rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.secnew-schedule-icon svg {
    width: 24px;
    height: 24px;
    stroke: #D4AF37;
}

.secnew-special-icon {
    background: linear-gradient(135deg, #D4AF37, #F4D03F);
}

.secnew-special-icon svg {
    stroke: #000;
}

.secnew-schedule-content strong {
    display: block;
    font-size: 17px;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.secnew-time {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.4);
    padding: 6px 14px;
    border-radius: 15px;
    font-size: 13px;
    font-weight: 700;
    color: #B8941F;
    margin-bottom: 8px;
}

.secnew-schedule-content span {
    font-size: 13px;
    color: rgba(0, 0, 0, 0.55);
    font-weight: 600;
}

.secnew-special-note {
    font-size: 14px;
    color: rgba(0, 0, 0, 0.65);
    margin: 8px 0;
}

.secnew-special-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(212, 175, 55, 0.2);
    padding: 10px 15px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    color: #B8941F;
    font-style: italic;
    margin-top: 10px;
}

.secnew-special-badge svg {
    width: 16px;
    height: 16px;
}

.secnew-online-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px;
    background: rgba(37, 211, 102, 0.1);
    border: 2px solid rgba(37, 211, 102, 0.3);
    border-radius: 16px;
    margin-top: 20px;
}

.secnew-online-badge svg {
    width: 24px;
    height: 24px;
    stroke: #25D366;
}

.secnew-online-badge span {
    font-size: 14px;
    font-weight: 700;
    color: #1EA851;
}

/* ========== CTA ========== */
.secnew-cta {
    text-align: center;
    padding-top: 40px;
    border-top: 2px solid rgba(212, 175, 55, 0.2);
}

.secnew-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #D4AF37, #F4D03F);
    color: #000;
    padding: 22px 50px;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    text-decoration: none;
    transition: all 0.5s ease;
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.4);
    margin-bottom: 30px;
}

.secnew-cta-btn:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 30px 70px rgba(212, 175, 55, 0.6);
}

.secnew-cta-btn svg {
    width: 24px;
    height: 24px;
}

.secnew-trust {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.secnew-trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: rgba(0, 0, 0, 0.55);
    font-weight: 700;
}

.secnew-trust-item svg {
    width: 22px;
    height: 22px;
    stroke: #D4AF37;
}

/* ========== BENEFITS GRID ========== */
.secnew-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.secnew-benefit {
    text-align: center;
    padding: 45px 35px;
    background: rgba(0, 0, 0, 0.02);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    transition: all 0.5s ease;
    position: relative;
}

.secnew-benefit:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.25);
}

.secnew-benefit-num {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 70px;
    font-weight: 400;
    font-family: 'Bebas Neue', 'Oswald', sans-serif;
    background: rgba(212, 175, 55, 0.12);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.secnew-benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
}

.secnew-benefit-icon svg {
    width: 100%;
    height: 100%;
    stroke: #D4AF37;
}

.secnew-benefit h4 {
    font-size: 22px;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.secnew-benefit p {
    font-size: 15px;
    color: rgba(0, 0, 0, 0.6);
    line-height: 1.7;
    margin-bottom: 25px;
}

.secnew-benefit-line {
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, #D4AF37, #F4D03F);
    margin: 0 auto;
    border-radius: 4px;
}

/* ========== BACKGROUND ========== */
.secnew-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.secnew-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.06;
}

.secnew-orb-1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, #D4AF37, transparent);
    top: -200px;
    right: -200px;
}

.secnew-orb-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #F4D03F, transparent);
    bottom: -150px;
    left: -150px;
}

.secnew-mesh {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(212, 175, 55, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.3;
}

/* ========================================
   RESPONSIVE - MOBILE
======================================== */
@media (max-width: 968px) {
    .secnew-plans {
        padding: 80px 25px;
    }
    
    .secnew-header {
        margin-bottom: 60px;
    }
    
    .secnew-title {
        font-size: 36px;
        margin-bottom: 20px;
    }
    
    .secnew-description {
        font-size: 16px;
        padding: 0 10px;
    }
    
    /* Icon Header */
    .secnew-plan-header {
        margin-bottom: 50px;
    }
    
    .secnew-icon-box {
        width: 100px;
        height: 100px;
        margin-bottom: 30px;
    }
    
    .secnew-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .secnew-plan-name {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .secnew-badges {
        flex-direction: column;
        gap: 12px;
    }
    
    .secnew-badge {
        justify-content: center;
        padding: 12px 24px;
        font-size: 13px;
    }
    
    /* Pricing */
    .secnew-pricing {
        margin-bottom: 50px;
    }
    
    .secnew-price-card {
        padding: 35px 25px;
    }
    
    .secnew-currency {
        font-size: 24px;
    }
    
    .secnew-amount {
        font-size: 52px;
    }
    
    .secnew-whatsapp-btn {
        width: 100%;
        justify-content: center;
        padding: 16px 30px;
        font-size: 14px;
    }
    
    /* Divider */
    .secnew-divider {
        margin: 50px 0;
    }
    
    /* Content Grid */
    .secnew-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 50px;
    }
    
    /* Features */
    .secnew-features-header h4 {
        font-size: 22px;
    }
    
    .secnew-features-list {
        gap: 15px;
    }
    
    .secnew-feature {
        gap: 15px;
        padding: 20px;
    }
    
    .secnew-feature:hover {
        transform: translateX(5px);
    }
    
    .secnew-feature-num {
        font-size: 32px;
        min-width: 45px;
    }
    
    .secnew-feature-content h5 {
        font-size: 16px;
        margin-bottom: 6px;
    }
    
    .secnew-feature-content p {
        font-size: 13px;
    }
    
    /* Schedule */
    .secnew-schedule {
        padding: 30px 20px;
    }
    
    .secnew-schedule-header h4 {
        font-size: 22px;
    }
    
    .secnew-location {
        font-size: 13px;
        margin-bottom: 25px;
    }
    
    .secnew-schedule-list {
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .secnew-schedule-item {
        gap: 15px;
        padding: 18px;
    }
    
    .secnew-schedule-item:hover {
        transform: translateX(3px);
    }
    
    .secnew-schedule-icon {
        width: 40px;
        height: 40px;
    }
    
    .secnew-schedule-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .secnew-schedule-content strong {
        font-size: 15px;
        margin-bottom: 6px;
    }
    
    .secnew-time {
        padding: 5px 12px;
        font-size: 12px;
        margin-bottom: 6px;
    }
    
    .secnew-schedule-content span {
        font-size: 12px;
    }
    
    .secnew-special-note {
        font-size: 13px;
    }
    
    .secnew-special-badge {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .secnew-online-badge {
        padding: 15px;
        gap: 10px;
    }
    
    .secnew-online-badge svg {
        width: 20px;
        height: 20px;
    }
    
    .secnew-online-badge span {
        font-size: 13px;
    }
    
    /* CTA */
    .secnew-cta {
        padding-top: 30px;
    }
    
    .secnew-cta-btn {
        width: 100%;
        padding: 18px 30px;
        font-size: 14px;
        margin-bottom: 25px;
    }
    
    .secnew-trust {
        flex-direction: column;
        gap: 15px;
    }
    
    .secnew-trust-item {
        justify-content: center;
        font-size: 13px;
    }
    
    /* Benefits */
    .secnew-benefits {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .secnew-benefit {
        padding: 35px 25px;
    }
    
    .secnew-benefit:hover {
        transform: translateY(-5px);
    }
    
    .secnew-benefit-num {
        font-size: 55px;
        top: 15px;
        right: 20px;
    }
    
    .secnew-benefit-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .secnew-benefit h4 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .secnew-benefit p {
        font-size: 14px;
        margin-bottom: 20px;
    }
    
    .secnew-benefit-line {
        width: 60px;
        height: 3px;
    }
    
    /* Background */
    .secnew-orb-1 {
        width: 300px;
        height: 300px;
        top: -100px;
        right: -100px;
    }
    
    .secnew-orb-2 {
        width: 250px;
        height: 250px;
        bottom: -80px;
        left: -80px;
    }
}

@media (max-width: 480px) {
    .secnew-title {
        font-size: 30px;
    }
    
    .secnew-plan-name {
        font-size: 28px;
    }
    
    .secnew-amount {
        font-size: 44px;
    }
}