* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-light-cream: #F5E8D9;
    --color-medium-taupe: #A38B7B;
    --color-darker-brown: #7C5B4B;
    --color-deep-burgundy: #8B2B3B;
    --color-very-dark-maroon: #5C1E2B;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    margin: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Animações para seções dinâmicas */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

.dynamic-section {
    padding: 80px 0;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.dynamic-section.animate-fadeIn {
    animation: fadeIn 0.8s ease forwards;
}

.dynamic-section.animate-slideUp {
    animation: slideUp 0.8s ease forwards;
}

.dynamic-section.animate-slideDown {
    animation: slideDown 0.8s ease forwards;
}

.dynamic-section.animate-slideLeft {
    animation: slideLeft 0.8s ease forwards;
}

.dynamic-section.animate-slideRight {
    animation: slideRight 0.8s ease forwards;
}

.dynamic-section.animate-zoomIn {
    animation: zoomIn 0.8s ease forwards;
}

.dynamic-section.animate-bounce {
    animation: bounce 1s ease forwards;
}

.section-image-wrapper {
    text-align: center;
    margin: 30px 0;
}

.section-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-darker-brown);
}

.section-content p {
    margin-bottom: 1.2em;
}

.section-content * {
    text-align: inherit;
}

.section-title {
    text-align: inherit;
}

/* Markdown styles */
del {
    text-decoration: line-through;
    opacity: 0.7;
}

strong {
    font-weight: 700;
}

em {
    font-style: italic;
}

/* Animação ao scroll (Intersection Observer será usado via JS) */
.dynamic-section.visible {
    opacity: 1;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    padding: 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-date {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    margin-bottom: 40px;
    line-height: 1.6;
}

.btn-cta {
    display: inline-block;
    background: var(--color-light-cream);
    color: var(--color-very-dark-maroon);
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    margin-bottom: 20px;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
    background: white;
}

.lot-info {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-top: 15px;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-very-dark-maroon);
    text-align: inherit;
    margin-bottom: 40px;
    font-weight: 700;
}

/* Problem Section */
.problem-section {
    background: white;
}

.problem-visual {
    max-width: 700px;
    margin: 0 auto 25px;
}

.problem-visual img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.problem-content {
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--color-darker-brown);
    text-align: center;
}

.problem-conclusion {
    text-align: center;
    font-style: italic;
    color: var(--color-medium-taupe);
    font-size: 1.1rem;
    margin-top: 30px;
}

.problem-conclusion p {
    margin-bottom: 0;
}

/* Benefits Section */
.benefits-intro {
    text-align: inherit;
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--color-darker-brown);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.benefits-illustration {
    max-width: 520px;
    margin: 0 auto 30px;
}

.benefits-illustration img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.benefits-list {
    list-style: none;
    max-width: 700px;
    margin: 0 auto;
}

.benefits-list li {
    padding: 20px;
    margin-bottom: 15px;
    background: white;
    border-left: 4px solid var(--color-deep-burgundy);
    border-radius: 5px;
    font-size: 1.1rem;
    color: var(--color-darker-brown);
    transition: transform 0.3s;
}

.benefits-list li:hover {
    transform: translateX(10px);
}

/* Changes Section */
.changes-list {
    list-style: none;
    max-width: 800px;
    margin: 0 auto 40px;
    padding: 0;
}

.changes-list ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.changes-list li {
    padding: 20px;
    margin-bottom: 15px;
    background: var(--color-light-cream);
    border-radius: 5px;
    font-size: 1.1rem;
    color: var(--color-darker-brown);
    position: relative;
    padding-left: 20px;
    list-style: none;
}

.changes-list li::before {
    display: none;
}

/* Estilo global para listas de conteúdo nas seções */
/* Aplicar apenas dentro de seções de conteúdo, não em cards de produtos */
.section-content .content-list,
.dynamic-section .content-list,
.problem-section .content-list,
.benefits-section .content-list,
.changes-section .content-list,
.about-section .content-list,
.faq-section .content-list {
    list-style: none !important;
    padding-left: 0 !important;
    margin: 20px 0 !important;
}

