/*
Theme Name: Gestao Facilitada
Theme URI: https://hulled.com.br/
Author: Hulled Tecnologia
Author URI: https://hulled.com.br/
Description: Tema WordPress premium desenvolvido para operacoes de consultoria empresarial, produtos digitais e campanhas de captacao. Inclui home institucional completa, checkout customizado em duas colunas para WooCommerce, paginas automaticas (Sobre, Contato, Produtos e Consultoria), landing page de consultoria com multiplas dobras de conversao e gerenciamento centralizado de copy, links, imagens e icones via Customizer para facilitar atualizacoes pelo administrador sem necessidade de codigo.
Version: 1.0.0
Text Domain: loja-simples
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #1F2030;
  --bg-surface: #262738;
  --text: #ffffff;
  --muted: #A0A4B8;
  --border: #3A3C4D;
  --primary: #D9564C;
  --primary-hover: #c4473f;

  --font-family: 'Inter', system-ui, -apple-system, sans-serif;
  --container-width: 1200px;
}

html, body {
  margin: 0;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-family);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease;
}

a:hover {
  color: var(--primary);
}

.container {
  max-width: var(--container-width);
  padding: 0 24px;
  margin: 0 auto;
}

/* Base Buttons */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

.button--small {
  padding: 8px 16px;
  font-size: 14px;
  background: var(--primary);
  color: #fff;
}

.button--small:hover {
  background: var(--primary-hover);
  color: #fff;
}

.button--primary {
  padding: 14px 28px;
  background: var(--primary);
  color: #fff;
}

.button--primary:hover {
  background: var(--primary-hover);
  color: #fff;
}

.button--outline {
  padding: 14px 28px;
  background: transparent;
  border: 1px solid var(--border);
  color: #fff;
}

.button--outline:hover {
  border-color: #fff;
}

/* =========================================
   HEADER
   ========================================= */
.site-header {
  padding: 24px 0;
  background: transparent;
}

.site-header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-text {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.5px;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-nav a {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
}

.primary-nav a:hover {
  color: #fff;
}

@media (max-width: 992px) {
  .site-header__nav {
    display: none;
    /* simple mobile hide for now */
  }
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
  padding: 60px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero__container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (max-width: 992px) {
  .hero__container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  margin-bottom: 24px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background-color: var(--primary);
  border-radius: 50%;
}

.badge-text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--muted);
}

.hero__title {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 24px 0;
  letter-spacing: -1.5px;
  color: #fff;
}

.hero__description {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 32px 0;
  max-width: 540px;
}

.hero__checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero__checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #fff;
}

