:root {
    --color-qv-primary: #26b67c;
    --color-qv-primary-dark: #218838;
    --color-qv-secondary: #f8f9fa;
    --color-qv-red: #ff001e;
    --color-qv-text: #333;
    --color-qv-text-light: #6c757d;
    --color-qv-background: #fff;
    --color-qv-border: #dee2e6;
    --font-qv-family: 'CircularStd', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --box-qv-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --box-qv-shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
    --border-qv-radius: 8px;
    --bc-qv-gap: 1.5rem;
    --bc-qv-radius: 16px;
    --bc-qv-shadow: 0 10px 30px rgba(11,20,40,0.12);
    --bc-qv-accent: rgba(255,255,255,0.06);
    
    /* Black November Colors */
    --black-november-primary: #1a1a1a;
    --black-november-green: #26b67c;
    --black-november-accent: #333;
    --black-november-gradient: linear-gradient(135deg, #1a1a1a 0%, #333 50%, #26b67c 100%);
}

body {
    font-family: var(--font-qv-family);
    color: var(--color-qv-text);
    background-color: var(--color-qv-background);
    margin: 0;
    line-height: 1.6;
}

p {
    margin: 0 !important;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h2.section-title {
    display: block;
    font-size: 2.1rem;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
    color: #434343 !important;
}

.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
    min-width: 140px;
}

.btn-outline {
    background: transparent;
    color: var(--color-qv-text);
    border-color: #dee2e6;
}

.btn-outline:hover {
    background: #f8f9fa;
    border-color: var(--color-qv-primary);
    color: var(--color-qv-primary);
}

.btn-primary {
    background: var(--color-qv-primary);
    color: white;
    border-color: var(--color-qv-primary);
}

.btn-primary:hover {
    background: var(--color-qv-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(38, 182, 124, 0.3);
}

.btn-secondary {
    background: #6c757d;
    color: white;
    border-color: #6c757d;
}

.btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(108, 117, 125, 0.3);
}

.btn-primary {
    background-color: var(--color-qv-primary);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--color-qv-primary);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #fff;
    color: var(--color-qv-primary);
    border-color: var(--color-qv-primary);
    z-index: 1;
}

.btn-secondary:hover {
    background-color: var(--color-qv-primary);
    border-color: #fff;
    color: #fff;
    transform: translateY(-2px);
}

.hero-section {
    padding: 70px 0;
    text-align: center;
    background-color: var(--color-qv-secondary);
}

.hero-title {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 0;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--color-qv-text-light);
    margin-bottom: 2rem;
}

.hero-cta .btn {
    margin: 0 10px;
}

.benefits-section {
    padding: 50px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.benefit-card {
    padding: 30px;
    border-radius: var(--border-qv-radius);
    box-shadow: var(--box-qv-shadow);
}

.benefit-icon {
    height: 40px;
    margin-bottom: 1.5rem;
}

.benefit-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.plans-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--color-qv-text-light);
    margin: -40px auto 60px auto !important;
    max-width: 600px;
    line-height: 1.5;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
    max-width: 900px;
    margin: 0 auto;
}



.recommended-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    z-index: 10;
    white-space: nowrap;
}

.recommended-badge span {
    display: flex;
    align-items: center;
    gap: 4px;
}





.plan-commission {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-qv-primary);
    margin-bottom: 20px;
    padding: 8px 16px;
    background: rgba(38, 182, 124, 0.1);
    border-radius: 20px;
    display: inline-block;
}

.plan-commission.featured {
    background: var(--color-qv-primary);
    color: white;
}

.plan-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    flex-grow: 1;
}

ul.plan-benefits {
    padding: 0;
}

.plan-benefits li {
    position: relative;
    padding: 8px 0 8px 24px;
    font-size: 0.9rem;
    color: #5a6c7d;
    line-height: 1.4;
}

.plan-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 8px;
    color: var(--color-qv-primary);
    font-weight: bold;
    font-size: 1rem;
}