.section-content .content-list-item,
.dynamic-section .content-list-item,
.problem-section .content-list-item,
.benefits-section .content-list-item,
.changes-section .content-list-item,
.about-section .content-list-item,
.faq-section .content-list-item {
    background-color: #f8eee3 !important;
    padding: 20px 20px 20px 60px !important;
    margin-bottom: 15px !important;
    border-radius: 5px !important;
    list-style: none !important;
    font-size: 1.1rem;
    color: var(--color-darker-brown, #5a4a3a);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    position: relative;
}

/* Adicionar checkmark antes de cada item */
.section-content .content-list-item::before,
.dynamic-section .content-list-item::before,
.problem-section .content-list-item::before,
.benefits-section .content-list-item::before,
.changes-section .content-list-item::before,
.about-section .content-list-item::before,
.faq-section .content-list-item::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background-color: var(--color-deep-burgundy, #8B3A3A);
    border-radius: 50%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: 14px 14px;
    background-position: center;
    background-repeat: no-repeat;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.section-content .content-list-item:hover,
.dynamic-section .content-list-item:hover,
.problem-section .content-list-item:hover,
.benefits-section .content-list-item:hover,
.changes-section .content-list-item:hover,
.about-section .content-list-item:hover,
.faq-section .content-list-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Animação do checkmark no hover */
.section-content .content-list-item:hover::before,
.dynamic-section .content-list-item:hover::before,
.problem-section .content-list-item:hover::before,
.benefits-section .content-list-item:hover::before,
.changes-section .content-list-item:hover::before,
.about-section .content-list-item:hover::before,
.faq-section .content-list-item:hover::before {
    transform: translateY(-50%) scale(1.1);
    transition: transform 0.3s ease;
}

.section-content .content-list-item:last-child,
.dynamic-section .content-list-item:last-child,
.problem-section .content-list-item:last-child,
.benefits-section .content-list-item:last-child,
.changes-section .content-list-item:last-child,
.about-section .content-list-item:last-child,
.faq-section .content-list-item:last-child {
    margin-bottom: 0 !important;
}

/* Garantir que o card de produtos não seja afetado */
.products-section .pricing-box,
.products-section .price-display,
.products-section .pricing-intro {
    /* Manter estilos originais do card de produtos */
}

.products-section .content-list,
.products-section .content-list-item {
    /* Aplicar estilo de lista apenas se estiver dentro do conteúdo da seção, não no card */
}

.emphasis {
    text-align: center !important;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--color-deep-burgundy);
    font-style: italic;
    max-width: 800px;
    margin: 40px auto 0 auto !important;
    display: block;
    width: 100%;
}

.emphasis,
.emphasis p,
.emphasis * {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.emphasis p {
    margin: 0 !important;
    display: inline-block;
    width: auto;
}
/* About Section */
.about-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--color-darker-brown);
    text-align: center;
}

/* Pricing Section */
.pricing-section {
    color: white;
    text-align: center;
}

.pricing-date {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.pricing-date.rich-text {
    margin-bottom: 20px;
}

.pricing-date.rich-text p {
    margin: 0;
}

.pricing-box {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255,255,255,0.1);
    padding: 50px 40px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}

.pricing-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.price-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
    margin: 40px 0;
}

.currency {
    font-size: 2rem;
    font-weight: 600;
}

.amount {
    font-size: 5rem;
    font-weight: 700;
    line-height: 1;
}

.btn-cta-large {
    display: inline-block;
    background: var(--color-light-cream);
    color: var(--color-very-dark-maroon);
    padding: 20px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    margin: 30px 0 20px;
}

.btn-cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
    background: white;
}

/* FAQ Section */
.faq-section {
    background: white;
}

.faq-intro {
    text-align: inherit;
    font-size: 1.1rem;
    color: var(--color-medium-taupe);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-intro p {
    margin-bottom: 0.75rem;
}

.faq-intro p:last-child {
    margin-bottom: 0;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-light-cream);
    margin-bottom: 15px;
    border-radius: 10px;
    border-left: 4px solid var(--color-deep-burgundy);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    color: var(--color-very-dark-maroon);
    font-size: 1.3rem;
    margin: 0;
    padding: 25px 30px;
    cursor: pointer;
    position: relative;
    user-select: none;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background-color: rgba(139, 43, 59, 0.05);
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2rem;
    color: var(--color-deep-burgundy);
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 30px;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 30px 25px 30px;
}

.faq-answer p {
    color: var(--color-darker-brown);
    line-height: 1.8;
    font-size: 1.05rem;
    margin: 15px 0;
}

.faq-answer strong {
    color: var(--color-very-dark-maroon);
    font-weight: 600;
}

.faq-answer ul,
.faq-answer ol {
    margin: 15px 0;
    padding-left: 25px;
    color: var(--color-darker-brown);
}

.faq-answer li {
    margin: 8px 0;
    line-height: 1.6;
}

/* Footer */
.footer {
    padding: 30px 0;
    text-align: center;
    font-size: 0.9rem;
}

/* Tooltips para ícones de redes sociais */
.social-icon-link {
    position: relative;
}

.social-icon-link::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    background-color: var(--color-deep-burgundy, #8B3A3A);
    color: var(--color-light-cream, #F5E6D3);
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.875rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    margin-bottom: 8px;
}

.social-icon-link::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-2px);
    border: 6px solid transparent;
    border-top-color: var(--color-deep-burgundy, #8B3A3A);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 1001;
}