.check-icon {
  flex-shrink: 0;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Right Side - Visuals */
.hero__visuals {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  position: relative;
  z-index: 2;
  width: 100%;
}

.stat-card {
  background: rgba(38, 39, 56, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 32px 24px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-card__number {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.stat-card__label {
  font-size: 14px;
  color: var(--muted);
}

.hero__bg-element {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle at center, rgba(38, 39, 56, 1) 0%, rgba(31, 32, 48, 0) 70%);
  z-index: 1;
  pointer-events: none;
  border-radius: 50%;
  opacity: 0.5;
}

@media (max-width: 768px) {
  .hero__title {
    font-size: 40px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   SOLUTIONS SECTION
   ========================================= */
.solutions {
  background-color: #FAFAFC;
  padding: 100px 0;
  color: #111827;
}

.solutions__header {
  text-align: center;
  margin-bottom: 64px;
}

.solutions__subtitle {
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}

.solutions__title {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 24px;
  color: #111827;
  letter-spacing: -1px;
}

.solutions__desc {
  font-size: 18px;
  color: #6B7280;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

.solutions__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 992px) {
  .solutions__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .solutions__grid {
    grid-template-columns: 1fr;
  }

  .solutions__title {
    font-size: 32px;
  }
}

.solution-card {
  background: #FFFFFF;
  border: 1px solid #F1F2F4;
  border-radius: 12px;
  padding: 32px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.solution-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.solution-card--active {
  border-color: #FCA5A5;
  box-shadow: 0 12px 24px rgba(217, 86, 76, 0.08);
}

.solution-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.solution-card__icon.light-bg {
  background: #FEF2F2;
}

.solution-card__icon.light-bg svg {
  stroke: var(--primary);
}

.solution-card__icon.solid-bg {
  background: var(--primary);
}

.solution-card__icon.solid-bg svg {
  stroke: #ffffff;
}

.solution-card__title {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 12px 0;
}

.solution-card__desc {
  font-size: 15px;
  color: #6B7280;
  line-height: 1.6;
  margin: 0;
}

/* =========================================
   HOW IT WORKS SECTION
   ========================================= */
.how-it-works {
  background-color: #F4F7F9;
  padding: 100px 0;
  color: #111827;
}

.how-it-works__header {
  text-align: center;
  margin-bottom: 80px;
}

.how-it-works__subtitle {
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}

.how-it-works__title {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 24px;
  color: #111827;
  letter-spacing: -1px;
}

.how-it-works__desc {
  font-size: 18px;
  color: #6B7280;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.steps-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.steps-line {
  position: absolute;
  top: 40px;
  left: 12%;
  right: 12%;
  height: 1px;
  background-color: #E5E7EB;
  z-index: 1;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}

.step-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-card__icon-box {
  width: 80px;
  height: 80px;
  background: #FCEAEA;
  /* Very light subtle pink/red */
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 32px;
  box-shadow: 0 0 0 10px #F4F7F9;
  /* Cuts out the lines so it seems the line stops before the box */
}

.step-card__number {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 28px;
  height: 28px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid #F4F7F9;
}

.step-card__title {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 12px 0;
}

.step-card__desc {
  font-size: 14px;
  color: #6B7280;
  line-height: 1.6;
  margin: 0;
  max-width: 240px;
}

@media (max-width: 900px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .steps-line {
    display: none;
  }

  .step-card__icon-box {
    box-shadow: none;
  }
}

@media (max-width: 600px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .how-it-works__title {
    font-size: 32px;
  }
}

/* =========================================
   PRODUCTS SECTION (FERRAMENTAS DE GESTAO)
   ========================================= */
.products {
  background-color: #FAFAFC;
  padding: 100px 0;
  color: #111827;
}

.products__header {
  text-align: center;
  margin-bottom: 64px;
}

.products__subtitle {
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}

.products__title {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 16px;
  color: #111827;
  letter-spacing: -1px;
}

.products__desc {
  font-size: 16px;
  color: #6B7280;
  margin: 0 0 32px;
}

.products__badges {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #6B7280;
}

.products-grid-custom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (max-width: 992px) {
  .products-grid-custom {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .products-grid-custom {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .product-card-v2__body {
    padding: 20px;
  }
  .product-card-v2__title {
    font-size: 17px;
  }
}

@media (max-width: 480px) {
  .products-grid-custom {
    gap: 16px;
  }
  .product-card-v2__body {
    padding: 16px;
  }
}

.product-card-v2 {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.product-card-v2:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
}

.card-highlight-red {
  border-color: #F87171;
  box-shadow: 0 8px 16px rgba(217, 86, 76, 0.08);
}

.card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  z-index: 10;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.red-badge {
  background: #D9564C;
}

.dark-badge {
  background: #111827;
}

.product-card-v2__image {
  background: #F9FAFB;
  border-radius: 16px 16px 0 0;
  border-bottom: 1px solid #F3F4F6;
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}

.product-card-v2__image a {
  display: block;
  width: 100%;
  height: 100%;
}

.product-card-v2__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-card-v2__body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card-v2__title {
  font-size: 20px;
  font-weight: 800;
  color: #111827;
  margin: 0 0 12px 0;
}

.product-card-v2__desc {
  font-size: 14px;
  color: #6B7280;
  line-height: 1.6;
  margin: 0 0 24px 0;
}

.product-card-v2__features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-card-v2__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: #4B5563;
}

.product-card-v2__footer {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid #F3F4F6;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-card-v2__price {
  font-size: 24px;
  font-weight: 800;
  color: #111827;
}

.product-card-v2__price span.amount {
  font-size: 24px;
  font-weight: 800;
}

.product-card-v2__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 13px;
  color: #fff;
  transition: all 0.2s;
}

.btn-red {
  background: #D9564C;
}

.btn-red:hover {
  background: #c4473f;
  color: #fff;
}

.btn-dark {
  background: #111827;
}

.btn-dark:hover {
  background: #1F2937;
  color: #fff;
}

/* =========================================
   TESTIMONIALS SECTION
   ========================================= */
.testimonials {
  background-color: #F8FAFC;
  padding: 100px 0;
  color: #111827;
}

.testimonials__header {
  text-align: center;
  margin-bottom: 64px;
}

.testimonials__subtitle {
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}

.testimonials__title {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 16px;
  color: #111827;
  letter-spacing: -1px;
}

.testimonials__desc {
  font-size: 16px;
  color: #6B7280;
  margin: 0 0 32px;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

@media (max-width: 768px) {
  .testimonials__grid {
    grid-template-columns: 1fr;
  }
}

.testimonial-card {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
}

.testimonial-card__quote-icon {
  color: #FECACA;
  /* Pale red/pink */
  margin-bottom: 24px;
}

.testimonial-card__text {
  font-size: 16px;
  line-height: 1.6;
  color: #4B5563;
  font-style: italic;
  margin: 0 0 24px 0;
  flex: 1;
}

.testimonial-card__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 32px;
}

.testimonial-card__author {
  border-top: 1px solid #F3F4F6;
  padding-top: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #FEF2F2;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
}

.author-info h4 {
  margin: 0 0 4px 0;
  font-size: 16px;
  font-weight: 700;
  color: #111827;
}

.author-info span {
  font-size: 13px;
  color: #6B7280;
}

/* =========================================
   QUEM FAZ SECTION
   ========================================= */
.quem-faz {
  background: #FFFFFF;
  padding: 100px 0;
  color: #111827;
}

.quem-faz__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

@media (max-width: 992px) {
  .quem-faz__container {
    grid-template-columns: 1fr;
  }
}

.quem-faz__image-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.founder-card {
  background: #1F1D2B;
  /* Dark purplish blue */
  border-radius: 16px;
  padding: 40px;
  color: #fff;
}

.founder-card__header {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 32px;
}

.founder-card__avatar {
  width: 56px;
  height: 56px;
  background: #2D2A3B;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}

.founder-card__info h3 {
  margin: 0 0 4px;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
}

.founder-card__info span {
  font-size: 13px;
  color: #9CA3AF;
  display: block;
}

.founder-card__quote {
  font-size: 14px;
  line-height: 1.6;
  color: #D1D5DB;
  margin: 0;
  font-style: italic;
}

.founder-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 600px) {
  .founder-stats-grid {
    grid-template-columns: 1fr;
  }
}

.founder-stat-card {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: center;
}

.stat-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #FEF2F2;
  color: #D9564C;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-text strong {
  display: block;
  font-size: 13px;
  color: #111827;
  margin-bottom: 2px;
}

.stat-text span {
  font-size: 11px;
  color: #6B7280;
  display: block;
}

.quem-faz__subtitle {
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}

.quem-faz__title {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 32px;
  color: #111827;
  letter-spacing: -1px;
}

.quem-faz__body p {
  font-size: 15px;
  color: #4B5563;
  line-height: 1.6;
  margin: 0 0 24px 0;
}

.quem-faz__citation {
  background: #F4F7F9;
  padding: 24px;
  border-radius: 12px;
  margin-top: 32px;
}

.quem-faz__citation p {
  font-style: italic;
  color: #6B7280;
  margin: 0 0 12px 0;
  font-size: 13px;
  line-height: 1.6;
}

.quem-faz__citation strong {
  font-size: 12px;
  color: #111827;
}

/* =========================================
   FINAL CTA SECTION
   ========================================= */
.final-cta {
  background: var(--primary);
  padding: 100px 0;
  text-align: center;
  color: #fff;
}

.final-cta__title {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 24px;
  color: #fff;
  letter-spacing: -1px;
}

.final-cta__desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 680px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.final-cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

@media (max-width: 600px) {
  .final-cta__actions {
    flex-direction: column;
  }
}

.btn-white-solid {
  background: #fff;
  color: var(--primary);
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.2s;
  display: inline-block;
  text-decoration: none;
}

.btn-white-solid:hover {
  background: #F9FAFB;
  transform: translateY(-2px);
}

.btn-outline-transparent {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.2s;
  display: inline-block;
  text-decoration: none;
}

.btn-outline-transparent:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* =========================================
   CONTACT SECTION
   ========================================= */
.contact-section {
  background: #F8FAFC;
  padding: 100px 0;
  color: #111827;
}

.contact-section__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

@media (max-width: 992px) {
  .contact-section__container {
    grid-template-columns: 1fr;
  }
}

.contact-section__subtitle {
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}

.contact-section__title {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 24px;
  color: #111827;
  letter-spacing: -1px;
}

.contact-section__desc {
  font-size: 16px;
  color: #4B5563;
  line-height: 1.6;
  margin: 0 0 40px 0;
  max-width: 480px;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.2s;
}

.contact-card:hover {
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.contact-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bg-green {
  background: #ECFDF5;
}

.bg-red {
  background: #FEF2F2;
}

.contact-card__text {
  display: flex;
  flex-direction: column;
}

.contact-card__text strong {
  font-size: 15px;
  color: #111827;
  margin-bottom: 4px;
}

.contact-card__text span {
  font-size: 13px;
  color: #6B7280;
}

.contact-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  margin-top: 4px;
  text-decoration: none;
}

.contact-link:hover {
  text-decoration: underline;
}

.contact-form-card {
  background: #fff;
  border-radius: 24px;
  padding: 48px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
}

@media (max-width: 600px) {
  .contact-form-card {
    padding: 32px 24px;
  }
}

.contact-form-card__header {
  margin-bottom: 32px;
}

.contact-form-card__header h3 {
  font-size: 24px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 8px 0;
}

.contact-form-card__header p {
  color: #6B7280;
  font-size: 14px;
  margin: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  background: #F9FAFB;
  font-family: inherit;
  font-size: 14px;
  color: #111827;
  transition: all 0.2s;
  box-sizing: border-box;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9CA3AF;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(217, 86, 76, 0.1);
  background: #fff;
}

.btn-submit {
  width: 100%;
  background: var(--primary);
  color: #fff;
  padding: 16px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-submit:hover {
  background: #c4473f;
}

/* =========================================
   FOOTER SECTION
   ========================================= */
.custom-footer {
  background: #111827;
  color: #9CA3AF;
  padding: 80px 0 32px;
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 24px;
}

.footer-logo span {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
}

.custom-footer .footer-col--brand {
  text-align: center;
}

.custom-footer .footer-col--brand .footer-desc {
  margin-left: auto;
  margin-right: auto;
}

.custom-footer .footer-logo__link {
  display: inline-flex;
  align-items: center;
  max-height: 40px;
}

.custom-footer .footer-logo__icon,
.custom-footer .footer-logo img {
  height: 40px !important;
  width: auto !important;
  max-width: 100% !important;
  display: block !important;
}

.footer-desc {
  line-height: 1.6;
  max-width: 320px;
  margin: 0;
}

.footer-col__title {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 24px 0;
}

.footer-col__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col__links li {
  margin-bottom: 16px;
}

.footer-col__links a {
  color: #9CA3AF;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col__links a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
}

@media (max-width: 600px) {
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

.footer-social {
  display: flex;
  gap: 24px;
}

.footer-social a {
  color: #9CA3AF;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-social a:hover {
  color: #fff;
}

/* =========================================
   LIGHT HEADER (FOR PRODUCT PAGE)
   ========================================= */
.site-header--light {
  background-color: #FFFFFF;
  border-bottom: 1px solid #F3F4F6;
}

.site-header--light .logo-text {
  color: #111827;
}

.site-header--light .primary-nav a {
  color: #4B5563;
}

.site-header--light .primary-nav a:hover {
  color: #111827;
}

/* =========================================
   SINGLE PRODUCT PAGE
   ========================================= */
.site-main--light-bg {
  background-color: #FAFAFC;
}

.sp-hero {
  padding: 80px 0;
}

.sp-hero__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

@media (max-width: 992px) {
  .sp-hero__container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.sp-badge {
  display: inline-block;
  background: #FEF2F2;
  color: #D9564C;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 24px;
}

.sp-title {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  color: #111827;
  margin: 0 0 24px 0;
  letter-spacing: -1px;
}

.sp-desc {
  font-size: 18px;
  color: #4B5563;
  line-height: 1.6;
  margin-bottom: 32px;
}

.sp-price-box {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}

@media (max-width: 600px) {
  .sp-price-box {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

.sp-price {
  font-size: 32px;
  font-weight: 800;
  color: #111827;
}

.sp-price span.amount {
  font-size: 32px;
  font-weight: 800;
}

.sp-price-note {
  font-size: 13px;
  color: #6B7280;
}

.sp-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 40px;
}

@media (max-width: 600px) {
  .sp-actions {
    flex-direction: column;
  }
}

.btn-red-solid {
  background: #D9564C;
  color: #fff;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
  text-align: center;
}

.btn-red-solid:hover {
  background: #c4473f;
}

.btn-grey-outline {
  background: #F9FAFB;
  color: #111827;
  border: 1px solid #E5E7EB;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-block;
  text-align: center;
}

.btn-grey-outline:hover {
  background: #F3F4F6;
}

.sp-guarantees {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.sp-guarantees span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #6B7280;
  font-weight: 500;
}

.sp-card {
  background: #fff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
}

.sp-card__img {
  margin-bottom: 24px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #F3F4F6;
}

.sp-card__img img {
  width: 100%;
  height: auto;
  display: block;
}

.sp-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sp-card__features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #4B5563;
  font-weight: 500;
}

.sp-card__box {
  background: #F8FAFC;
  padding: 20px;
  border-radius: 12px;
  font-size: 13px;
  color: #6B7280;
  line-height: 1.6;
}

.sp-details {
  padding: 80px 0;
}

.sp-details__container {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 64px;
}

@media (max-width: 992px) {
  .sp-details__container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.sp-details__content h2 {
  font-size: 28px;
  font-weight: 800;
  color: #111827;
  margin: 0 0 24px 0;
  letter-spacing: -0.5px;
}

.sp-details__content p {
  font-size: 16px;
  color: #4B5563;
  line-height: 1.6;
  margin: 0 0 32px 0;
}

.sp-details__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sp-details__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #4B5563;
  font-weight: 500;
}

.sp-details-box {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid #F3F4F6;
}

.sp-details .sp-details-box h3 {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 16px 0;
}

.sp-details-box p {
  font-size: 14px;
  color: #6B7280;
  line-height: 1.6;
  margin: 0;
}

/* =========================================
   PARA QUEM FOI CRIADA SECTION
   ========================================= */
.sp-target {
  background: #F8FAFC;
  padding: 80px 0;
}

.sp-target__container {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.sp-target__header {
  max-width: 600px;
}

.sp-subtitle {
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}

.sp-target__header h2,
.sp-bonus__header h2 {
  font-size: 32px;
  font-weight: 800;
  color: #111827;
  margin: 0 0 16px 0;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.sp-target__header p {
  font-size: 16px;
  color: #4B5563;
  margin: 0;
  line-height: 1.6;
}

.sp-target__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

@media (max-width: 768px) {
  .sp-target__grid {
    grid-template-columns: 1fr;
  }
}

.sp-info-card {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 24px 32px;
  font-size: 14px;
  color: #4B5563;
  line-height: 1.6;
  font-weight: 500;
  display: flex;
  align-items: center;
  transition: all 0.2s;
}

.sp-info-card:hover {
  border-color: #D1D5DB;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

/* =========================================
   BONUS EXCLUSIVOS SECTION
   ========================================= */
.sp-bonus {
  background: #FAFAFC;
  padding: 80px 0;
}

.sp-bonus__container {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.sp-bonus__header {
  max-width: 600px;
}

.sp-bonus__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

@media (max-width: 992px) {
  .sp-bonus__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .sp-bonus__grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   PERGUNTAS FREQUENTES SECTION
   ========================================= */
.sp-faq {
  background: #F8FAFC;
  padding: 80px 0 100px;
}

.sp-faq__header {
  margin-bottom: 48px;
}

.sp-faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sp-faq-item {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 24px 32px;
  transition: all 0.2s;
}

.sp-faq-item:hover {
  border-color: #D1D5DB;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.sp-faq-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: #111827;
  margin: 0 0 8px 0;
}

.sp-faq-item p {
  font-size: 14px;
  color: #4B5563;
  margin: 0;
  line-height: 1.6;
}

.text-center {
  text-align: center;
}

/* =========================================
   FINAL CTA SECTION (PRODUCT PAGE)
   ========================================= */
.sp-cta {
  background: var(--primary);
  padding: 100px 0;
  text-align: center;
  color: #fff;
  margin-bottom: 0 !important;
}

.site-main--light-bg {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

.custom-footer {
  margin-top: 0 !important;
}

.sp-cta__container {
  max-width: 800px;
  margin: 0 auto;
}

.sp-cta h2 {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 24px;
  color: #fff;
  letter-spacing: -1px;
}

.sp-cta p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 auto 40px;
  line-height: 1.6;
}

.sp-cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

@media (max-width: 600px) {
  .sp-cta__actions {
    flex-direction: column;
  }
}

.btn-white-dark {
  background: #fff;
  color: #111827;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.2s;
  display: inline-block;
  text-decoration: none;
}

.btn-white-dark:hover {
  background: #F9FAFB;
  transform: translateY(-2px);
}

.btn-white-red {
  background: #fff;
  color: var(--primary);
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.2s;
  display: inline-block;
  text-decoration: none;
}

.btn-white-red:hover {
  background: #FEF2F2;
  transform: translateY(-2px);
}

/* =========================================
   REST OF THE PAGE (Kept for compatibility)
   ========================================= */
.site-main {
  padding: 0 0 60px;
}

.section {
  margin: 60px 0;
}

.section-title {
  margin: 0 0 24px;
  font-size: 28px;
  font-weight: 700;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

@media (max-width: 1020px) {
  .products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 740px) {
  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.product-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-surface);
  display: flex;
  flex-direction: column;
}

.product-card__image {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.2);
}

.product-card__image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  padding: 20px;
  object-fit: contain;
}

.product-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.product-card__title {
  font-weight: 600;
  font-size: 16px;
  margin: 0;
  color: #fff;
}

.product-card__price {
  font-weight: 700;
  color: var(--primary);
}

.product-card__cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--border);
  color: #fff;
  padding: 12px;
  font-weight: 600;
  font-size: 14px;
}

.product-card__cta:hover {
  background: var(--primary);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

@media (max-width: 860px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}

.about-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  background: var(--bg-surface);
}

.about-card h3 {
  margin: 0 0 12px;
  font-size: 18px;
}

.about-card p {
  margin: 0;
  color: var(--muted);
}

/* =========================================
   LP CONSULTORIA
   ========================================= */
.lp-consultoria-page {
  padding: 0;
}

.lp-consultoria-eyebrow {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 14px;
}

.lp-consultoria-hero {
  padding: 64px 0 84px;
  background: radial-gradient(circle at 80% 20%, rgba(217, 86, 76, 0.2), transparent 45%), #1F2030;
}

.lp-consultoria-hero__container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.lp-consultoria-hero__title {
  margin: 0 0 18px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.1;
  letter-spacing: -1px;
}

.lp-consultoria-hero__description {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 17px;
  max-width: 640px;
}

.lp-consultoria-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.lp-consultoria-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.lp-consultoria-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 15px;
}

.lp-consultoria-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(217, 86, 76, 0.15);
  border: 1px solid rgba(217, 86, 76, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.lp-consultoria-icon img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.lp-consultoria-icon span {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
}

.lp-consultoria-icon--lg {
  width: 42px;
  height: 42px;
  border-radius: 12px;
}

.lp-consultoria-icon--lg img {
  width: 24px;
  height: 24px;
}

.lp-consultoria-hero__image,
.lp-consultoria-cta__image {
  width: 100%;
  border-radius: 18px;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.12);
  object-fit: cover;
}

.lp-consultoria-image-placeholder {
  min-height: 340px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 18px;
  border: 1px dashed rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.7);
  padding: 20px;
}

.lp-consultoria-challenges,
.lp-consultoria-method,
.lp-consultoria-results {
  padding: 80px 0;
}

.lp-consultoria-challenges,
.lp-consultoria-results {
  background: #F8FAFC;
  color: #111827;
}

.lp-consultoria-method {
  background: #ffffff;
  color: #111827;
}

.lp-consultoria-section-head {
  margin-bottom: 34px;
  max-width: 820px;
}

.lp-consultoria-section-head h2 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.18;
  color: inherit;
}

.lp-consultoria-section-head p {
  margin: 0;
  color: #4B5563;
  font-size: 16px;
}

.lp-consultoria-cards {
  display: grid;
  gap: 16px;
}

.lp-consultoria-cards--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.lp-consultoria-cards--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.lp-consultoria-cards--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.lp-consultoria-card {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 14px;
  padding: 24px;
}

.lp-consultoria-card h3 {
  margin: 12px 0 10px;
  color: #111827;
  font-size: 20px;
}

.lp-consultoria-card p {
  margin: 0;
  color: #4B5563;
  line-height: 1.6;
}

.lp-consultoria-step__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lp-consultoria-step__number {
  font-weight: 800;
  color: #9CA3AF;
  font-size: 12px;
  letter-spacing: 1.2px;
}

.lp-consultoria-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 22px;
}

.lp-consultoria-metric {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 18px;
  text-align: center;
}

.lp-consultoria-metric strong {
  display: block;
  font-size: 28px;
  line-height: 1;
  color: #111827;
  margin-bottom: 6px;
}

.lp-consultoria-metric span {
  font-size: 13px;
  color: #6B7280;
}

.lp-consultoria-case__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.lp-consultoria-case__header strong {
  display: block;
  color: #111827;
  font-size: 15px;
}

.lp-consultoria-case__header span {
  display: block;
  color: #6B7280;
  font-size: 13px;
}

.lp-consultoria-case__avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}

.lp-consultoria-case__avatar--placeholder {
  background: #FEE2E2;
  color: #B91C1C;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.lp-consultoria-cta {
  padding: 86px 0;
  background: #1F2030;
}

.lp-consultoria-cta__container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
}

.lp-consultoria-cta__content h2 {
  margin: 0 0 12px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.2;
}

.lp-consultoria-cta__content p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 16px;
  max-width: 560px;
}

.lp-consultoria-cta__content small {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

@media (max-width: 1020px) {
  .lp-consultoria-hero__container,
  .lp-consultoria-cta__container {
    grid-template-columns: 1fr;
  }

  .lp-consultoria-cards--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .lp-consultoria-cards--3,
  .lp-consultoria-cards--2,
  .lp-consultoria-cards--4,
  .lp-consultoria-metrics {
    grid-template-columns: 1fr;
  }

  .lp-consultoria-hero {
    padding-top: 40px;
  }
}

/* =========================================
   PAGINA SOBRE A EMPRESA
   ========================================= */
.about-company-page {
  padding: 20px 0 70px;
}

.about-company-hero__container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: center;
}

.about-company-hero__title {
  margin: 0 0 18px;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.8px;
}

.about-company-hero__description {
  color: var(--muted);
  font-size: 17px;
}

.about-company-hero__description > *:first-child {
  margin-top: 0;
}

.about-company-hero__description > *:last-child {
  margin-bottom: 0;
}

.about-company-hero__media {
  justify-self: start;
  width: min(100%, 440px);
  order: 1;
}

.about-company-hero__content {
  order: 2;
}

.about-company-hero__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.about-company-hero__placeholder {
  border-radius: 16px;
  border: 1px dashed rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.72);
  min-height: 420px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
  font-size: 15px;
}

@media (max-width: 920px) {
  .about-company-hero__container {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 18px;
  }

  .about-company-hero__media {
    justify-self: start;
    width: 100%;
  }
}

/* =========================================
   WOOCOMMERCE CHECKOUT — PREMIUM DARK UI
   Based on actual WooCommerce HTML output
   ========================================= */

/* ---- Base Reset ---- */
.woocommerce {
  font-size: 15px;
  line-height: 1.6;
}

body.woocommerce-checkout .woocommerce {
  margin-top: 0;
}

/* ---- Notices (outside form) ---- */
.woocommerce-notices-wrapper,
.woocommerce-form-coupon-toggle {
  max-width: 100%;
}

.woocommerce-error,
.woocommerce-message,
.woocommerce-info {
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  list-style: none;
  font-size: 14px;
}

.woocommerce-error {
  border-left: 4px solid var(--primary);
  background: rgba(217, 86, 76, 0.08);
}

.woocommerce-message {
  border-left: 4px solid #34d399;
  background: rgba(52, 211, 153, 0.08);
}

.woocommerce-info {
  border-left: 4px solid #3b82f6;
  background: rgba(59, 130, 246, 0.08);
}

.woocommerce-error li {
  margin: 0;
}

.woocommerce-info a,
.woocommerce-message a,
.woocommerce-error a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
}