.plan-price {
    margin-bottom: 24px;
    text-align: center;
}

.price-label {
    display: block;
    font-size: 0.85rem;
    color: var(--color-qv-text-light);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-price strong {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
}

.payment-method {
    font-size: 0.9rem;
    color: var(--color-qv-text-light);
    font-weight: normal;
}

.plans-footer-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--color-qv-text-light);
    margin-top: 40px;
    font-style: italic;
}

/* === BLACK NOVEMBER STYLES === */
.card-black-november {
    background: var(--black-november-gradient);
    border-color: var(--black-november-green);
    color: white;
    box-shadow: 0 8px 30px rgba(26, 26, 26, 0.3);
}

.card-black-november .content {
    color: #1a1a1a;
}

.card-black-november .heading {
    color: #1a1a1a;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);
    font-weight: 800;
}

.black-november-badge {
    background: linear-gradient(135deg, var(--black-november-primary) 0%, var(--black-november-green) 100%);
    color: white;
    border: 2px solid var(--black-november-green);
    box-shadow: 0 4px 15px rgba(26, 26, 26, 0.4);
}

.black-november-commission {
    background: var(--black-november-green);
    color: white;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.black-november-commission .old-price {
    text-decoration: line-through;
    opacity: 0.7;
    font-size: 0.9rem;
    color: #545050;
}

.card-black-november .plan-benefits li {
    color: #2c2c2c;
    font-weight: 500;
}

.card-black-november .plan-benefits {
    flex-grow: 0;
    text-align: left;
    margin-bottom: 20px;
}

.card-black-november .plan-benefits li {
    text-align: left;
    padding: 6px 0 6px 24px;
}

.card-black-november .plan-benefits li::before {
    color: var(--black-november-green);
    text-shadow: 0 0 5px var(--black-november-green);
}

.card-black-november .plan-price strong {
    color: #1a1a1a;
    text-shadow: none;
    font-weight: 700;
}

.card-black-november .payment-method {
    color: #666;
}

.card-black-november .price-label {
    color: #444;
}

.btn-black-november {
    background: var(--black-november-green);
    border-color: var(--black-november-green);
    color: white;
    box-shadow: 0 4px 15px rgba(38, 182, 124, 0.3);
    font-weight: 700;
    text-transform: uppercase;
}

.btn-black-november:hover {
    background: #1e9a6b;
    border-color: #1e9a6b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(38, 182, 124, 0.4);
}

.card-black-november:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 40px rgba(26, 26, 26, 0.4);
}

/* Responsividade Black November */
@media (max-width: 768px) {
    .card-black-november {
        order: -1;
        transform: none;
    }
    
    .card-black-november:hover {
        transform: translateY(-2px);
    }
}

/* Responsividade para a seção de planos */
@media (max-width: 768px) {
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 100%;
    }
    
    .card-featured {
        transform: none;
        order: -1;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin: -30px auto 40px auto;
    }
    
    .content {
        min-height: 320px;
        padding: 24px 20px;
    }
}

/* How it Works Section */
.how-it-works-section {
    padding: 80px 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.step-card {
    position: relative;
}

.step-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-qv-primary);
    margin-bottom: 1rem;
}

.step-icon {
    height: 40px;
    margin-bottom: 1rem;
}

.social-proof-section {
    padding: 80px 0;
    background-color: var(--color-qv-secondary);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
    margin-bottom: 60px;
}

.metric-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-qv-primary);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: #fff;
    padding: 30px;
    border-radius: var(--border-qv-radius);
    box-shadow: var(--box-qv-shadow);
}

.testimonial-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 700;
}

section.categories-section {
    margin-top: -50px;
}

.categories-section {
    padding: 80px 0;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    text-align: center; 
    align-items: stretch;
}

