/* ============================================
   MAIN.CSS - Formacao Salgadeiro Profissional
   ============================================ */

/* Base
   -------------------------------------------- */
body {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--color-primary);
  line-height: 1.6;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

.text-accent {
  color: var(--color-accent);
}

.text-lakeside {
  font-family: var(--font-accent);
}

/* Button base
   -------------------------------------------- */
.btn {
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}

/* Button CTA
   -------------------------------------------- */
.btn-cta {
  background: var(--gradient-button);
  font-family: var(--font-heading);
  font-size: 27px;
  text-transform: uppercase;
  color: var(--color-white);
  border-radius: var(--btn-radius);
  padding: 18px 40px;
  box-shadow: var(--btn-shadow);
  border: none;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  font-weight: 600;
}

.btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: var(--btn-shadow-hover);
}

.btn-cta--secondary {
  font-size: 21px;
}

.btn-cta--large {
  font-size: 36px;
}

/* Button CTA Red (garantia) */
.btn-cta-red {
  background: var(--gradient-button-red);
  font-family: var(--font-heading);
  font-size: 27px;
  text-transform: uppercase;
  color: var(--color-white);
  border-radius: var(--btn-radius);
  padding: 18px 40px;
  box-shadow: var(--btn-shadow);
  border: none;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  font-weight: 600;
  text-decoration: none;
}

.btn-cta-red:hover {
  transform: translateY(-2px);
  box-shadow: var(--btn-shadow-hover);
}

/* CTA Buttons container */
.cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  max-width: 700px;
  margin: 0 auto;
}

/* Video wrapper (reutilizado em varias secoes)
   -------------------------------------------- */
.video-wrapper {
  position: relative;
  padding-top: 56.25%;
  border-radius: 10px;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===================== SECAO 1: HERO (unified) ===================== */
.section-hero {
  background: var(--gradient-hero);
  position: relative;
  padding: 20px 0 60px;
  text-align: center;
  color: var(--color-secondary);
  overflow: hidden;
}

.section-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: url('../images/background.png') no-repeat center center;
  background-size: cover;
  opacity: 0.12;
  pointer-events: none;
}

.section-hero .container {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-logo {
  max-width: 47%;
  margin: 0 auto 30px;
}

.hero-logo img {
  width: 100%;
  height: auto;
}

.section-hero h1 {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 600;
  max-width: 90%;
  margin: 0 auto 30px;
  line-height: 1.2;
  color: var(--color-secondary);
  text-transform: uppercase;
}

.section-hero .video-container {
  max-width: 800px;
  margin: 0 auto 30px;
}

.section-hero .video-wrapper {
  box-shadow: var(--shadow-video);
}

.hero-description {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  color: var(--color-dark-brown);
  max-width: 80%;
  margin: 0 auto 25px;
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-secondary);
  max-width: 80%;
  margin: 20px auto 0;
  text-transform: uppercase;
}

/* ===================== SECAO 2/9: DIVIDER ===================== */
.section-divider {
  height: 10px;
  background: var(--gradient-divider);
}

/* ===================== SECAO 3: 3 MOTIVOS ===================== */
.section-motivos {
  background: var(--gradient-dark);
  padding: 50px 0 100px;
  color: var(--color-white);
}

.section-motivos h2 {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 50px;
  color: var(--color-secondary);
  line-height: 1.3;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-transform: uppercase;
}

.motivos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.motivo-card {
  background: var(--color-white);
  border: 1px solid var(--color-white);
  border-radius: 15px;
  padding: 30px 25px;
  box-shadow: var(--shadow-card);
  color: var(--color-primary);
}

.motivo-number {
  font-family: var(--font-heading);
  font-size: 53px;
  font-weight: bold;
  color: var(--color-text);
  line-height: 1;
  margin-bottom: 10px;
}

.motivo-card h3 {
  font-family: var(--font-body);
  font-size: 30px;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 15px;
  line-height: 1.3;
}

.motivo-card p {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-dark-brown);
  line-height: 1.6;
}

/* ===================== SECAO 4/6/8: CTA MID ===================== */
.section-cta-mid {
  background: var(--color-secondary);
  padding: 40px 0;
  text-align: center;
}

/* ===================== SECAO 5: DEPOIMENTOS ===================== */
.section-depoimentos {
  background: var(--color-secondary);
  padding: 50px 0;
}

.section-depoimentos h2 {
  font-family: var(--font-heading);
  font-size: 42px;
  text-align: center;
  margin-bottom: 15px;
  color: var(--color-text);
  line-height: 1.3;
  text-transform: uppercase;
}