.woocommerce-form-coupon-toggle .woocommerce-info {
  flex-direction: row;
  flex-wrap: wrap;
}

/* ---- Coupon Form ---- */
form.checkout_coupon.woocommerce-form-coupon {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
  display: flex !important;
  gap: 12px;
  align-items: flex-end;
  flex-wrap: wrap;
}

form.checkout_coupon .form-row {
  margin-bottom: 0 !important;
}

form.checkout_coupon .form-row-first {
  flex: 1;
  min-width: 200px;
}

/* ==========================================
   MAIN CHECKOUT GRID (form.checkout)
   ========================================== */
form.checkout.woocommerce-checkout {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

@media (min-width: 768px) {
  form.checkout.woocommerce-checkout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 32px;
    align-items: start;
  }

  /* Left column: billing + additional info */
  .col2-set#customer_details {
    grid-column: 1;
    grid-row: 1 / 3;
  }

  /* Right column: order summary heading */
  h3#order_review_heading {
    grid-column: 2;
    grid-row: 1;
  }

  /* Right column: order review (sticky) */
  #order_review.woocommerce-checkout-review-order {
    grid-column: 2;
    grid-row: 2;
    position: sticky;
    top: 90px;
  }
}

@media (min-width: 1100px) {
  form.checkout.woocommerce-checkout {
    grid-template-columns: 1fr 440px;
    gap: 40px;
  }
}

