* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --brand-color: #c02726;
    --dark-bg: #050505;
    --white: #ffffff;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark-bg);
    color: var(--white);
    overflow-x: hidden;
    min-height: 100vh;
}

html {
  scroll-behavior: smooth;
}

::selection {
    background-color: var(--brand-color);
    color: var(--white);
}

/* Utility Classes */
.min-h-screen {
    min-height: 100vh;
}

.text-brand {
    color: var(--brand-color);
}

.bg-brand {
    background-color: var(--brand-color);
}

.border-brand {
    border-color: var(--brand-color);
}

/* Glass Morphism */
.glass-morphism {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Liquid Blobs */
.liquid-blob {
    position: fixed;
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, var(--brand-color) 0%, #601010 100%);
    filter: blur(80px);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.4;
    animation: blob-float 15s infinite alternate ease-in-out;
}

.liquid-blob.top-blob {
    top: -10%;
    left: -10%;
}

.liquid-blob.bottom-blob {
    bottom: -10%;
    right: -10%;
    background: linear-gradient(135deg, #7f1d1d 0%, var(--brand-color) 100%);
    opacity: 0.2;
}

@keyframes blob-float {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(100px, 50px) scale(1.1); }
    100% { transform: translate(-50px, 150px) scale(0.9); }
}

/* Botão WhatsApp Flutuante */
.botao-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 100px;
    height: 100px;
    z-index: 9999;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.botao-whatsapp:hover {
    transform: scale(1.1);
}

.ico-whatsapp {
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .botao-whatsapp {
    width: 100px;
    height: 100px;
        bottom: 15px;
        right: 15px;
    }
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 24px 24px;
    text-align: center;
}

.max-w-4xl {
    max-width: 56rem;
    margin: 0 auto;
}

.space-y-8 > * + * {
    margin-top: 2rem;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--brand-color);
    margin-bottom: 16px;
}

.hero-title {
    font-size: 2.7rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-description {
    font-size: 1.125rem;
    color: var(--gray-400);
    font-weight: 300;
    max-width: 42rem;
    margin: 0 auto;
    line-height: 1.75;
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.25rem;
    }
}

.hero-cta {
    padding-top: 2rem;
    position: relative;
    display: flex;
    align-items: center;
    flex-flow: column;
}