.depoimentos-subtitle {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  color: var(--color-primary);
  margin-bottom: 40px;
}

.depoimentos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.depoimentos-grid .depoimento-item:last-child {
  grid-column: 1 / -1;
  max-width: 540px;
  margin: 0 auto;
}

.depoimento-item {
  background: var(--color-white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-testimonial);
}

.depoimento-item .video-wrapper {
  border-radius: 0;
  box-shadow: none;
}

.depoimento-info {
  padding: 15px 20px 5px;
}

.depoimento-info h3 {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 800;
  color: var(--color-text);
}

.depoimento-quote {
  padding: 5px 20px 20px;
}

.depoimento-quote p {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-primary);
  font-style: italic;
  line-height: 1.5;
}

/* ===================== SECAO 7: CURRICULO / 10 PASSOS ===================== */
.section-curriculo {
  background: var(--color-secondary);
  padding: 60px 0;
  color: var(--color-primary);
}

.section-curriculo h2 {
  font-family: var(--font-heading);
  font-size: 42px;
  text-align: center;
  margin-bottom: 10px;
  color: var(--color-primary);
  line-height: 1.3;
}

.curriculo-subtitle {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  color: var(--color-primary);
  margin-bottom: 40px;
}

.curriculo-image {
  max-width: 600px;
  margin: 0 auto 40px;
  text-align: center;
}

.curriculo-image img {
  width: 100%;
  border-radius: 10px;
}

.curriculo-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step-card {
  background: var(--color-white);
  border-radius: 15px;
  padding: 25px 30px;
  box-shadow: var(--shadow-step);
}

.step-label {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: bold;
  color: var(--color-text);
  text-transform: uppercase;
  display: block;
  margin-bottom: 5px;
}

.step-card h3 {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 8px;
  line-height: 1.3;
}

.step-card p {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  color: var(--color-dark-brown);
  line-height: 1.6;
}

/* ===================== SECAO 10: 12 PRESENTES ===================== */
.section-bonus {
  background: var(--gradient-dark);
  padding: 60px 0;
  color: var(--color-secondary);
}

.section-bonus-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-bonus h2 {
  font-family: var(--font-heading);
  font-size: 42px;
  text-align: center;
  color: var(--color-secondary);
  margin-bottom: 10px;
  text-transform: uppercase;
}

.bonus-subtitle {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  color: var(--color-secondary);
  opacity: 0.8;
}

.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.bonus-card {
  background: var(--color-white);
  border: 1px solid var(--color-white);
  border-radius: 15px;
  padding: 25px;
  box-shadow: var(--shadow-card);
  color: var(--color-primary);
}

.presente-label {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: bold;
  color: var(--color-accent);
  text-transform: uppercase;
  display: block;
  margin-bottom: 5px;
}

.bonus-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 12px;
  line-height: 1.3;
}

.bonus-card p {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 15px;
  color: var(--color-dark-brown);
}