.category-card {
    padding: 20px;
    border-radius: var(--border-qv-radius);
    transition: transform 0.3s ease, box-qv-shadow 0.3s ease;
    background-color: #fff;
    border: solid 1px var(--color-qv-primary);
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.category-icon {
    height: 50px;
    margin-bottom: 1rem;
}

.faq-section {
    padding: 80px 0;
    background-color: var(--color-qv-secondary);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--color-qv-border);
    margin-bottom: 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 24px 50px 24px 0;
    font-size: 1.25rem;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    color: var(--color-qv-text);
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--color-qv-primary);
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--color-qv-primary);
    transition: transform 0.3s ease, color 0.3s ease;
    line-height: 1;
}

.faq-question[aria-expanded="true"]::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-in-out, padding 0.3s ease;
    padding: 0;
}

.faq-answer.open {
    max-height: 500px;
    padding-bottom: 24px;
}

.faq-answer p {
    margin: 0 0 16px 0;
    color: var(--color-qv-text-light);
    line-height: 1.6;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    margin: 16px 0;
    padding-left: 20px;
    color: var(--color-qv-text-light);
}

.faq-answer ul li {
    margin-bottom: 8px;
    line-height: 1.5;
}

.faq-answer ul li:last-child {
    margin-bottom: 0;
}

.faq-answer strong {
    color: var(--color-qv-text);
}

.footer-section {
    position: relative;
    padding: 70px 0;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.footer-background {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
    z-index: 0;
    filter: brightness(80%);
}

.footer-section .container {
    position: relative;
    z-index: 1;
}

.footer-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--color-qv-secondary);
}

.footer-links {
    margin-top: 2rem;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    margin: 0 15px;
}

.footer-links a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .section-title { font-size: 2rem; }
    .hero-title { font-size: 1.7rem; }
    .plan-card.recommended { transform: none; }
    .metrics-grid { grid-template-columns: 1fr; }
    
    .faq-question {
        font-size: 1.1rem;
        padding: 20px 40px 20px 0;
    }
    
    .faq-question::after {
        font-size: 1.6rem;
    }
    
    .faq-answer.open {
        padding-bottom: 20px;
    }
    
    .faq-accordion {
        max-width: 100%;
        padding: 0 10px;
    }
}

@media (prefers-reduced-motion: no-preference) {
    .hero-title, .hero-subtitle, .hero-cta {
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInUp 0.5s forwards;
    }
    .hero-subtitle { animation-delay: 0.1s; }
    .hero-cta { animation-delay: 0.2s; }

    @keyframes fadeInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

.card {
  position: relative;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  overflow: visible;
  line-height: 1.6;
  border: 2px solid #e9ecef;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.card-featured {
  border-color: var(--color-qv-primary);
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(38, 182, 124, 0.2);
}

.content {
  height: auto;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 32px 24px;
  border-radius: 16px;
  background: transparent;
  color: #000000;
  z-index: 1;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  text-align: center;
}

.content .heading {
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 1.3;
  z-index: 1;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  margin-bottom: 12px;
  color: #2c3e50;
}

.content .para {
  z-index: 1;
  opacity: 0.8;
  transition: all 0.48s cubic-bezier(0.23, 1, 0.32, 1);
}



.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-color: var(--color-qv-primary);
}

.card-featured:hover {
  transform: translateY(-4px) scale(1.05);
}

.content .para-sm {
  font-size: 16px;
}

.categories-section {
  padding: 24px 16px;
  max-width: 1280px;
  margin: 0 auto;
  box-sizing: border-box;
}

.card_category {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e0e0e0;
  transition: transform .28s cubic-bezier(.2,.9,.2,1), box-qv-shadow .28s ease, border-color .28s ease;
  will-change: transform;
  min-height: 120px;
  display: flex;
  align-items: center;
}

.card_link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
  position: relative;
  outline: none;
}

.img_category {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: #f8f8f8;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img_category img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.08);
  opacity: 0;
  transition: opacity .45s ease, transform .6s cubic-bezier(.2,.9,.2,1);
  will-change: opacity, transform;
  filter: saturate(.95) contrast(.98);
}