/* ==========================================
   LEFT COLUMN — BILLING CARD
   ========================================== */
.col2-set#customer_details {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

/* Sub-columns inside billing */
.col2-set .col-1,
.col2-set .col-2 {
  width: 100% !important;
  max-width: 100% !important;
  float: none !important;
  padding: 0;
  margin: 0;
}

.col2-set .col-2 {
  margin-top: 12px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

/* ==========================================
   RIGHT COLUMN — ORDER REVIEW
   ========================================== */
h3#order_review_heading {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-bottom: none;
  border-radius: 16px 16px 0 0;
  padding: 24px 32px 16px;
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.3px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

#order_review.woocommerce-checkout-review-order {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 16px 16px;
  padding: 0 32px 32px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

/* ==========================================
   SECTION HEADINGS (h3 inside form)
   ========================================== */
.woocommerce-billing-fields h3,
.woocommerce-additional-fields h3 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 24px 0;
  padding: 0;
  letter-spacing: -0.3px;
}

/* ==========================================
   FORM ROWS
   ========================================== */
.woocommerce form .form-row {
  margin-bottom: 16px;
  padding: 0 !important;
  width: 100% !important;
  float: none !important;
  box-sizing: border-box;
}

/* Side-by-side: first name / last name */
p.form-row-first,
p.form-row-last {
  width: 48% !important;
  display: inline-block !important;
  vertical-align: top;
}

p.form-row-first {
  margin-right: 4% !important;
}

/* Full-width rows */
p.form-row-wide {
  width: 100% !important;
  display: block !important;
}

/* The input wrapper span */
.woocommerce-input-wrapper {
  display: block;
  width: 100%;
}

/* ==========================================
   LABELS
   ========================================== */
.woocommerce form .form-row>label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.woocommerce form .form-row>label .required {
  color: var(--primary);
  font-weight: 700;
}

.woocommerce form .form-row>label .optional {
  color: rgba(255, 255, 255, 0.3);
  font-size: 11px;
  text-transform: none;
  font-weight: 400;
}

/* Hide screen-reader-only labels (address line 2) visually but keep accessible */
.woocommerce form .form-row>label.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

/* ==========================================
   INPUT FIELDS
   ========================================== */
.woocommerce input.input-text,
.woocommerce textarea.input-text,
.woocommerce select,
.woocommerce input[type="text"],
.woocommerce input[type="email"],
.woocommerce input[type="tel"],
.woocommerce input[type="number"],
.woocommerce input[type="password"] {
  width: 100% !important;
  box-sizing: border-box;
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.woocommerce textarea.input-text {
  min-height: 90px;
  resize: vertical;
}

.woocommerce select {
  appearance: none;
  cursor: pointer;
  padding-right: 44px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23A0A4B8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
}

/* Focus */
.woocommerce input.input-text:focus,
.woocommerce textarea.input-text:focus,
.woocommerce select:focus,
.woocommerce input[type="text"]:focus,
.woocommerce input[type="email"]:focus,
.woocommerce input[type="tel"]:focus {
  border-color: var(--primary);
  background: rgba(217, 86, 76, 0.04);
  box-shadow: 0 0 0 3px rgba(217, 86, 76, 0.1);
}

/* Placeholder */
.woocommerce input::placeholder,
.woocommerce textarea::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

/* ==========================================
   SELECT2 (Country / State dropdowns)
   ========================================== */
.select2-container {
  width: 100% !important;
}

.select2-container .select2-selection.select2-selection--single {
  height: 50px !important;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 10px !important;
  padding: 0 !important;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  line-height: 50px !important;
  color: #fff !important;
  padding-left: 16px !important;
  padding-right: 40px !important;
  font-size: 15px !important;
}

.select2-container .select2-selection--single .select2-selection__arrow {
  height: 50px !important;
  right: 12px !important;
}

.select2-container .select2-selection--single .select2-selection__arrow b {
  border-color: rgba(255, 255, 255, 0.4) transparent transparent transparent !important;
}

/* Focus state for select2 */
.select2-container--open .select2-selection.select2-selection--single {
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 3px rgba(217, 86, 76, 0.1) !important;
}

/* Dropdown */
.select2-dropdown {
  background: var(--bg-surface) !important;
  border: 1px solid var(--border) !important;
  border-radius: 10px !important;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3) !important;
}

.select2-search--dropdown .select2-search__field {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid var(--border) !important;
  color: #fff !important;
  border-radius: 8px !important;
  padding: 10px 14px !important;
  font-size: 14px !important;
  outline: none !important;
}

.select2-results__option {
  color: rgba(255, 255, 255, 0.8) !important;
  padding: 10px 16px !important;
  font-size: 14px !important;
  transition: background 0.15s ease;
}

.select2-results__option--highlighted,
.select2-results__option--selected {
  background: var(--primary) !important;
  color: #fff !important;
}

/* ==========================================
   ORDER REVIEW TABLE
   ========================================== */
.woocommerce table.shop_table.woocommerce-checkout-review-order-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
  border: none;
}

.woocommerce table.shop_table thead th {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: rgba(255, 255, 255, 0.4);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-weight: 600;
  text-align: left;
}

.woocommerce table.shop_table thead th.product-total {
  text-align: right;
}

.woocommerce table.shop_table tbody td {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 14px;
  vertical-align: middle;
}

.woocommerce table.shop_table td.product-name {
  font-weight: 500;
  padding-right: 16px;
}