.bonus-pricing {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.bonus-price-old {
  font-size: 16px;
  font-weight: 500;
  color: #999;
}

.bonus-price-old s {
  color: var(--color-accent);
}

.bonus-price-new {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 800;
  color: var(--color-text);
}

/* ===================== SECAO 11: INVESTIMENTO ===================== */
.section-investimento {
  background: var(--color-secondary);
  padding: 60px 0;
}

.section-investimento h2 {
  font-family: var(--font-heading);
  font-size: 42px;
  text-align: center;
  margin-bottom: 40px;
  color: var(--color-primary);
}

/* Price list table */
.investimento-price-list {
  max-width: 700px;
  margin: 0 auto 30px;
}

.price-list-item {
  display: flex;
  align-items: baseline;
  gap: 5px;
  padding: 8px 0;
  font-family: var(--font-body);
  font-size: 18px;
  color: var(--color-primary);
}

.price-list-name {
  flex-shrink: 0;
  font-weight: 600;
}

.price-list-dots {
  flex: 1;
  border-bottom: 2px dotted rgba(71, 39, 13, 0.3);
  margin: 0 5px;
  min-width: 20px;
  position: relative;
  top: -4px;
}

.price-list-value {
  flex-shrink: 0;
  font-weight: 700;
  color: var(--color-accent);
  text-decoration: line-through;
}

.investimento-bonus-text {
  text-align: center;
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 5px;
  text-transform: uppercase;
}

.investimento-total {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 30px;
  color: var(--color-accent);
  margin-bottom: 40px;
  text-decoration: line-through;
}

/* Pricing card */
.investimento-pricing-card {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
  background: var(--color-white);
  border-radius: 15px;
  padding: 30px;
  box-shadow: var(--shadow-card);
}

.pricing-card-image {
  max-width: 300px;
  margin: 0 auto 20px;
}

.pricing-card-image img {
  width: 100%;
}

.pricing-card-desc {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 15px;
}

.pricing-card-price {
  font-family: var(--font-heading);
  font-size: 48px;
  color: var(--color-accent);
  margin-bottom: 5px;
}

.pricing-card-cash {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 5px;
}

.pricing-card-note {
  font-family: var(--font-body);
  font-size: 14px;
  color: #999;
  margin-bottom: 25px;
}

/* ===================== SECAO 12: GARANTIA ===================== */
.section-garantia {
  background: var(--gradient-guarantee);
  padding: 80px 0;
}

.garantia-content {
  display: flex;
  gap: 40px;
  align-items: center;
}

.garantia-image {
  flex: 0 0 auto;
  max-width: 350px;
}

.garantia-image img {
  width: 100%;
}

.garantia-text {
  flex: 1;
}

.garantia-text h2 {
  font-family: var(--font-heading);
  font-size: 48px;
  color: var(--color-primary);
  margin-bottom: 15px;
  line-height: 1.2;
}

.garantia-text h3 {
  font-family: var(--font-body);
  font-size: 26px;
  font-weight: 700;
  color: var(--color-dark-brown);
  margin-bottom: 20px;
  line-height: 1.3;
}

.garantia-text p {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 500;
  color: var(--color-dark-brown);
  line-height: 1.6;
  margin-bottom: 25px;
}

/* ===================== SECAO 13: BIO / SOBRE ===================== */
.section-bio {
  background: var(--gradient-bio);
  padding: 60px 0;
  color: var(--color-secondary);
}

.bio-content {
  display: flex;
  gap: 40px;
  align-items: center;
}

.bio-image {
  flex: 0 0 auto;
  max-width: 300px;
}

.bio-image img {
  width: 100%;
  border-radius: 15px;
}

.bio-text {
  flex: 1;
}

.bio-logo {
  max-width: 200px;
  margin-bottom: 20px;
}

.bio-text p {
  font-family: var(--font-body);
  font-size: 21px;
  font-weight: 300;
  color: var(--color-secondary);
  line-height: 1.8;
  margin-bottom: 15px;
}

/* ===================== SECAO 14: FAQ ===================== */
.section-faq {
  background: var(--color-white);
  padding: 60px 0;
}

.section-faq h2 {
  font-family: var(--font-heading);
  font-size: 36px;
  text-align: center;
  margin-bottom: 40px;
  color: var(--color-primary);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--color-primary);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 800;
  color: var(--color-primary);
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  padding-bottom: 0;
}

.faq-answer.active {
  max-height: 300px;
  padding-bottom: 20px;
}

.faq-answer p {
  font-family: var(--font-body);
  font-size: 21px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--color-primary);
}

/* FAQ icons */
.faq-icon {
  display: inline-flex;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.faq-icon svg {
  width: 100%;
  height: 100%;
}

.faq-icon--open {
  display: none;
}

.faq-question.active .faq-icon--closed {
  display: none;
}

.faq-question.active .faq-icon--open {
  display: inline-flex;
}

/* ===================== FOOTER ===================== */
.section-footer {
  background: var(--gradient-footer);
  padding: 40px 0;
  color: var(--color-secondary);
  text-align: center;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo img {
  max-width: 28%;
}

.footer-title {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 10px;
}

.footer-disclaimer {
  font-size: 14px;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.7;
}

/* ===================== FIXED BOTTOM BAR ===================== */
.fixed-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-banner-red);
  padding: 10px 20px;
  z-index: 100;
  color: var(--color-white);
}

.fixed-banner .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.fixed-banner-text {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
}

.fixed-banner-text s {
  opacity: 0.7;
}

#countdown {
  display: flex;
  gap: 10px;
}

.countdown-item {
  text-align: center;
  line-height: 1.2;
}

.countdown-item span {
  font-family: 'Montserrat', sans-serif;
  font-size: 36px;
  font-weight: 700;
  display: block;
  color: var(--color-white);
}

.countdown-item small {
  font-size: 11px;
  text-transform: uppercase;
  opacity: 0.8;
}