.social-icon-link:hover::after,
.social-icon-link:hover::before {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Animações do Botão WhatsApp Flutuante */
@keyframes whatsappPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 16px rgba(139, 58, 58, 0.4);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 6px 24px rgba(139, 58, 58, 0.6);
    }
}

@keyframes whatsappBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes whatsappShake {
    0%, 100% {
        transform: rotate(0deg);
    }
    10%, 30%, 50%, 70%, 90% {
        transform: rotate(-5deg);
    }
    20%, 40%, 60%, 80% {
        transform: rotate(5deg);
    }
}

.whatsapp-float-btn {
    position: fixed;
    z-index: 1000;
}

.whatsapp-animation-pulse {
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-animation-bounce {
    animation: whatsappBounce 1.5s ease-in-out infinite;
}

.whatsapp-animation-shake {
    animation: whatsappShake 0.5s ease-in-out infinite;
}

.whatsapp-animation-none {
    animation: none;
}

/* Modal WhatsApp */
.whatsapp-modal {
    animation: slideUp 0.3s ease-out;
}

.whatsapp-modal-overlay {
    animation: fadeIn 0.3s ease-out;
}

/* Ajustar cores do botão WhatsApp para usar tema */
.whatsapp-float-btn {
    background: var(--color-deep-burgundy, #8B3A3A) !important;
    box-shadow: 0 4px 16px rgba(139, 58, 58, 0.4) !important;
}

.whatsapp-float-btn:hover {
    background: var(--color-very-dark-maroon, #6B2A2A) !important;
    box-shadow: 0 6px 24px rgba(139, 58, 58, 0.6) !important;
    transform: scale(1.1);
}

.whatsapp-modal-header {
    background: linear-gradient(135deg, var(--color-deep-burgundy, #8B3A3A) 0%, var(--color-very-dark-maroon, #6B2A2A) 100%) !important;
}

.whatsapp-contact-item:hover {
    border-color: var(--color-deep-burgundy, #8B3A3A) !important;
}

.whatsapp-contact-avatar {
    background: linear-gradient(135deg, var(--color-deep-burgundy, #8B3A3A) 0%, var(--color-very-dark-maroon, #6B2A2A) 100%) !important;
}

.whatsapp-contact-arrow {
    color: var(--color-deep-burgundy, #8B3A3A) !important;
}

/* Animações para logos no frontend */
@keyframes logoFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes logoSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes logoSlideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes logoSlideLeft {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes logoSlideRight {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes logoZoomIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes logoBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes logoPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes logoRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* LGPD Banner */
.lgpd-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
    display: none;
}

.lgpd-banner.show {
    display: block;
    animation: slideUp 0.5s ease-out;
}

.lgpd-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.lgpd-content p {
    flex: 1;
    min-width: 250px;
}

.lgpd-btn {
    background: var(--color-deep-burgundy);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

.lgpd-btn:hover {
    background: var(--color-very-dark-maroon);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    section {
        padding: 50px 0;
    }
    
    .hero {
        min-height: 80vh;
        padding: 40px 0;
        background-attachment: scroll !important;
        background-size: cover !important;
        background-position: center center !important;
    }
    
    .price-display {
        flex-direction: column;
        gap: 5px;
    }
    
    .amount {
        font-size: 3.5rem;
    }
    
    .btn-cta,
    .btn-cta-large {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .lgpd-content {
        flex-direction: column;
        text-align: center;
    }
    
    .lgpd-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 70vh;
        padding: 30px 0;
        background-attachment: scroll !important;
        background-size: cover !important;
        background-position: center center !important;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Products Grid Modern */
.products-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
    padding: 0 20px;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.product-card-modern {
    background: var(--color-very-dark-maroon);
    border-radius: 20px;
    padding: 40px 35px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    min-height: auto;
}

.product-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(139, 43, 59, 0.5);
}

/* Produto Destacado - Essencial aos Olhos */
.product-featured {
    background: linear-gradient(135deg, var(--color-very-dark-maroon) 0%, var(--color-deep-burgundy) 100%);
    border: 2px solid var(--color-deep-burgundy);
    box-shadow: 0 15px 50px rgba(139, 43, 59, 0.6);
    transform: translateY(0);
    z-index: 1;
}

.product-featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-deep-burgundy), var(--color-darker-brown), var(--color-deep-burgundy));
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.product-featured:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(139, 43, 59, 0.7);
}

.product-featured .product-title {
    color: white;
    font-size: 1.7rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.product-featured .price-value {
    color: white;
    font-size: 4rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.product-featured .product-divider {
    background: rgba(255, 255, 255, 0.3);
    height: 1px;
}

.product-header {
    margin-bottom: 30px;
}

.product-title {
    color: white;
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    margin: 0 0 10px 0;
    text-align: center;
    line-height: 1.4;
}

.product-pricing {
    text-align: center;
    margin-bottom: 25px;
}

.price-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
}

.price-currency {
    color: var(--color-light-cream);
    font-size: 1.3rem;
    font-weight: 600;
}

.price-value {
    color: white;
    font-size: 3.8rem;
    font-weight: 700;
    line-height: 1;
}

.product-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.25);
    margin: 30px 0 25px 0;
    border: none;
}

.product-features {
    color: white;
    flex-grow: 1;
    margin-bottom: 30px;
}

.product-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-features li {
    padding: 14px 0;
    font-size: 1rem;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    position: relative;
    padding-left: 35px;
    color: rgba(255, 255, 255, 0.95);
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-light-cream);
    font-weight: bold;
    font-size: 1.6rem;
    margin-right: 12px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
}

.product-features strong {
    color: var(--color-light-cream);
    font-weight: 600;
}

.product-features p {
    margin: 10px 0;
    line-height: 1.8;
}

.product-cta {
    margin-top: auto;
}

.btn-product-cta {
    display: block;
    width: 100%;
    padding: 18px 30px;
    background: var(--color-light-cream);
    color: var(--color-very-dark-maroon);
    text-align: center;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: none;
    margin-top: auto;
}

.btn-product-cta:hover {
    background: white;
    color: var(--color-very-dark-maroon);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.btn-featured {
    background: var(--color-light-cream);
    color: var(--color-very-dark-maroon);
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: none;
}

.btn-featured:hover {
    background: white;
    color: var(--color-very-dark-maroon);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

/* Responsive Products */
@media (max-width: 1200px) {
    .products-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
        padding: 0 20px;
    }
    
    /* Terceiro card ocupa toda a coluna em telas médias */
    .products-grid-modern > .product-card-modern:nth-child(3) {
        grid-column: 1 / -1;
    }
    
    .product-featured {
        transform: scale(1);
    }
    
    .product-featured:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 1024px) {
    .products-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding: 0 20px;
    }
    
    .product-featured {
        transform: scale(1);
    }
    
    .product-featured:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 768px) {
    .products-grid-modern {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .product-card-modern {
        padding: 25px;
        min-height: auto;
        margin-bottom: 0;
    }
    
    .product-featured {
        transform: scale(1);
    }
    
    .product-title {
        font-size: 1.3rem;
    }
    
    .product-featured .product-title {
        font-size: 1.5rem;
    }
    
    .price-value {
        font-size: 2.8rem;
    }
    
    .product-featured .price-value {
        font-size: 3.2rem;
    }
    
.price-currency {
    font-size: 1.1rem;
}
}

/* SweetAlert2 theme overrides */
.swal2-popup {
    border-radius: 24px !important;
    background: var(--color-light-cream, #f5e8d9) !important;
    color: var(--color-very-dark-maroon, #5c1e2b) !important;
    padding: 32px !important;
    box-shadow: 0 25px 60px rgba(92, 28, 43, 0.25) !important;
}

.swal2-title {
    color: var(--color-very-dark-maroon, #5c1e2b) !important;
    font-weight: 700 !important;
    letter-spacing: -0.02em;
}

.swal2-html-container {
    color: var(--color-darker-brown, #7c5b4b) !important;
    font-size: 1rem !important;
}

.swal2-icon.swal2-error {
    border-color: var(--color-deep-burgundy, #8b2b3b) !important;
    color: var(--color-deep-burgundy, #8b2b3b) !important;
}

.swal2-icon.swal2-success {
    border-color: var(--color-medium-taupe, #a38b7b) !important;
    color: var(--color-medium-taupe, #a38b7b) !important;
}

.swal2-styled.swal2-confirm {
    background: linear-gradient(135deg, var(--color-deep-burgundy, #8b2b3b), var(--color-very-dark-maroon, #5c1e2b)) !important;
    color: var(--color-light-cream, #f5e8d9) !important;
    border-radius: 999px !important;
    padding: 10px 32px !important;
    font-weight: 600 !important;
    border: none !important;
    box-shadow: 0 8px 20px rgba(92, 30, 43, 0.35) !important;
}

.swal2-styled.swal2-confirm:focus {
    box-shadow: 0 0 0 3px rgba(139, 43, 59, 0.35) !important;
}

.swal2-styled.swal2-cancel {
    background: var(--color-light-cream, #f5e8d9) !important;
    color: var(--color-very-dark-maroon, #5c1e2b) !important;
    border: 2px solid rgba(139, 43, 59, 0.3) !important;
    border-radius: 999px !important;
}


