/** Shopify CDN: Minification failed

Line 7:0 Unexpected "<"
Line 437:0 Unexpected "<"

**/
<style>
    
    body {
        font-family: 'Inter', sans-serif; 
        background-color: #f0f2f5; 
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    
    .plataforma-section {
        padding-top: 3rem; 
        padding-bottom: 3rem;
        padding-left: 1rem; 
        padding-right: 1rem;
    }
    @media (min-width: 640px) { 
        .plataforma-section {
            padding-left: 1.5rem;
            padding-right: 1.5rem;
        }
    }
    @media (min-width: 1024px) { 
        .plataforma-section {
            padding-left: 2rem;
            padding-right: 2rem;
        }
    }
    .quiz-container {
        max-width: 800px;
        margin: 2rem auto;
        padding: 2rem;
        background-color: #ffffff;
        border-radius: 1.5rem; 
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .quiz-container h2{
        color: #10435E;
    }

    .text-center {
        text-align: center;
    }
    .text-gray-900 {
        color: #1a202c; 
    }
    .text-gray-700 {
        color: #4a5568; 
    }
    .text-gray-800 {
        color: #2d3748; 
    }
    .text-white {
        color: #ffffff;
    }
    .text-gray-300 {
        color: #2d3748; 
    }
    .text-red-700 {
        color: #c53030; 
    }
    .text-pink-500 {
        color: #ec4899; 
    }
    .text-cyan-500 {
        color: #06b6d4; 
    }
    .text-4xl {
        font-size: 2.25rem;
    }
    .text-3xl {
        font-size: 1.875rem; 
    }
    .text-xl {
        font-size: 1.6rem; 
    }
    .text-lg {
        font-size: 1.5rem; 
    }
    .font-bold {
        font-weight: 700;
    }
    .font-semibold {
        font-weight: 600;
    }
    .font-medium {
        font-weight: 500;
    }
    .leading-relaxed {
        line-height: 1.625; 
    }

    .mb-8 { margin-bottom: 2rem; }
    .mb-4 { margin-bottom: 1rem; }
    .mb-2 { margin-bottom: 0.5rem; }
    .mt-2 { margin-top: 0.5rem; }
    .mt-8 { margin-top: 2rem; }
    .mt-4 { margin-top: 1rem; }
    .mt-6 { margin-top: 1.5rem; }

  
    .question-card {
        background-color: #f9fafb;
        border-radius: 1rem;
        padding: 1.5rem;
        margin-bottom: 1.5rem;
        border: 1px solid #e5e7eb;
    }

    .question-card h2{
        color: #10435E;
    }

    .space-y-3 > *:not(:first-child) {
        margin-top: 0.75rem; 
    }
    .option-label {
        display: flex;
        align-items: center;
        padding: 0.75rem 1rem;
        border-radius: 0.75rem;
        border: 1px solid #d1d5db;
        margin-bottom: 0.5rem;
        cursor: pointer;
        transition: all 0.2s ease-in-out;
    }
    .option-label:hover {
        background-color: #e0f7fa; 
        border-color: #22d3ee; 
    }
    .option-label input[type="radio"] {
        margin-right: 0.75rem; 
        accent-color: #df6385; 
    }
    .option-label input[type="radio"]:checked + span {
        font-weight: 600;
        color: #df6385; 
    }
  
    .submit-button {         
        background-color: #df6385;
        color: #ffffff;
        font-weight: 700;
        padding: 0.75rem 2rem; 
        border-radius: 9px; 
        box-shadow: -3px 3px 0px #0c2340; 
        transition: all 0.3s ease-in-out; 
        border: none;
        cursor: pointer; 

        word-break: normal;
        font-family: "GibsonHeavy";
        color: #ffffff;
        text-transform: uppercase;
        -webkit-text-stroke-color: #0c2340;
        font-size: 24px;
        line-height: 100%;
        text-shadow: -2.5px 2.5px 0px #0c2340;
        -webkit-text-stroke-width: 1.75px;
        --slide-fade-translate-y: 30px;      
    }
    .submit-button:hover {
        background-color: #df6385); 
        transform: scale(1.05); 
    }

    .result-card {
        background-color: #e0f7fa; 
        border-radius: 1.5rem;
        padding: 2rem;
        border: 1px solid #22d3ee; 
        color: #0891b2; 
        margin-top: 2rem;
    }
    .result-card.hidden {
        display: none;
    }
    .result-card .grid-container { 
        display: grid;
        grid-template-columns: repeat(1, minmax(0, 1fr)); 
        gap: 1.5rem; 
        margin-top: 1.5rem; 
    }
    @media (min-width: 640px) { 
        .result-card .grid-container {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
    }
    @media (min-width: 768px) { 
        .result-card .grid-container {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }
    }
    .result-card .grid-container > div {
        background-color: #ffffff;
        padding: 1rem;
        border-radius: 0.5rem; 
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); 
        text-align: center;
    }
    .result-card .grid-container img {
        width: 100%;
        height: auto;
        border-radius: 0.375rem; 
        margin-bottom: 0.5rem; 
    }

    .error-message {
        background-color: #fee2e2; 
        border: 1px solid #f87171; 
        color: #b91c1c; 
        padding: 1rem;
        border-radius: 0.5rem; 
        position: relative;
        margin-top: 1rem; 
    }
    .error-message.hidden {
        display: none;
    }
    .error-message strong {
        font-weight: 700; 
    }
    .error-message span {
        display: block;
    }
    @media (min-width: 640px) { 
        .error-message span {
            display: inline;
        }
    }

    .products-shelf {
        margin-top: 2rem;
    }
    .products-shelf h3, h2{
        font-family: 'futura-pt-bold' !important;
        font-size: 20px !important;
        text-transform: uppercase;
        color: #10435e;
    }

    .products-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        margin-bottom: 2rem;
    }

    @media (max-width: 600px) {
        .products-grid {
            display: flex;
            overflow-x: auto;
            scroll-snap-type: x mandatory;
            gap: 15px;
            padding: 10px 0;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none; 
        }
        
        .products-grid::-webkit-scrollbar {
            display: none;
        }
        
        .product-card {
            flex: 0 0 85%;
            scroll-snap-align: start;
            margin-right: 15px;
        }
    }

    .product-card {
        background: white;
        border-radius: 12px;
        padding: 12px 0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        text-align: center;
        cursor: pointer;
    }

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

    .product-image-link {
        display: block;
        margin-bottom: 1rem;
    }

    .product-image {
        width: 100%;
        max-width: 200px;
        height: auto;
        border-radius: 8px;
        margin: 0 auto;
    }

    .product-info {
        padding: 0 0.5rem;
    }

    .product-name {
        font-family: 'futura-pt-bold' !important;
        font-size: 18px;
        font-weight: 700;
        color: #10435e;
        margin-bottom: 0.75rem;
        min-height: 3rem;
        overflow: hidden;
        display: -webkit-box; 
        -webkit-line-clamp: 3; 
        -webkit-box-orient: vertical;
    }

    .product-name:hover{
        text-decoration: underline;
    }

    .product-model{
        text-align: center;
        margin: 0 auto;
        overflow: hidden;
        display: -webkit-box; 
        -webkit-line-clamp: 1; 
        -webkit-box-orient: vertical;
        margin-top: 14px;
        text-transform: uppercase;
        font-family: 'brandon-grotesque' !important;
        color: #11435e;
        font-size: 12px;
        font-weight: 800;
    }

    .product-price {
        margin-bottom: 1rem;
        margin-top: 5px;
    }

    .price {
        font-family: 'futura-pt' !important;
        display: block;
        font-size: 1.25rem;
        font-weight: 700;
        color: rgb(16 67 94);
        margin-bottom: 0.25rem;
    }

    .installments {
        font-family: 'BrandonRegular' !important;
        font-size: 12px;
        color: rgb(var(--color-foreground));
        margin-bottom: 5px;
    }

    .add-to-cart-btn {
        background-color: #df6385;
        width: 90%;
        color: #ffffff !important;
        font-weight: 600;
        padding: 0.75rem 2rem;
        border-radius: 9px;
        box-shadow: -3px 3px 0px #0c2340 !important;
        transition: all 0.3s ease-in-out;
        border: none;
        cursor: pointer;
        word-break: normal;
        font-family: "GibsonHeavy";
        text-transform: uppercase;
        -webkit-text-stroke-color: #0c2340;
        font-size: 14px;
        line-height: 100%;
        text-shadow: -1.5px 1.5px 0px #0c2340;
        -webkit-text-stroke-width: 1px;
        --slide-fade-translate-y: 30px;
    }

    button.add-to-cart-btn:hover {
        box-shadow: 0 0 0 #1f2937 !important;
    }


    .view-all-button {
        background-color: #df6385;
        color: white;
        padding: 0.75rem 2rem;
        border-radius: 8px;
        text-decoration: none;
        outline: none;
        font-weight: 600;
        box-shadow: -3px 3px 0px #0c2340 !important;
        transition: all 0.3s ease-in-out;
        border: none;
        cursor: pointer;
        word-break: normal;
        font-family: "GibsonHeavy";
        text-transform: uppercase;
        -webkit-text-stroke-color: #0c2340;
        font-size: 14px;
        line-height: 100%;
        text-shadow: -1.5px 1.5px 0px #0c2340;
        -webkit-text-stroke-width: 1px;
        --slide-fade-translate-y: 30px;
    }

    .footer-section {
        color: #e5e7eb;
        padding: 2rem;
        border-radius: 1.5rem;
        margin-top: 2rem;
    }
    .footer-section h3 {
        color: #2d3748;
    }
    .footer-section .quiz-container { 
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        box-shadow: none !important;
        background-color: transparent !important;
    }
    .footer-section ul {
        list-style-type: disc;
        list-style-position: inside;
        padding-left: 0;
    }
    .footer-section ul li {
        margin-bottom: 0.5rem;
    }
</style>