 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --background: hsl(0, 0%, 100%);
            --foreground: hsl(0, 0%, 0%);
            --primary: hsl(271, 81%, 56%);
            --primary-foreground: hsl(0, 0%, 100%);
            --secondary: hsl(280, 100%, 95%);
            --secondary-foreground: hsl(271, 81%, 30%);
            --muted: hsl(280, 60%, 97%);
            --muted-foreground: hsl(271, 20%, 50%); 
            --accent: hsl(271, 81%, 85%);
            --accent-foreground: hsl(271, 81%, 30%);
            --border: hsl(271, 30%, 90%);
            --input: hsl(271, 30%, 95%);
            --section-light: hsl(280, 100%, 98%);
            --section-medium: hsl(280, 80%, 94%);
            --section-accent: hsl(271, 81%, 56%);
        } 

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
            background-color: var(--background);
            color: var(--foreground);
            line-height: 1.6;
        }
		 .ImgPost img{
		  width: 100%!important;
		  height: auto!important;
		  display: block!important;
		}
		
		@media (pointer: coarse) {
			.BlocoImgHome{
			padding-top: 0%!important;
			padding-left: 0%!important;	
			}
	
			.btntarjeta{
				width: 100%!important;
			}
			
			.BlocoImgH1{display:none!important;}
			
			.Prestamoclass{
				width: 100%!important;
			}
			.titleNU{
				text-align: center!important;
			}
			

		}
		
		
		/*menu mobile*/
/* Reset */
* {
    box-sizing: border-box;
}

.purple-nav {
    background-color: #3d0f62;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 10;
}

/* Botão hambúrguer */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: white;
    border-radius: 2px;
}

/* Menu mobile lateral (escondido por padrão) */
.menu-mobile {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100%;
    background-color: #3d0f62;
    color: white;
    display: flex;
    flex-direction: column;
    padding: 2rem 1rem;
    gap: 1rem;
    transition: left 0.3s ease-in-out;
    z-index: 9999;
}

/* Quando aberto */
.menu-mobile.active {
    left: 0;
}