.card_category::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0.0) 0%, rgba(0,0,0,0.25) 100%);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}

/* Base/Container */
.semexe-why {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 15px;
    font-family: 'Poppins', 'Inter', sans-serif;
}

.semexe-why__title {
    font-size: 2.5em;
    font-weight: 700;
    color: #111;
    margin-bottom: 30px;
    text-align: left;
}

/* Grid Layout (Desktop - Padrão Mosaico 3 colunas) */
.semexe-why__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr; /* Três colunas iguais */
    grid-auto-rows: 220px; /* Altura base da linha */
    gap: 22px;
}

/* Tile 1: Alcance Nacional - Ocupa 2 linhas de altura */
.semexe-why__tile--reach {
    grid-row: 1 / span 2;
}

/* Tiles de Mosaico à Direita:
    quality: row 1, col 2
    logistics: row 1, col 3
    secure: row 2, col 2
    start: row 2, col 3
*/
.semexe-why__tile--quality,
.semexe-why__tile--logistics,
.semexe-why__tile--secure,
.semexe-why__tile--start {
    /* Garante que tiles menores caibam no espaço alocado automaticamente */
    grid-column-end: span 1; 
}


/* Estilo de cada Tile */
.semexe-why__tile {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(10,10,10,0.08);
    text-decoration: none; /* Se fosse um link */
    color: #fff;
    will-change: transform; /* Hint de performance */
}

/* Imagem */
.semexe-why__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 400ms ease;
    will-change: transform;
}

/* Overlay para escurecimento */
.semexe-why__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0) 100%); /* Gradiente sutil permanente */
    transition: background 400ms ease;
    z-index: 10;
}

/* Conteúdo (título e descrição) */
.semexe-why__content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 18px;
    width: 100%;
    z-index: 20;
}

.semexe-why__headline {
    position: relative; /* Para que o transform do translateY funcione */
    margin: 0;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 8px rgba(0, 0, 0, 0.6);
    font-size: 1.5em;
    font-weight: 700;
    transition: transform 300ms ease, opacity 300ms ease;
    will-change: transform;
    transform: translateY(50px);
}

.semexe-why__desc {
    margin: 8px 0 0 0;
    color: #fff;
    font-size: 1em;
    font-weight: 400;
    max-width: 90%; /* Ajuste para não quebrar a linha muito cedo */
    opacity: 0; /* Oculto por padrão */
    transform: translateY(8px);
    transition: opacity 300ms ease, transform 300ms ease;
    will-change: transform, opacity;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

/* Indicador de expansão para mobile */
.semexe-why__expand-indicator {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    display: none; /* Oculto por padrão */
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
    color: #333;
    transition: all 300ms ease;
    z-index: 25;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.semexe-why__expand-indicator::after {
    content: '+';
    transition: transform 300ms ease;
}

.semexe-why__tile--active .semexe-why__expand-indicator::after {
    transform: rotate(45deg);
}

/* Efeitos de HOVER / Ativo (Desktop e Touch) */
.semexe-why__tile:hover .semexe-why__img,
.semexe-why__tile--active .semexe-why__img {
    transform: scale(1.04);
}

.semexe-why__tile:hover .semexe-why__overlay,
.semexe-why__tile--active .semexe-why__overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 60%, rgba(0,0,0,0.1) 100%); /* Gradiente mais escuro no hover */
}



.semexe-why__tile:hover .semexe-why__headline,
.semexe-why__tile--active .semexe-why__headline {
    transform: translateY(-40px); /* Move o título para cima */
}

.semexe-why__tile:hover .semexe-why__desc,
.semexe-why__tile--active .semexe-why__desc {
    opacity: 1; /* Revela o parágrafo */
    transform: translateY(0);
    transition-delay: 100ms; /* Pequeno delay para aparecer após o título subir */
}


/* =================================================
    Media Queries
    =================================================
*/