.woocommerce table.shop_table td.product-name .product-quantity {
  color: rgba(255, 255, 255, 0.4);
  font-weight: 400;
}

.woocommerce table.shop_table td.product-total {
  text-align: right;
  font-weight: 600;
  white-space: nowrap;
}

/* Tfoot */
.woocommerce table.shop_table tfoot th {
  text-align: left;
  padding: 12px 0;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  font-size: 14px;
  border: none;
}

.woocommerce table.shop_table tfoot td {
  text-align: right;
  padding: 12px 0;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  border: none;
}

/* Total */
.woocommerce table.shop_table tr.order-total th {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.woocommerce table.shop_table tr.order-total td {
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.woocommerce table.shop_table tr.order-total .woocommerce-Price-amount {
  color: var(--primary);
  font-size: 22px;
  font-weight: 800;
}

/* ==========================================
   PAYMENT SECTION
   ========================================== */
#payment.woocommerce-checkout-payment {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 24px;
  margin-top: 24px;
}

#payment ul.wc_payment_methods.payment_methods {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

#payment ul.payment_methods li.wc_payment_method {
  margin-bottom: 10px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  transition: border-color 0.2s ease, background 0.2s ease;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
}

/* Highlight selected payment method */
#payment ul.payment_methods li.wc_payment_method:has(input.input-radio:checked) {
  border-color: var(--primary);
  background: rgba(217, 86, 76, 0.05);
}

#payment ul.payment_methods li input.input-radio {
  accent-color: var(--primary);
  transform: scale(1.15);
  margin-right: 10px;
  cursor: pointer;
}

#payment ul.payment_methods li label {
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  font-size: 15px;
  flex: 1;
}

/* Payment description box */
#payment div.payment_box {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid var(--primary);
  padding: 12px 16px;
  margin-top: 10px;
  border-radius: 0 8px 8px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

/* ==========================================
   PLACE ORDER BUTTON
   ========================================== */
#payment .form-row.place-order {
  margin-top: 20px;
  padding: 0 !important;
}

button#place_order.button.alt {
  display: block;
  width: 100%;
  padding: 18px 24px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), #c0392b);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 4px 20px rgba(217, 86, 76, 0.25);
  font-family: inherit;
}

button#place_order.button.alt:hover {
  background: linear-gradient(135deg, #c0392b, var(--primary));
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(217, 86, 76, 0.4);
}

/* Generic WooCommerce buttons (coupon, etc.) */
.woocommerce button.button:not(#place_order) {
  padding: 14px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  background: var(--primary);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
}

.woocommerce button.button:not(#place_order):hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
}

/* ==========================================
   TERMS & PRIVACY
   ========================================== */
.woocommerce-terms-and-conditions-wrapper {
  margin-bottom: 16px;
}

.woocommerce-privacy-policy-text p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
  line-height: 1.6;
  margin: 0;
}

.woocommerce-privacy-policy-text a,
.woocommerce-privacy-policy-link {
  color: var(--primary);
  text-decoration: underline;
}

/* ==========================================
   VALIDATION STATES
   ========================================== */
.woocommerce form .form-row.woocommerce-invalid .input-text,
.woocommerce form .form-row.woocommerce-invalid-required-field .input-text {
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 2px rgba(217, 86, 76, 0.1) !important;
}

.woocommerce form .form-row.woocommerce-validated .input-text {
  border-color: #34d399 !important;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 767px) {
  .col2-set#customer_details {
    padding: 24px 20px;
  }

  h3#order_review_heading {
    padding: 20px 20px 14px;
  }

  #order_review.woocommerce-checkout-review-order {
    padding: 0 20px 24px;
  }

  p.form-row-first,
  p.form-row-last {
    width: 100% !important;
    display: block !important;
    margin-right: 0 !important;
  }

  #payment.woocommerce-checkout-payment {
    padding: 20px 16px;
  }

  .woocommerce table.shop_table tr.order-total .woocommerce-Price-amount {
    font-size: 18px;
  }
}

/* ==========================================
   FOOTER
   ========================================== */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
  text-align: center;
  color: var(--muted);
  background: var(--bg);
}


/* ---- Reset & Base ---- */
.woocommerce {
  font-size: 15px;
  line-height: 1.6;
}

body.woocommerce-checkout .woocommerce {
  margin-top: 0;
}

/* ---- Main 2-Column Grid ---- */
.woocommerce-checkout form.checkout {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

@media (min-width: 768px) {
  .woocommerce-checkout form.checkout {
    display: grid;
    grid-template-columns: 1fr 420px;
    grid-template-rows: auto;
    gap: 32px;
    align-items: start;
  }

  /* Billing + Shipping spans left column */
  .col2-set#customer_details {
    grid-column: 1;
    grid-row: 1;
  }

  /* Order Review heading + table spans right column across both rows */
  #order_review_heading {
    grid-column: 2;
    grid-row: 1;
  }

  #order_review {
    grid-column: 2;
    grid-row: 2;
    position: sticky;
    top: 100px;
  }
}

/* ---- Card Containers ---- */
.col2-set#customer_details {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

#order_review_heading {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 16px 16px 0 0;
  border-bottom: none;
  padding: 24px 36px 16px;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

#order_review {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 16px 16px;
  padding: 0 36px 36px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

/* ---- Columns inside customer_details ---- */
.col2-set .col-1,
.col2-set .col-2 {
  width: 100%;
  max-width: 100%;
  float: none;
  padding: 0;
  margin: 0;
}

.col2-set .col-2 {
  margin-top: 8px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

/* ---- Section Headings ---- */
.woocommerce h3,
.woocommerce-checkout h3 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: -0.3px;
}

/* ---- Form Rows ---- */
.woocommerce form .form-row {
  margin-bottom: 18px;
  padding: 0;
  width: 100% !important;
  float: none !important;
  box-sizing: border-box;
}

/* Side-by-side fields (first/last name, city/state) */
.woocommerce form .form-row-first,
.woocommerce form .form-row-last {
  width: 48.5% !important;
  display: inline-block;
  vertical-align: top;
}

.woocommerce form .form-row-first {
  margin-right: 3% !important;
}

/* ---- Labels ---- */
.woocommerce form .form-row label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.woocommerce form .form-row label .required {
  color: var(--primary);
}

.woocommerce form .form-row label.checkbox {
  display: inline-flex;
  align-items: center;
  text-transform: none;
  font-weight: 400;
  font-size: 14px;
  color: var(--muted);
}

/* ---- Inputs, Selects, Textareas ---- */
.woocommerce input[type="text"],
.woocommerce input[type="email"],
.woocommerce input[type="tel"],
.woocommerce input[type="number"],
.woocommerce input[type="password"],
.woocommerce textarea,
.woocommerce select,
.woocommerce .select2-selection {
  width: 100% !important;
  box-sizing: border-box;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 15px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  font-family: inherit;
  outline: none;
}

.woocommerce textarea {
  min-height: 100px;
  resize: vertical;
}

.woocommerce select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23A0A4B8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
}

/* Focus State */
.woocommerce input:focus,
.woocommerce textarea:focus,
.woocommerce select:focus {
  border-color: var(--primary);
  background: rgba(217, 86, 76, 0.05);
  box-shadow: 0 0 0 3px rgba(217, 86, 76, 0.12);
}

/* Placeholder */
.woocommerce input::placeholder,
.woocommerce textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

/* ---- Select2 (Country/State dropdowns) ---- */
.select2-container {
  width: 100% !important;
}

.select2-container .select2-selection--single {
  height: 50px !important;
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1.5px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 10px !important;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  line-height: 50px !important;
  color: #fff !important;
  padding-left: 16px !important;
  font-size: 15px !important;
}

.select2-container .select2-selection--single .select2-selection__arrow {
  height: 50px !important;
  right: 12px !important;
}

.select2-dropdown {
  background: var(--bg-surface) !important;
  border: 1px solid var(--border) !important;
  border-radius: 10px !important;
  overflow: hidden;
}

.select2-results__option {
  color: #fff !important;
  padding: 10px 16px !important;
}

.select2-results__option--highlighted {
  background: var(--primary) !important;
  color: #fff !important;
}

.select2-search--dropdown .select2-search__field {
  background: var(--bg) !important;
  border: 1px solid var(--border) !important;
  color: #fff !important;
  border-radius: 8px !important;
  padding: 10px 14px !important;
}

/* ---- Order Review Table ---- */
.woocommerce table.shop_table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 0;
  border: none;
}

.woocommerce table.shop_table thead th {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: rgba(255, 255, 255, 0.5);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-weight: 600;
}

.woocommerce table.shop_table td,
.woocommerce table.shop_table th {
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  text-align: left;
  color: #fff;
  font-size: 14px;
}

.woocommerce table.shop_table td.product-name {
  font-weight: 500;
}

.woocommerce table.shop_table td.product-total {
  text-align: right;
  font-weight: 600;
  color: #fff;
}

.woocommerce table.shop_table tfoot th,
.woocommerce table.shop_table tfoot td {
  border-bottom: none;
}

.woocommerce table.shop_table tfoot td {
  text-align: right;
}

