        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-green: #059669;
            --secondary-green: #10b981;
            --light-green: #34d399;
            --dark-green: #047857;
            --accent-green: #6ee7b7;
            --bg-gradient: linear-gradient(135deg, #064e3b 0%, #059669 50%, #10b981 100%);
            --text-dark: #1f2937;
            --text-light: #6b7280;
            --white: #ffffff;
            --gray-50: #f9fafb;
            --gray-100: #f3f4f6;
            --gray-200: #e5e7eb;
            --shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.15), 0 10px 10px -5px rgba(0, 0, 0, 0.1);
        }

        body {
            font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
            background: var(--bg-gradient);
            color: var(--text-dark);
            overflow-x: hidden;
            min-height: 100vh;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        .header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            padding: 16px 0;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(5, 150, 105, 0.1);
            border-bottom: 1px solid rgba(5, 150, 105, 0.1);
        }

        .nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 28px;
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary-green), var(--light-green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .logo::before {
            content: '🌟';
            font-size: 24px;
        }

        .nav-menu {
            display: flex;
            align-items: center;
            gap: 32px;
        }

        .nav-menu a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-menu a:hover {
            color: var(--primary-green);
        }
            
        .nav-menu .btn-primary:hover {
            color: black;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-green);
            transition: width 0.3s ease;
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
            color: white;
            padding: 12px 24px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(5, 150, 105, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(5, 150, 105, 0.4);
        }

        /* Hero Section */
        .hero {
            padding: 120px 0 80px;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 80%, rgba(52, 211, 153, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.2) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(6, 78, 59, 0.3) 0%, transparent 50%);
            animation: float 15s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-badge {
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(15px);
            padding: 12px 24px;
            border-radius: 50px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 24px;
            font-weight: 600;
            border: 1px solid rgba(255, 255, 255, 0.3);
            animation: pulse 3s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .hero-badge::before {
            content: '🎯';
            font-size: 16px;
        }

        .hero h1 {
            font-size: clamp(32px, 5vw, 56px);
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.1;
        }

        .hero-subtitle {
            font-size: 20px;
            font-weight: 600;
            color: var(--accent-green);
            margin-bottom: 16px;
        }

        .hero p {
            font-size: 18px;
            opacity: 0.9;
            max-width: 600px;
            margin: 0 auto 40px;
            line-height: 1.6;
        }

        .hero-features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 20px;
            max-width: 800px;
            margin: 0 auto;
        }

        .hero-feature {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(15px);
            padding: 20px;
            border-radius: 16px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .hero-feature:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.25);
        }

        .hero-feature .icon {
            font-size: 32px;
            margin-bottom: 12px;
            display: block;
        }

        .hero-feature span {
            font-weight: 600;
        }

        /* Main Content */
        .main-content {
            max-width: 1200px;
            margin: -60px auto 80px;
            background: white;
            border-radius: 32px;
            padding: 48px;
            box-shadow: var(--shadow-lg);
            position: relative;
            z-index: 10;
        }

        .promo-banner {
            background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
            color: white;
            padding: 24px;
            border-radius: 20px;
            text-align: center;
            margin-bottom: 48px;
            position: relative;
            overflow: hidden;
        }

        .promo-banner::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: conic-gradient(from 0deg, transparent, rgba(255,255,255,0.1), transparent);
            animation: rotate 8s linear infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .promo-content {
            position: relative;
            z-index: 2;
        }

        .promo-title {
            font-size: 28px;
            font-weight: 800;
            margin-bottom: 8px;
        }

        .promo-subtitle {
            font-size: 16px;
            opacity: 0.9;
        }

        .section-title {
            font-size: 32px;
            font-weight: 700;
            text-align: center;
            margin-bottom: 48px;
            color: var(--text-dark);
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: linear-gradient(135deg, var(--primary-green), var(--light-green));
            border-radius: 2px;
        }

        /* Server Grid */
        .servers-container {
            margin-bottom: 48px;
        }

        .servers-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 24px;
            margin-bottom: 32px;
        }

        .server-card {
            background: white;
            border: 3px solid var(--gray-200);
            border-radius: 20px;
            padding: 20px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
        }

        .server-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 35px rgba(5, 150, 105, 0.15);
        }

        .server-card.selected {
            border-color: var(--primary-green);
            background: linear-gradient(135deg, #f0fdf4, #dcfce7);
            box-shadow: 0 15px 35px rgba(5, 150, 105, 0.25);
            transform: translateY(-4px);
        }

        .server-card.free {
            border-color: var(--light-green);
            background: linear-gradient(135deg, #ecfdf5, #d1fae5);
            position: relative;
        }

        .server-card.free::before {
            content: 'GRÁTIS!';
            position: absolute;
            top: -12px;
            right: 16px;
            background: linear-gradient(135deg, #f59e0b, #f97316);
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-5px); }
        }

        .server-logo {
            width: 80px;
            height: 80px;
            border-radius: 20px;
            margin: 0 auto 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 18px;
            transition: all 0.3s ease;
        }

        .server-card:hover .server-logo {
            transform: rotate(5deg) scale(1.1);
        }

        .server-logo img {
            width: 120px;
            height: 60px;
            border-radius: 12px;
            object-fit: scale-down;
        }

        .server-name {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--text-dark);
        }

        .server-price {
            font-size: 16px;
            color: var(--primary-green);
            font-weight: 700;
        }

        .server-price.original {
            text-decoration: line-through;
            color: var(--text-light);
            margin-right: 8px;
        }

        /* Period Selection */
        .period-section {
            margin-bottom: 48px;
        }

        .period-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 20px;
        }

        .period-grid2 {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            justify-content: center;
            margin-top: 40px;
        }

        .period-card,.period-card2 {
            background: white;
            border: 3px solid var(--gray-200);
            border-radius: 16px;
            padding: 24px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            float: left;
            margin-left: 20px;
            margin-top: 10px;
        }

        .period-card:hover,.period-card2:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(5, 150, 105, 0.15);
        }

        .period-card.selected,.period-card2.selected {
            border-color: var(--primary-green);
            background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
            color: white;
            box-shadow: 0 10px 25px rgba(5, 150, 105, 0.3);
        }

        .period-badge {
            position: absolute;
            top: -10px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, #ef4444, #f97316);
            color: white;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 700;
            }
            
            .period-card2 .anual{    width: 170px;}
            .period-card2 .verde{    background:#d1fae5; color:#065f46;}
            .period-card2 .rosa{    background:#fbcfe8; color:#be185d;}
            .period-card2 .amarelo{    background:#fef9c3; color:#b45309;}
            .period-card2 .verde{    background:#bbf7d0; color:#065f46; width:105px}
            .period-card2 .roxo{    background:#e0e7ff; color:#3730a3;}

        .period-days {
            font-size: 24px;
            font-weight: 800;
            margin-bottom: 8px;
        }
        
        .normalPrice,.normalPrice3{font-size:22px; font-weight:700}
        .normalPrice2{font-weight: 700; color: #1f2937}
        
        h3,.main-content ul,h2{margin-top:20px}
        h1,.main-content ul li,h2{color:black;padding-bottom:20px;}
        h1{color:black;padding-bottom:20px;font-size: 2em;}
        
        .margin{margin-top:48px;}
        .margin p{padding-bottom:10px;}
        
        .answer{margin-top:0px}

        .period-discount {
            font-size: 14px;
            opacity: 0.8;
        }

        /* Order Summary */
        .order-summary {
            background: linear-gradient(135deg, var(--gray-50), white);
            border: 2px solid var(--gray-200);
            border-radius: 24px;
            padding: 32px;
            margin-top: 48px;
            display: none;
        }

        .order-summary.show {
            display: block;
            animation: slideUp 0.5s ease;
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .summary-header {
            font-size: 24px;
            font-weight: 700;
            text-align: center;
            margin-bottom: 24px;
            color: var(--text-dark);
        }

        .summary-items {
            margin-bottom: 24px;
        }

        .summary-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px;
            background: white;
            border-radius: 12px;
            margin-bottom: 12px;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
        }

        .summary-item.free {
            background: linear-gradient(135deg, #ecfdf5, #d1fae5);
            border: 2px solid var(--light-green);
        }

        .summary-totals {
            border-top: 2px solid var(--gray-200);
            padding-top: 24px;
        }

        .total-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 12px;
            font-size: 16px;
        }

        .total-row.final {
            font-size: 28px;
            font-weight: 800;
            color: var(--primary-green);
            border-top: 2px solid var(--gray-200);
            padding-top: 16px;
            margin-top: 16px;
        }

        .checkout-btn {
            width: 100%;
            background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
            color: white;
            border: none;
            padding: 20px;
            border-radius: 16px;
            font-size: 18px;
            font-weight: 700;
            margin-top: 24px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(5, 150, 105, 0.3);
            text-decoration: none;
        }

        .checkout-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 35px rgba(5, 150, 105, 0.4);
        }

        /* Floating Cart */
        .floating-cart {
            position: fixed;
            bottom: 24px;
            right: 24px;
            background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
            color: white;
            padding: 16px 24px;
            border-radius: 50px;
            box-shadow: 0 8px 25px rgba(5, 150, 105, 0.4);
            z-index: 999;
            transform: translateY(100px);
            opacity: 0;
            transition: all 0.3s ease;
            cursor: pointer;
            min-width: 250px;
        }

        .floating-cart.show {
            transform: translateY(0);
            opacity: 1;
        }

        .floating-cart:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 35px rgba(5, 150, 105, 0.5);
        }

        .cart-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .cart-info {
            flex: 1;
        }

        .cart-count {
            font-size: 14px;
            opacity: 0.9;
        }

        .cart-total {
            font-size: 18px;
            font-weight: 700;
        }

        .cart-btn {
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-left: 16px;
        }

        .cart-btn:hover {
            background: rgba(255, 255, 255, 0.3);
        }

        /* Footer */
        .footer {
            background: linear-gradient(135deg, #1f2937, #111827);
            color: white;
            padding: 60px 0 30px;
            margin-top: 80px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h3 {
            color: var(--light-green);
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 16px;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 12px;
        }

        .footer-section ul li a {
            color: #cbd5e1;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .footer-section ul li a:hover {
            color: var(--light-green);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid #374151;
            color: #9ca3af;
        }
      
      .paguemenos{  font-size: 40px;  color: #ff9101;}

        /* Modal */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.6);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 2000;
        }
        
        .hide{display: none}
        
        
        .product-section {
        display: grid;
        grid-template-columns: 1fr 2fr;
        gap: 40px;
        align-items: flex-start;
        margin-bottom: 40px;
        }
        
        .produtos{margin-bottom:80px;}
        
        .produtos a p{position: relative;
        left: 20px;
        background-color: #000;
        color: #fff;bottom: 61px;
        width: 300px;
        border-radius: 0px 0px 10px 10px;
        padding: 7px;}
        
        .produtos img {
        float: left;
        margin: 20px;
        border-radius: 10px;
        width: 300px;
        height: 300px;
        }
        
        .prod{width: 100%;
        height: 100%;
        display: inline-table;
        }
        
        .produtos a {
        font-size: 22px;
        display: grid;
        float: left;
        text-decoration: none;
        position: relative;
        text-align: center;
        color: #000;
        width: 300px;
        height: 300px;
        margin-left: 4%;
        margin-bottom: 20px;
        }
        

        .modal {
            background: white;
            padding: 32px;
            border-radius: 20px;
            width: 90%;
            max-width: 400px;
            box-shadow: var(--shadow-lg);
            margin: 0 auto;
        }

        .modal h2 {
            color: var(--primary-green);
            margin-bottom: 20px;
            text-align: center;
        }

        .modal input {
            width: 100%;
            padding: 12px;
            border: 2px solid var(--gray-200);
            border-radius: 12px;
            margin-bottom: 20px;
            font-size: 16px;
        }

        .modal input:focus {
            outline: none;
            border-color: var(--primary-green);
        }

        .modal button {
            width: 100%;
            background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
            color: white;
            border: none;
            padding: 12px;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .nav-menu {
                display: none;
            }

            .main-content {
                margin: -40px 16px 60px;
                padding: 24px;
            }

            .servers-grid {
                grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
                gap: 16px;
            }

            .floating-cart {
                right: 16px;
                bottom: 16px;
                min-width: 200px;
                padding: 12px 16px;
            }
        }
        
        article .servers-grid{    display: flex; gap: 24px; align-items: flex-start}
        
        .server-info{flex:1; background:#f9fafb; border-radius:12px; padding:24px; min-width:260px; box-shadow:0 2px 8px #0001;}
        .server-info h2{font-size:20px; color:#065f46; margin-bottom:12px;}
        .server-info ul{margin-bottom:18px; padding-left:18px;}
        .DescricaoProd{font-size:15px; color:#374151}
        .disponiveis{text-align: center; margin-bottom: 24px; font-size: 24px; color: var(--text-dark);}
        .summary-item small{color: #6b7280; margin-left: 8px}
        .section-title{font-size:24px}
        .lieberacaoimediata{text-align: center; margin-top: 16px; padding: 16px; background: linear-gradient(135deg, #ecfdf5, #d1fae5); border-radius: 12px; color: #065f46}
        
        
        @media (max-width: 425px) {
            article .servers-grid{    display: block;}
            .period-section .period-card2{margin-left:0;}
            .server-info{    margin-top: 40px;}
        }