/* Tablet/Média (max-width: 1024px) */
@media (max-width: 1024px) {
    .semexe-why__title {
        font-size: 2em;
    }

    .semexe-why__grid {
        grid-template-columns: repeat(2, 1fr); /* 2 colunas */
        grid-auto-rows: 200px; /* Altura um pouco menor */
        gap: 18px;
    }

    /* O tile 'reach' agora ocupa apenas a primeira coluna e duas linhas de altura */
    .semexe-why__tile--reach {
        grid-row: 1 / span 2;
        grid-column: 1 / span 1;
    }
    
    /* As outras tiles se ajustam na coluna 2, linha 1 a 4 */
    .semexe-why__tile--quality {
        grid-row: 1 / span 1;
        grid-column: 2 / span 1;
    }
    .semexe-why__tile--logistics {
        grid-row: 2 / span 1;
        grid-column: 2 / span 1;
    }
    .semexe-why__tile--secure {
        grid-row: 3 / span 1;
        grid-column: 1 / span 1;
    }
    .semexe-why__tile--start {
        grid-row: 3 / span 1;
        grid-column: 2 / span 1;
    }

    /* Mostrar indicador de expansão em tablets também */
    .semexe-why__expand-indicator {
        display: flex;
    }
}

/* Mobile (max-width: 600px) */
@media (max-width: 600px) {
    .semexe-why {
        margin: 20px auto;
    }
    
    .semexe-why__grid {
        grid-template-columns: 1fr; /* 1 coluna */
        grid-auto-rows: 220px; /* Altura padrão para todas */
        gap: 15px;
    }
    
    /* Todas as tiles ocupam 1 linha */
    .semexe-why__tile--reach,
    .semexe-why__tile--quality,
    .semexe-why__tile--logistics,
    .semexe-why__tile--secure,
    .semexe-why__tile--start {
        grid-row: auto;
        grid-column: auto;
    }

    .semexe-why__headline {
        font-size: 1.4em;
    }

    /* Mostrar indicador de expansão apenas em mobile */
    .semexe-why__expand-indicator {
        display: flex;
    }
    
    /* Adicionar um pulso sutil para chamar atenção */
    .semexe-why__expand-indicator {
        animation: pulse-subtle 2s infinite;
    }
    
    @keyframes pulse-subtle {
        0%, 100% {
            transform: scale(1);
            opacity: 0.9;
        }
        50% {
            transform: scale(1.05);
            opacity: 1;
        }
    }
}

/* Sell Faster Section */
.sell-faster-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.sell-faster-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 60px;
    max-width: 800px;
    margin: 0 auto;
}

.sell-faster-step {
    text-align: left;
    padding: 25px 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-qv-shadow 0.2s ease;
}

.sell-faster-step:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.sell-faster-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.sell-faster-icon {
    height: 32px;
    width: 32px;
    margin-right: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sell-faster-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-qv-text);
    margin: 0;
}

.sell-faster-description {
    color: var(--color-qv-text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Animações para os steps */
.sell-faster-step {
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover effects */
.sell-faster-step:hover .sell-faster-icon svg {
    transform: scale(1.1);
    transition: transform 0.2s ease;
}

/* Responsividade */
@media (max-width: 768px) {
    .sell-faster-section {
        padding: 50px 0;
    }
    
    .sell-faster-steps {
        gap: 30px 40px;
        max-width: 600px;
    }
    
    .sell-faster-step {
        padding: 20px 15px;
    }
    
    .sell-faster-title {
        font-size: 1.1rem;
    }
    
    .sell-faster-description {
        font-size: 0.95rem;
    }
}

@media (max-width: 580px) {
    .sell-faster-steps {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 400px;
    }
    
    .sell-faster-step {
        padding: 20px 18px;
    }
    
    .sell-faster-header {
        margin-bottom: 15px;
    }
    
    .sell-faster-icon {
        margin-right: 15px;
    }
}

.product-card {
    width: 253px !important;
}

.tag-badge {
    font-size: 0.675rem !important;
    line-height: normal !important;
}