.woocommerce table.shop_table .order-total th,
.woocommerce table.shop_table .order-total td {
  font-size: 20px;
  font-weight: 800;
  padding-top: 20px;
  border-top: 2px solid var(--border);
  border-bottom: none;
}

.woocommerce table.shop_table .order-total .amount {
  color: var(--primary);
  font-size: 22px;
}

/* ---- Payment Methods ---- */
#payment {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 28px;
  margin-top: 16px;
}

#payment ul.payment_methods {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

#payment ul.payment_methods li {
  margin-bottom: 12px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

#payment ul.payment_methods li:has(input:checked) {
  border-color: var(--primary);
  background: rgba(217, 86, 76, 0.06);
}

#payment ul.payment_methods li input[type="radio"] {
  accent-color: var(--primary);
  transform: scale(1.15);
  margin-right: 12px;
}

#payment ul.payment_methods li label {
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
}

#payment div.payment_box {
  background: transparent;
  border-left: 3px solid var(--primary);
  padding: 12px 16px;
  margin-top: 12px;
  margin-left: 28px;
  border-radius: 0 8px 8px 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* ---- Place Order Button ---- */
#payment .place-order {
  margin-top: 24px;
  padding: 0;
}

.woocommerce #payment #place_order,
.woocommerce button.button {
  width: 100%;
  padding: 18px;
  font-size: 17px;
  font-weight: 700;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), #c0392b);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  box-shadow: 0 4px 20px rgba(217, 86, 76, 0.3);
}

.woocommerce #payment #place_order:hover,
.woocommerce button.button:hover {
  background: linear-gradient(135deg, #c0392b, var(--primary));
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(217, 86, 76, 0.45);
}

.woocommerce button.button:not(#place_order) {
  width: auto;
  font-size: 14px;
  padding: 12px 24px;
  text-transform: none;
}

/* ---- Notices & Alerts ---- */
.woocommerce-error,
.woocommerce-message,
.woocommerce-info {
  border-radius: 10px;
  padding: 16px 20px;
  margin-bottom: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  color: #fff;
  list-style: none;
}

.woocommerce-error {
  border-left: 4px solid var(--primary);
  background: rgba(217, 86, 76, 0.08);
}

.woocommerce-message {
  border-left: 4px solid #34d399;
  background: rgba(52, 211, 153, 0.08);
}

.woocommerce-info {
  border-left: 4px solid #3b82f6;
  background: rgba(59, 130, 246, 0.08);
}

.woocommerce-error li {
  margin: 0;
}

.woocommerce-form-coupon-toggle .woocommerce-info {
  flex-direction: row;
  align-items: center;
}

.woocommerce-info a,
.woocommerce-message a {
  color: var(--primary);
  font-weight: 600;
}

/* ---- Coupon Form ---- */
.woocommerce form.checkout_coupon {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
  display: flex;
  gap: 12px;
  align-items: flex-end;
}

.woocommerce form.checkout_coupon .form-row {
  margin-bottom: 0;
  flex: 1;
}

/* ---- Terms & Privacy ---- */
.woocommerce-terms-and-conditions-wrapper {
  margin-top: 16px;
}

.woocommerce-privacy-policy-text p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.woocommerce-privacy-policy-text a {
  color: var(--primary);
}

/* ---- Responsive ---- */
@media (max-width: 767px) {

  .col2-set#customer_details,
  #order_review_heading,
  #order_review {
    padding: 24px 20px;
  }

  .woocommerce form .form-row-first,
  .woocommerce form .form-row-last {
    width: 100% !important;
    display: block;
    margin-right: 0 !important;
  }

  #payment {
    padding: 20px 16px;
  }
}

/* ---- Footer fallback ---- */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
  text-align: center;
  color: var(--muted);
  background: var(--bg);
}

/* =========================================
   WOOCOMMERCE BLOCKS (Gutenberg Checkout)
   ========================================= */
.wc-block-checkout {
  --wc-background-color: transparent !important;
  --wc-input-background-color: rgba(255, 255, 255, 0.06) !important;
  --wc-input-text-color: #ffffff !important;
  --wc-text-color: #A0A4B8 !important;
  --wc-secondary-text-color: #A0A4B8 !important;
}

.wc-block-components-checkout-step,
.wc-block-components-panel,
.wc-block-checkout__order-summary {
  background: var(--bg-surface) !important;
  border-radius: 16px !important;
  border: 1px solid var(--border) !important;
  padding: 24px !important;
  margin-bottom: 24px !important;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15) !important;
}

.wc-block-components-checkout-step__title,
.wc-block-components-title {
  color: #ffffff !important;
}

.wc-block-components-text-input input,
.wc-block-components-combobox input,
.wc-block-components-radio-control {
  background-color: rgba(255, 255, 255, 0.06) !important;
  color: #ffffff !important;
  border: 1.5px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 10px !important;
}

.wc-block-components-text-input label {
  color: rgba(255, 255, 255, 0.5) !important;
}

.wc-block-components-notice-banner.is-error {
  background-color: rgba(217, 86, 76, 0.08) !important;
  border: 1px solid var(--primary) !important;
  color: var(--primary) !important;
  border-radius: 10px !important;
}

.wc-block-components-notice-banner.is-error svg {
  fill: var(--primary) !important;
}

/* =========================================
   CHECKOUT — NOVOS COMPONENTES (stepper, trust, payments, suporte)
   ========================================= */

.custom-checkout-page {
  padding: 48px 0 80px;
  background:
    radial-gradient(ellipse at top, rgba(217, 86, 76, 0.08), transparent 50%),
    var(--bg);
}

/* ---- Stepper ---- */
.checkout-stepper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin: 0 auto 48px;
  max-width: 520px;
  gap: 0;
}

.checkout-stepper__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.checkout-stepper__num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 2px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.25s ease;
}

.checkout-stepper__item.is-active .checkout-stepper__num {
  background: linear-gradient(135deg, #D9564C, #c0392b);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 6px 16px rgba(217, 86, 76, 0.35);
}

.checkout-stepper__item.is-current .checkout-stepper__num {
  background: rgba(217, 86, 76, 0.12);
  border-color: var(--primary);
  color: var(--primary);
}

.checkout-stepper__label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.checkout-stepper__item.is-active .checkout-stepper__label,
.checkout-stepper__item.is-current .checkout-stepper__label {
  color: #fff;
}

.checkout-stepper__line {
  flex: 1;
  min-width: 50px;
  max-width: 80px;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
  margin-top: 19px;
}

.checkout-stepper__line.is-active {
  background: linear-gradient(90deg, var(--primary), rgba(217, 86, 76, 0.3));
}

/* ---- Hero header ---- */
.checkout-page-header {
  text-align: center;
  margin-bottom: 48px;
}

.checkout-page-header__title {
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 12px;
  letter-spacing: -0.8px;
}

.checkout-page-header__subtitle {
  color: var(--muted);
  font-size: 16px;
  margin: 0 0 28px;
  line-height: 1.5;
}

.checkout-trust-pills {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-pill--green {
  color: #10B981;
  background: rgba(16, 185, 129, 0.08);
  border-color: rgba(16, 185, 129, 0.2);
}

/* ---- Item no resumo com thumbnail ---- */
.checkout-cart-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.checkout-cart-item__content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.checkout-cart-item__thumb {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  flex-shrink: 0;
  display: block;
}

.checkout-cart-item__thumb--placeholder {
  display: inline-block;
}

.checkout-cart-item__name {
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  line-height: 1.4;
}

.checkout-cart-item__name a {
  color: #fff;
}

.checkout-cart-item__name a:hover {
  color: var(--primary);
}

.checkout-cart-item__remove {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: underline;
  text-underline-offset: 2px;
  width: fit-content;
}

.checkout-cart-item__remove:hover {
  color: #ff7a7a;
}

.woocommerce table.shop_table td.product-name {
  padding: 16px 8px 16px 0;
}

/* ---- Strip de metodos de pagamento ---- */
.checkout-payments-strip {
  margin-top: 40px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  text-align: center;
}

.checkout-payments-strip__title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.4);
  margin: 0 0 20px;
  font-weight: 700;
}