.cta-button {
    position: relative;
    padding: 20px 32px;
    background-color: var(--brand-color);
    color: var(--white);
    font-weight: 800;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(192, 39, 38, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 auto;
    overflow: hidden;
    border: none;
    cursor: pointer;
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: -0.025em;
    font-size: 14px;
    text-decoration: none
}

@media (min-width: 768px) {
    .cta-button {
        font-size: 16px;
    }
}

.cta-button:hover {
    transform: scale(1.05);
}

.cta-button:active {
    transform: scale(0.95);
}

.button-shine {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.cta-button:hover .button-shine {
    transform: translateX(100%);
}

.cta-button .icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.button-text {
    position: relative;
    z-index: 10;
}

.scroll-indicator {
    margin-top: 64px;
    display: flex;
    justify-content: center;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.chevron-icon {
    color: rgba(255, 255, 255, 0.3);
    width: 32px;
    height: 32px;
}

/* Products Section */
.products-section {
    padding: 96px 24px;
    max-width: 80rem;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

.title-underline {
    height: 6px;
    width: 96px;
    background-color: var(--brand-color);
    margin: 0 auto;
    border-radius: 9999px;
}

.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.product-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 24px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(192, 39, 38, 0.5);
}

.product-image-container {
    aspect-ratio: 1;
    width: 100%;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    overflow: hidden;
    position: relative;
    transition: background 0.5s ease;
}

.product-card:hover .product-image-container {
    background: rgba(255, 255, 255, 0.1);
}

.discount-badge {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    padding: 8px;
    z-index: 10;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
    color: var(--white);
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-align: center;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.product-card:hover .product-image {
    transform: scale(1.1);
}

.product-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-title {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    margin-bottom: 12px;
    text-transform: uppercase;
    line-height: 1.25;
    transition: color 0.3s ease;
}

.product-card:hover .product-title {
    color: var(--brand-color);
}

.product-description {
    color: var(--gray-400);
    font-weight: 300;
    margin-bottom: 16px;
    flex-grow: 1;
    line-height: 1.75;
    font-size: 14px;
}

.pricing {
    margin-bottom: 24px;
}

.old-price {
    color: var(--gray-500);
    font-size: 14px;
    text-decoration: line-through;
    text-decoration-color: rgba(192, 39, 38, 0.5);
    margin-bottom: 4px;
}

.new-price-container {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.price-label {
    font-size: 12px;
    color: var(--brand-color);
    font-weight: 800;
    text-transform: uppercase;
}

.new-price {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--brand-color);
    letter-spacing: -0.05em;
}

@media (min-width: 768px) {
    .new-price {
        font-size: 2.25rem;
    }
}

.product-button {
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-weight: 800;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: -0.025em;
    font-size: 12px;
}

.product-button:hover {
    border-color: var(--brand-color);
    background-color: var(--brand-color);
}

.button-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.product-button:hover .button-icon {
    transform: scale(1.1);
}

/* Benefits Section */
.benefits-section {
    padding: 96px 0;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.benefits-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
    align-items: center;
}

@media (min-width: 1024px) {
    .benefits-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

.benefits-title {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 48px;
    text-transform: uppercase;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .benefits-title {
        font-size: 3.75rem;
    }
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.benefit-item {
    display: flex;
    gap: 24px;
}

.benefit-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-color);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-text {
    flex: 1;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.benefit-item:hover .benefit-title {
    color: var(--brand-color);
}

.benefit-desc {
    color: var(--gray-400);
    font-weight: 300;
}

.benefits-card {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 24px;
    border-left: 4px solid var(--brand-color);
}

.info-icon {
    color: var(--brand-color);
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
}

.info-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.info-text {
    color: var(--gray-400);
    font-weight: 300;
    font-size: 1.125rem;
    line-height: 1.75;
}

/* FAQ Section */
.faq-section {
    padding: 96px 24px;
    max-width: 56rem;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 64px;
}

.faq-title {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: -0.025em;
}

.faq-underline {
    height: 4px;
    width: 64px;
    background-color: var(--brand-color);
    margin: 0 auto;
    opacity: 0.5;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 24px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    color: var(--white);
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-question span {
    font-size: 1.125rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.025em;
}

.faq-chevron {
    color: var(--brand-color);
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 240px;
    opacity: 1;
}

.faq-answer-content {
    padding: 0 24px 24px;
    color: var(--gray-400);
    font-weight: 300;
    line-height: 1.75;
}

/* Final CTA */
.final-cta {
    padding: 96px 10px;
    text-align: center;
}

@media (min-width: 768px) {
    .final-cta {
        padding: 96px 14px;
    }
}

.cta-card {
    max-width: 56rem;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(192, 39, 38, 0.2);
    padding: 22px;
    border-radius: 32px;
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .cta-card {
        padding: 80px;
        border-radius: 48px;
    }
}

.cta-glow {
    position: absolute;
    width: 128px;
    height: 128px;
    background: rgba(192, 39, 38, 0.2);
    filter: blur(60px);
    border-radius: 50%;
}

.cta-glow.top-glow {
    top: 0;
    right: 0;
}

.cta-glow.bottom-glow {
    bottom: 0;
    left: 0;
}

.cta-title {
    font-size: 1.875rem;
    font-weight: 800;
    margin-bottom: 32px;
    line-height: 1.1;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 3.75rem;
        margin-bottom: 40px;
    }
}

.final-cta-button {
    position: relative;
    width: 100%;
    padding: 15px 15px;
    background-color: var(--brand-color);
    color: var(--white);
    font-weight: 800;
    font-size: 1rem;
    border-radius: 16px;
    box-shadow: 0 0 20px rgba(192, 39, 38, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 0 auto;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: -0.025em;
}

@media (min-width: 640px) {
    .final-cta-button {
        width: auto;
            padding: 5px 25px;

        
    }
}

@media (min-width: 768px) {
    .final-cta-button {
        font-size: 1.rem;
        padding: 14px 30px;
        border-radius: 20px;
    }
}

.final-cta-button:hover {
    transform: scale(1.05);
}

.final-cta-button:active {
    transform: scale(0.95);
}

.final-cta-text {
    letter-spacing: -0.025em;
}

@media (min-width: 768px) {
    .final-cta-text {
        letter-spacing: 0.1em;
    }
}

.final-cta-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* Footer */
.footer {
    padding: 64px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.footer-content {
    color: var(--gray-600);
    font-size: 14px;
}

.footer-tagline {
    margin-top: 8px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.3;
    font-weight: 800;
}