/* Botão de fechar */
.menu-close {
    align-self: flex-end;
    font-size: 2rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

/* Itens do menu */
.menu-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.menu-items a {
    color: white;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: bold;
}

/* Visível no mobile */
@media (pointer: coarse) {
    .menu-toggle {
        display: flex;
    }

    .menu-items-desktop {
        display: none !important;
    }
}

/* Versão desktop */
@media (min-width: 769px) {
    .menu-toggle {
        display: none;
    }

    .menu-mobile {
        display: none !important;
    }

    .purple-nav .menu-items-desktop {
        display: flex;
        gap: 2rem;
    }
}

/* Menu Desktop visível apenas no desktop */
.menu-items-desktop {
    display: none;
    gap: 2rem;
}

@media (min-width: 769px) {
    .menu-items-desktop {
        display: flex;
    }

    .menu-mobile {
        display: none !important;
    }
}
/*fim*/
		
		
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        /* Header Styles */
        .header {
            background-color: var(--background);
        }

        .header-top {
            padding: 1.5rem 0;
        }

        .header-nav {
            display: flex;
            /*justify-content: space-between;*/
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 2rem;
        }

        .logo {
            font-size: 1.875rem;
            font-weight: bold;
			display: flex;
   			justify-content: center;
        }

        .logo-sub {
            font-size: 0.875rem;
            color: var(--muted-foreground);
        }

        .nav-links {
            display: none;
            gap: 2rem;
        }

        .nav-links a {
            color: var(--foreground);
            text-decoration: none;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .search-container {
            position: relative;
            display: flex;
            align-items: center;
        }

        .search-input {
            padding: 0.5rem 0.75rem 0.5rem 2.5rem;
            border: 1px solid var(--border);
            border-radius: 0.5rem;
            background: var(--background);
            width: 16rem;
        }

        .search-icon {
            position: absolute;
            left: 0.75rem;
            color: var(--muted-foreground);
        }

        .header-purple {
            /*background-color: var(--primary);*/
            background-color: #3d0f62;
            color: var(--primary-foreground);
        }

        .purple-nav {
            padding: 0.75rem 0;
            display: flex;
            gap: 2rem;
            flex-wrap: wrap;
			display: flex;
            justify-content: center;
        }

        .purple-nav a {
            color: var(--primary-foreground);
            text-decoration: none;
            font-size: 0.875rem;
            transition: color 0.3s;
        }

        .purple-nav a:hover {
            color: var(--accent);
        }

        /* Button Styles */
        .btn {
            padding: 0.5rem 1rem;
            border: none;
            border-radius: 0.5rem;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
            text-align: center;
        }

        .btn-primary {
            background-color: #ea5c34;
            color: #ffffff!important;
        }

        .btn-primary:hover {
            opacity: 0.9;
        }

        .btn-secondary {
            background-color: var(--secondary);
            color: var(--secondary-foreground)!important;
        }

        .btn-outline {
            background-color: transparent;
            color: var(--primary);
            border: 1px solid var(--primary);
        }

        .btn-lg {
            padding: 0.75rem 1.5rem;
            font-size: 1rem;
        }

        /* Card Styles */
        .card {
            background-color: white;
            border-radius: 0.75rem;
            box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
            padding: 1.5rem;
        }

        /* Section Styles */
        .section {
            /*padding: 4rem 0;*/
            padding: 2rem 0;
        }

        .section-light {
            background-color: var(--section-light);
        }

        .section-medium {
            background-color: var(--section-medium);
        }

        .grid {
            display: grid;
            gap: 1.5rem;
        }

        .grid-2 {
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        }

        .grid-4 {
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        }

        .text-center {
            text-align: center;
        }

        .mb-4 { margin-bottom: 1rem; }
        .mb-6 { margin-bottom: 1.5rem; }
        .mb-8 { margin-bottom: 2rem; }

        /* Quiz Section */
        .quiz-card {
            background: white;
            border-radius: 0.75rem;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .quiz-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .quiz-buttons .btn {
            flex: 1;
            min-width: 200px;
        }

        /* Product Cards */
        .product-card {
            background: white;
            border-radius: 0.5rem;
            padding: 1rem;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .product-logo {
            width: 100%;
            /*height: 6rem;*/
            height: auto;
            border-radius: 0.5rem;
            margin-bottom: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
			text-align: center;
        }

        .product-logo-placeholder {
            width: 3rem;
            height: 2rem;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 0.25rem;
        }

        /* Featured Card */
        .featured-card {
            background: linear-gradient(135deg, hsl(16.62deg 100% 49.29%), hsl(0deg 66.31% 15.71%));
            color: white;
            width: 20rem;
            height: 12rem;
            border-radius: 1rem;
            padding: 2rem;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }

        .featured-card-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 2rem;
        }

        .chip {
            width: 3rem;
            height: 2rem;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 0.25rem;
        }

        .card-brand {
            text-align: right;
        }

        .card-brand-name {
            font-size: 1.5rem;
            font-weight: bold;
        }

        .card-brand-sub {
            font-size: 0.875rem;
            opacity: 0.8;
        }

        .card-number {
            font-size: 0.875rem;
            opacity: 0.8;
            margin-bottom: 0.25rem;
        }

        .card-expiry {
            font-size: 0.75rem;
            opacity: 0.6;
        }

        /* Benefits List */
        .benefits-list {
            list-style: none;
            margin-bottom: 1.5rem;
        }

        .benefits-list li {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 0.75rem;
        }

        .benefit-dot {
            width: 1rem;
            height: 1rem;
            background-color: #ea5c34;
            border-radius: 50%;
        }

        /* Footer */
        .footer {
           /* background-color: var(--primary);*/
            background-color: #3d0f62;
            color: var(--primary-foreground);
            padding: 3rem 0 2rem;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-logo {
            font-size: 1.5rem;
            font-weight: bold;
            margin-bottom: 1rem;
        }

        .footer-description {
            opacity: 0.8;
            margin-bottom: 1rem;
            max-width: 24rem;
        }

        .footer-terms {
            font-size: 0.875rem;
            opacity: 0.7;
        }

        .footer-section h3 {
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.75rem;
        }

        .footer-links a {
            color: inherit;
            text-decoration: none;
            opacity: 0.8;
            transition: all 0.3s;
        }

        .footer-links a:hover {
            color: var(--accent);
            opacity: 1;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            padding-top: 2rem;
            text-align: center;
            font-size: 0.875rem;
            opacity: 0.7;
        }

        /* Responsive */
        @media (min-width: 768px) {
            .nav-links {
                display: flex;
            }
            
            .grid-2 {
                grid-template-columns: 1fr 1fr;
            }
            
            .quiz-buttons {
                flex-direction: row;
            }
            
            .quiz-buttons .btn {
                flex: 1;
            }
        }

        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: 1fr;
            }
            
            .purple-nav {
                gap: 1rem;
            }
            
            .search-input {
                width: 12rem;
            }
        }

        /* Background Colors */
        .bg-yellow-400 { background-color: #facc15; }
        .bg-blue-500 { background-color: #3b82f6; }
        .bg-red-500 { background-color: #ef4444; }
        .bg-gray-600 { background-color: #4b5563; }
        .bg-gray-800 { background-color: #1f2937; }
        .bg-blue-400 { background-color: #60a5fa; }
        .bg-green-600 { background-color: #16a34a; }
        .bg-green-500 { background-color: #22c55e; }

        .line-clamp-2 {
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
		a {
    text-decoration: none !important; /* Remove sublinhado */
    color: inherit !important;       /* Herda a cor padrão do tema/pai */
}
		.Prestamoclass{
			background-color: #3d0f62!important;
    		color: #FFFFFF!important;
}
			
		}
		
		

		