.payment-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.payment-badge {
  background: #fff;
  border-radius: 6px;
  padding: 6px 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  height: 36px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.payment-badge--text {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  gap: 6px;
  padding: 6px 14px;
  box-shadow: none;
}

/* ---- Card de suporte ---- */
.checkout-help-card {
  margin-top: 24px;
  padding: 28px 32px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(16, 185, 129, 0.02));
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.checkout-help-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(16, 185, 129, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.checkout-help-card__text {
  flex: 1;
}

.checkout-help-card__text h4 {
  margin: 0 0 4px;
  font-size: 16px;
  color: #fff;
  font-weight: 700;
}

.checkout-help-card__text p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

.checkout-help-card__btn {
  background: #10B981;
  color: #fff;
  padding: 12px 22px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.checkout-help-card__btn:hover {
  background: #059669;
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.3);
}

/* ---- Responsivo ---- */
@media (max-width: 600px) {
  .custom-checkout-page {
    padding: 32px 0 60px;
  }

  .checkout-stepper {
    max-width: 100%;
  }
  .checkout-stepper__num {
    width: 36px;
    height: 36px;
    font-size: 13px;
  }
  .checkout-stepper__label {
    font-size: 11px;
  }
  .checkout-stepper__line {
    min-width: 30px;
    margin-top: 17px;
  }

  .checkout-page-header__title {
    font-size: 26px;
  }
  .checkout-page-header__subtitle {
    font-size: 14px;
  }

  .checkout-payments-strip {
    padding: 24px 16px;
  }

  .checkout-help-card {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }
}

.wc-block-components-totals-item__value,
.wc-block-components-product-name {
  color: #ffffff !important;
}

.wc-block-components-order-summary-item__quantity {
  background-color: var(--primary) !important;
  color: #ffffff !important;
  border-radius: 50% !important;
  font-size: 12px !important;
}

/* =========================================
   CHECKOUT — LAYOUT 2 COLUNAS + FORM STYLING
   ========================================= */

/* Container do checkout — impede overflow horizontal vindo de qualquer descendente */
.custom-checkout-page {
  overflow-x: clip;
}

.checkout-form-wrapper--2col,
.checkout-form-wrapper--2col .woocommerce {
  display: block;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  min-width: 0;
}

.checkout-form-wrapper--2col form.woocommerce-checkout {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 360px);
  grid-template-rows: auto 1fr;
  grid-template-areas:
    "billing summary-head"
    "billing summary";
  gap: 0 28px;
  align-items: start;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.checkout-form-wrapper--2col #customer_details {
  grid-area: billing;
  min-width: 0;
  max-width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 28px;
  /* flow-root cria um BFC que contem floats internos sem hacks de overflow */
  display: flow-root;
  box-sizing: border-box;
}

.checkout-form-wrapper--2col #customer_details .col-1,
.checkout-form-wrapper--2col #customer_details .col-2 {
  width: 100% !important;
  max-width: 100%;
  float: none !important;
  margin: 0 0 8px;
  padding: 0;
  display: block;
}

.checkout-form-wrapper--2col #order_review_heading {
  grid-area: summary-head;
  min-width: 0;
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  padding: 24px 24px 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: none;
  border-radius: 16px 16px 0 0;
}

.checkout-form-wrapper--2col #order_review {
  grid-area: summary;
  min-width: 0;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-top: none;
  border-radius: 0 0 16px 16px;
  padding: 4px 24px 24px;
  align-self: start;
}

/* Heading "Dados de cobranca" */
.checkout-form-wrapper--2col #customer_details h3 {
  margin: 0 0 20px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

/* Wrappers internos do Woo viram flexbox com wrap (mais previsivel que grid aqui) */
.checkout-form-wrapper--2col .woocommerce-billing-fields__field-wrapper,
.checkout-form-wrapper--2col .woocommerce-shipping-fields__field-wrapper,
.checkout-form-wrapper--2col .woocommerce-additional-fields__field-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 16px;
  width: 100%;
}

/* Linhas dos campos — 100% width por padrao via flex-basis */
.checkout-form-wrapper--2col p.form-row,
.checkout-form-wrapper--2col .form-row {
  display: block !important;
  flex: 1 1 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  width: auto !important;
  min-width: 0 !important;
  max-width: 100% !important;
  float: none !important;
  clear: none !important;
  box-sizing: border-box !important;
}

/* Nome / Sobrenome — exatos 50% cada (menos metade do gap de 16px = 8px) */
.checkout-form-wrapper--2col p.form-row-first,
.checkout-form-wrapper--2col .form-row-first {
  flex: 1 1 calc(50% - 8px) !important;
  max-width: calc(50% - 8px) !important;
  width: calc(50% - 8px) !important;
}

.checkout-form-wrapper--2col p.form-row-last,
.checkout-form-wrapper--2col .form-row-last {
  flex: 1 1 calc(50% - 8px) !important;
  max-width: calc(50% - 8px) !important;
  width: calc(50% - 8px) !important;
}

.checkout-form-wrapper--2col p.form-row-wide,
.checkout-form-wrapper--2col p.form-row-full,
.checkout-form-wrapper--2col .form-row-wide,
.checkout-form-wrapper--2col .form-row-full {
  flex: 1 1 100% !important;
  max-width: 100% !important;
  width: 100% !important;
}

/* Esconde col-2 (campos adicionais/shipping) — produto digital nao precisa */
.checkout-form-wrapper--2col #customer_details .col-2 {
  display: none !important;
}

.checkout-form-wrapper--2col .form-row label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.checkout-form-wrapper--2col .form-row .required {
  color: var(--primary);
  text-decoration: none;
}

/* span.woocommerce-input-wrapper envolve o input — precisa virar block */
.checkout-form-wrapper--2col .form-row .woocommerce-input-wrapper {
  display: block;
  width: 100%;
}

/* Remove o padding default do WC (.form-row { padding: 3px }) */
.checkout-form-wrapper--2col p.form-row {
  padding: 0 !important;
}

.checkout-form-wrapper--2col .form-row input.input-text,
.checkout-form-wrapper--2col .form-row textarea,
.checkout-form-wrapper--2col .form-row select,
.checkout-form-wrapper--2col .select2-container .select2-selection--single {
  width: 100% !important;
  padding: 14px 16px !important;
  background: #14151f !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  border-radius: 10px !important;
  color: #fff !important;
  font-size: 14px !important;
  font-family: inherit !important;
  line-height: 1.4 !important;
  box-sizing: border-box !important;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s !important;
  height: auto !important;
  min-height: 48px !important;
}

.checkout-form-wrapper--2col .form-row input.input-text:focus,
.checkout-form-wrapper--2col .form-row textarea:focus,
.checkout-form-wrapper--2col .form-row select:focus,
.checkout-form-wrapper--2col .select2-container--focus .select2-selection--single,
.checkout-form-wrapper--2col .select2-container--open .select2-selection--single {
  outline: none !important;
  border-color: var(--primary) !important;
  background: #1a1c28 !important;
  box-shadow: 0 0 0 3px rgba(217, 86, 76, 0.18) !important;
}

.checkout-form-wrapper--2col .form-row input::placeholder,
.checkout-form-wrapper--2col .form-row textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

/* select2 ajustes (componente do Woo p/ pais) */
.checkout-form-wrapper--2col .select2-container--default .select2-selection--single {
  height: auto;
  padding: 12px 14px;
}
.checkout-form-wrapper--2col .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #fff;
  padding: 0;
  line-height: 1.4;
}
.checkout-form-wrapper--2col .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100%;
  right: 8px;
}

/* Resumo do pedido (tabela) */
.checkout-form-wrapper--2col #order_review table.shop_table {
  width: 100%;
  border: none;
  border-radius: 0;
  margin: 0 0 16px;
  background: transparent;
  border-collapse: collapse;
}

.checkout-form-wrapper--2col #order_review table.shop_table thead {
  display: none;
}

.checkout-form-wrapper--2col #order_review table.shop_table th,
.checkout-form-wrapper--2col #order_review table.shop_table td {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 14px 0;
  color: #fff;
  font-size: 14px;
}

.checkout-form-wrapper--2col #order_review table.shop_table tfoot th,
.checkout-form-wrapper--2col #order_review table.shop_table tfoot td {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.checkout-form-wrapper--2col #order_review table.shop_table .order-total th,
.checkout-form-wrapper--2col #order_review table.shop_table .order-total td {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  border-bottom: none;
  padding-top: 16px;
}

.checkout-form-wrapper--2col #order_review table.shop_table .order-total .amount {
  color: var(--primary);
}

/* Metodos de pagamento */
.checkout-form-wrapper--2col #payment {
  background: transparent;
  border-radius: 0;
  margin-top: 8px;
}

.checkout-form-wrapper--2col #payment ul.payment_methods {
  padding: 0;
  margin: 0 0 16px;
  border: none;
  list-style: none;
}

.checkout-form-wrapper--2col #payment ul.payment_methods li {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 12px 14px;
  margin: 0 0 8px;
  list-style: none;
}

.checkout-form-wrapper--2col #payment ul.payment_methods li label {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  margin-left: 6px;
  cursor: pointer;
}

.checkout-form-wrapper--2col #payment ul.payment_methods .payment_box {
  background: rgba(0, 0, 0, 0.25) !important;
  color: rgba(255, 255, 255, 0.7);
  border-radius: 8px;
  padding: 12px 14px;
  margin-top: 10px;
  font-size: 13px;
  line-height: 1.5;
}

.checkout-form-wrapper--2col #payment ul.payment_methods .payment_box::before {
  display: none;
}

/* Botao final */
.checkout-form-wrapper--2col #place_order,
.checkout-form-wrapper--2col button#place_order {
  width: 100%;
  background: linear-gradient(135deg, var(--primary), var(--primary-hover));
  color: #fff;
  border: none;
  padding: 16px 24px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
  margin-top: 8px;
  font-family: inherit;
}

.checkout-form-wrapper--2col #place_order:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(217, 86, 76, 0.35);
}

/* Termos */
.checkout-form-wrapper--2col .woocommerce-terms-and-conditions-wrapper {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin: 12px 0;
}

/* Cupom inline (form-coupon do Woo dentro do form principal nao costuma aparecer aqui;
   o aviso "Have a coupon?" vem como notice no topo) */
.woocommerce-form-coupon-toggle,
.woocommerce-form-coupon {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 14px 18px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.woocommerce-form-coupon-toggle .woocommerce-info {
  background: transparent;
  border: none;
  padding: 0;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.woocommerce-form-coupon-toggle .woocommerce-info::before {
  display: none;
}

.woocommerce-form-coupon-toggle a.showcoupon {
  color: var(--primary);
  font-weight: 700;
}

.woocommerce-form-coupon p {
  margin: 0 0 10px;
}

.checkout-form-wrapper--2col .woocommerce-form-coupon .form-row,
.woocommerce-form-coupon .form-row {
  display: flex !important;
  flex-direction: row !important;
  gap: 10px;
  margin: 10px 0 0 !important;
  width: 100% !important;
  float: none !important;
  grid-column: auto !important;
}

.woocommerce-form-coupon .form-row input.input-text {
  flex: 1;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: #fff;
  font-size: 14px;
}

.woocommerce-form-coupon .form-row .button {
  padding: 12px 18px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}

/* Avisos do Woo (errors/info/success) */
.woocommerce-NoticeGroup .woocommerce-error,
.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 3px solid var(--primary);
  color: #fff;
  padding: 14px 18px;
  border-radius: 10px;
  margin: 0 0 20px;
  list-style: none;
}

.woocommerce-message {
  border-left-color: #10B981;
}

.woocommerce-error {
  border-left-color: #ef4444;
}

.woocommerce-error a, .woocommerce-info a, .woocommerce-message a {
  color: var(--primary);
}

/* Responsivo */
@media (max-width: 900px) {
  .checkout-form-wrapper--2col form.woocommerce-checkout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "billing"
      "summary-head"
      "summary";
    gap: 24px 0;
  }
  .checkout-form-wrapper--2col p.form-row-first,
  .checkout-form-wrapper--2col p.form-row-last,
  .checkout-form-wrapper--2col .form-row-first,
  .checkout-form-wrapper--2col .form-row-last {
    flex: 1 1 100% !important;
    max-width: 100% !important;
    width: 100% !important;
  }
}

/* =========================================
   SELECT2 DROPDOWN — renderizado no <body>, fora do .checkout-form-wrapper
   Precisa de seletores globais sem o escopo do --2col
   ========================================= */

.select2-container--default .select2-dropdown,
.select2-container--open .select2-dropdown {
  background: #14151f;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.select2-container--default .select2-search--dropdown {
  padding: 10px;
  background: #14151f;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  background: #1a1c28 !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 8px !important;
  color: #fff !important;
  padding: 10px 12px !important;
  font-size: 14px !important;
  font-family: inherit !important;
  outline: none !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field:focus {
  border-color: var(--primary) !important;
  box-shadow: 0 0 0 2px rgba(217, 86, 76, 0.18) !important;
}

.select2-container--default .select2-results__options {
  background: #14151f;
  max-height: 280px;
  padding: 4px;
}

.select2-container--default .select2-results__option {
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  padding: 10px 14px;
  font-size: 14px;
  border-radius: 6px;
  margin: 2px 0;
  cursor: pointer;
}

.select2-container--default .select2-results__option--highlighted,
.select2-container--default .select2-results__option--highlighted[aria-selected],
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background: var(--primary) !important;
  color: #fff !important;
}

.select2-container--default .select2-results__option[aria-selected=true],
.select2-container--default .select2-results__option--selected {
  background: rgba(217, 86, 76, 0.18) !important;
  color: #fff !important;
  font-weight: 600;
}

.select2-container--default .select2-results__option--disabled {
  color: rgba(255, 255, 255, 0.3);
  cursor: not-allowed;
}

/* Scrollbar do select2 */
.select2-container--default .select2-results__options::-webkit-scrollbar {
  width: 8px;
}
.select2-container--default .select2-results__options::-webkit-scrollbar-track {
  background: transparent;
}
.select2-container--default .select2-results__options::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 4px;
}

/* A flecha do select (chevron) — recolore para branco */
.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: rgba(255, 255, 255, 0.6) transparent transparent transparent;
}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent rgba(255, 255, 255, 0.6) transparent;
}

/* =========================================
   FORMULARIO DE CONTATO — alerts de sucesso/erro
   ========================================= */
.contact-form__alert {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 12px;
  margin: 0 0 18px;
  border: 1px solid transparent;
}

.contact-form__alert--success {
  background: rgba(16, 185, 129, 0.08);
  border-color: rgba(16, 185, 129, 0.25);
}

.contact-form__alert--error {
  background: rgba(239, 68, 68, 0.08);
  border-color: rgba(239, 68, 68, 0.25);
}

.contact-form__alert svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-form__alert > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1.45;
}

.contact-form__alert strong {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.contact-form__alert span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}


/* =========================================
   CHECKOUT — LAYOUT REVISADO
   ========================================= */

/* Grid principal dos campos de billing */
#customer_details .woocommerce-billing-fields__field-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 20px;
  row-gap: 0;
}

/* CNPJ oculto por padrão — JS mostra quando Pessoa Jurídica */
#billing_cnpj_field { display: none; }

/* ---  Campos linha inteira  --- */
#billing_first_name_field,
#billing_last_name_field   { grid-column: span 1; }

#billing_email_field,
#billing_phone_field,
#billing_persontype_field,
#billing_cpf_field,
#billing_cnpj_field,
#billing_country_field,
#billing_address_1_field,
#billing_neighborhood_field { grid-column: 1 / -1; }

/* ---  CEP (col 1)  +  Número (col 2)  na mesma linha  --- */
#billing_postcode_field { grid-column: 1; }
#billing_number_field   { grid-column: 2; }

/* ---  Cidade (col 1)  +  Estado (col 2)  --- */
#billing_city_field  { grid-column: 1; }
#billing_state_field { grid-column: 2; }

/* ---  Espaçamento entre campos  --- */
.woocommerce-checkout .form-row {
  margin: 0 0 14px 0 !important;
  padding: 0 !important;
}

/* ---  Labels  --- */
.woocommerce-checkout .form-row label,
.woocommerce-checkout .form-row > label {
  display: block !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.7px !important;
  text-transform: uppercase !important;
  color: rgba(255,255,255,0.5) !important;
  margin-bottom: 6px !important;
}
.woocommerce-checkout .required { color: var(--primary) !important; }

/* ---  Inputs e selects  --- */
.woocommerce-checkout .form-row input.input-text,
.woocommerce-checkout .form-row select {
  width: 100% !important;
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid rgba(255,255,255,0.13) !important;
  border-radius: 10px !important;
  color: #fff !important;
  padding: 12px 14px !important;
  font-size: 14px !important;
  box-sizing: border-box !important;
  transition: border-color .2s, box-shadow .2s !important;
  -webkit-appearance: none;
  appearance: none;
  display: block !important;
}
.woocommerce-checkout .form-row input.input-text:focus,
.woocommerce-checkout .form-row select:focus {
  border-color: var(--primary) !important;
  background: rgba(255,255,255,0.09) !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(217,86,76,0.15) !important;
}
.woocommerce-checkout .form-row input.input-text::placeholder {
  color: rgba(255,255,255,0.22) !important;
}

/* Select — seta customizada */
.woocommerce-checkout .form-row select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.4)' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 12px center !important;
  padding-right: 38px !important;
  cursor: pointer !important;
  color: rgba(255,255,255,0.9) !important;
}
.woocommerce-checkout .form-row select option {
  background: #1e1e30;
  color: #fff;
}

/* Título "Dados de cobrança" */
.woocommerce-billing-fields h3 {
  font-size: 15px !important;
  font-weight: 700 !important;
  color: #fff !important;
  margin: 0 0 22px 0 !important;
  padding-bottom: 14px !important;
  border-bottom: 1px solid rgba(255,255,255,0.07) !important;
  letter-spacing: -0.2px !important;
}

/* Botão Finalizar Pedido */
#place_order {
  background: var(--primary) !important;
  border: none !important;
  border-radius: 12px !important;
  color: #fff !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  padding: 15px 24px !important;
  width: 100% !important;
  cursor: pointer !important;
  transition: background .2s, transform .1s !important;
  margin-top: 8px !important;
  letter-spacing: 0.2px !important;
}
#place_order:hover  { background: #c4473f !important; transform: translateY(-1px) !important; }
#place_order:active { transform: translateY(0) !important; }

/* Mobile — 1 coluna */
@media (max-width: 600px) {
  #customer_details .woocommerce-billing-fields__field-wrapper {
    grid-template-columns: 1fr;
  }
  #billing_postcode_field,
  #billing_number_field,
  #billing_city_field,
  #billing_state_field {
    grid-column: 1;
  }
  .col2-set#customer_details {
    padding: 20px !important;
  }
}
