/* /public_html/css/promocional.css
 * Layout promocional (substitui o “black friday” por campanha genérica)
 * Mantém a estética forte, idêntico ao original fornecido.
 */

:root {
  --brand-purple: #4d244b;
  --brand-orange: #f19443;
  --bf-black: #0a0a0a;
  --bf-dark-gray: #1c1c1c;
  --bf-red: #ff0040;
  --bf-yellow: #f9e32c;
  --text-white: #fff;
  --text-gray: #ccc;
  --card-gray: #3d3838;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: 0;
}

body {
  font-family: 'Raleway', sans-serif;
  background-color: var(--bf-black);
  color: var(--text-white);
  overflow-x: hidden;
  padding-bottom: 80px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
}

strong {
  font-weight: 700;
  color: var(--text-white);
}

a {
  text-decoration: none;
  transition: .3s;
}

img {
  max-width: 100%;
  height: auto;
}

.text-orange { color: var(--brand-orange); }
.text-purple { color: var(--brand-purple); }
.text-yellow { color: var(--bf-yellow); }

.bg-gradient-dark {
  background: linear-gradient(180deg, #1a1a1a 0, #000000 100%);
}

.section-padding { padding: 60px 0; }

.btn-cta {
  display: inline-block;
  background: var(--brand-orange);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.2rem;
  padding: 15px 30px;
  border-radius: 50px;
  border: 2px solid var(--brand-orange);
  text-align: center;
  box-shadow: 0 0 15px rgba(241, 148, 67, 0.5);
  animation: pulse 2s infinite;
  width: 100%;
  max-width: 350px;
}

.btn-cta:hover {
  background: #fff;
  color: var(--brand-orange);
  transform: scale(1.02);
}

.btn-outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 700;
}

.btn-outline:hover {
  background: #fff;
  color: #000;
}

.mobile-sticky-btn {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #000;
  padding: 10px 20px;
  z-index: 9999;
  border-top: 2px solid var(--brand-orange);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sticky-text {
  font-size: .8rem;
  color: #fff;
}

.sticky-text b {
  color: var(--brand-orange);
  display: block;
  font-size: 1.1rem;
}

.btn-sticky {
  background: var(--brand-orange);
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 800;
  text-transform: uppercase;
  font-size: .9rem;
}

header {
  background: rgba(0, 0, 0, 0.9);
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #333;
}

.logo-img { height: 36px; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.main-nav a.nav-link {
  font-size: .85rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  letter-spacing: .05em;
}

.main-nav a.nav-link:hover { color: var(--brand-orange); }

.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
  width: 46px;
  height: 46px;
  font-size: 1.2rem;
}

.mobile-menu-toggle:hover {
  background: #fff;
  color: #000;
}

.mobile-nav {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: #000;
  border-top: 1px solid #333;
  display: none;
  z-index: 1500;
}

.mobile-nav.open { display: block; }
.mobile-nav ul { list-style: none; }
.mobile-nav li { border-bottom: 1px solid #222; }

.mobile-nav a {
  display: block;
  padding: 12px 20px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  font-size: .9rem;
  letter-spacing: .05em;
}

.mobile-nav a:hover {
  background: #111;
  color: var(--brand-orange);
}

.hero {
  background: url('../img/bg3.jpg') center/cover no-repeat;
  position: relative;
  padding: 80px 0 60px;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0, rgba(10, 10, 10, 1) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.bf-badge {
  background: var(--bf-red);
  color: #fff;
  padding: 5px 15px;
  font-weight: 900;
  font-size: .9rem;
  display: inline-block;
  transform: rotate(-2deg);
  margin-bottom: 15px;
  border: 1px solid #fff;
}

.hero h1 {
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 10px;
  color: #fff;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.hero h1 span {
  color: var(--brand-orange);
  display: block;
  font-size: 4rem;
}

.hero p {
  font-size: 1.2rem;
  color: #ddd;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* =======================================
   CRONÔMETRO ORIGINAL RESTAURADO
   ======================================= */
.countdown-box {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 30px 0;
}

.time-unit {
  background: #222;
  border: 1px solid var(--brand-orange);
  border-radius: 8px;
  padding: 10px;
  min-width: 70px;
}

.time-unit span {
  display: block;
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--brand-orange);
  font-family: 'Montserrat', sans-serif;
}

.time-unit label {
  font-size: .7rem;
  text-transform: uppercase;
  color: #888;
}

.coupon-display {
  border: 2px dashed var(--text-white);
  padding: 15px;
  margin: 20px auto;
  max-width: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.coupon-code {
  font-size: 1.5rem;
  color: var(--bf-yellow);
  letter-spacing: 2px;
  font-weight: 900;
}

.coupon-max {
  margin-top: 6px;
  font-size: .85rem;
  color: #f1f1f1;
}

.coupon-left {
  margin-top: 2px;
  font-size: .75rem;
  color: var(--bf-yellow);
}

/* =======================================
   RESTAURAÇÃO DO BLOCO DE CLIENTES
   (Isso corrige o box e o visual esticado dos logos)
   ======================================= */
.clients-bar {
  background: #111;
  padding: 20px 0 30px;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
  text-align: center;
}

.clients-text {
  font-size: 1.04rem;
  color: #888;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.clients-logos img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 12px;
  border: 1px solid #333;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.7);
}

.pricing-section {
  background: #0a0a0a;
  position: relative;
}

.plan-card {
  background: var(--card-gray);
  color: #fff;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  position: relative;
  margin-bottom: 30px;
  transition: transform .3s;
  border: 1px solid #888;
}

.plan-card.featured {
  transform: scale(1.05);
  border: 4px solid var(--brand-orange);
  box-shadow: 0 0 30px rgba(241, 148, 67, 0.3);
  z-index: 2;
}

.discount-tag {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--bf-red);
  color: #fff;
  padding: 5px 20px;
  border-radius: 20px;
  font-weight: 800;
  font-size: .9rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
}

.plan-name {
  font-size: 1.4rem;
  color: #fff;
  margin-bottom: 10px;
}

.old-price {
  text-decoration: line-through;
  color: #e0e0e0;
  font-size: 1rem;
  display: block;
  margin-bottom: 5px;
}

.new-price {
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.new-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--bf-yellow);
}

.installments {
  font-size: .9rem;
  color: #f1f1f1;
  margin-bottom: 15px;
}

.cash-price-box {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  padding: 8px;
  border-radius: 6px;
  font-size: .85rem;
  margin-bottom: 20px;
}

.features-list {
  list-style: none;
  text-align: left;
  margin-bottom: 25px;
  padding: 0 10px;
}

.features-list li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: .9rem;
  color: #f1f1f1;
}

.features-list li i {
  color: #25d366;
  margin-right: 8px;
}

.features-list li.disabled { color: rgba(255, 255, 255, 0.55); }
.features-list li.disabled i { color: rgba(255, 255, 255, 0.35); }

.comparison-container {
  overflow-x: auto;
  background: #1c1c1c;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.comp-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.comp-table th {
  text-align: center;
  padding: 15px;
  color: var(--brand-orange);
  border-bottom: 1px solid #444;
  font-size: 1.1rem;
}

.comp-table td {
  padding: 12px;
  border-bottom: 1px solid #333;
  color: #ddd;
  text-align: center;
  font-size: .9rem;
}

.comp-table td:first-child {
  text-align: left;
  font-weight: 700;
  color: #fff;
  width: 30%;
}

.check {
  color: #25d366;
  font-weight: bold;
  font-size: 1.2rem;
}

.cross {
  color: #444;
  font-size: 1.5rem;
}

.addon-card {
  background: #1a1a1a;
  border: 1px solid #333;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  height: 100%;
  transition: .3s;
}

.addon-card:hover { border-color: var(--brand-orange); }

.addon-icon {
  font-size: 2rem;
  color: var(--brand-orange);
  margin-bottom: 15px;
}

.text-gray { color: var(--text-gray); }

.float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 100px;
  right: 25px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
}

.my-float { margin-top: 0; }

#modalWhatsapp, #modalRestaurante {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
  z-index: 10000;
}

#modalWhatsapp>div, #modalRestaurante>div {
  background: #fff;
  max-width: 450px;
  margin: 100px auto;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  font-family: sans-serif;
  position: relative;
}

#contato {
  padding: 80px 0 70px;
  background: #000;
}

#contato .contact-wrapper {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 15px;
}

#contato .contact-title {
  text-align: center;
  margin-bottom: 25px;
}

#contato .contact-title h2 {
  font-size: 1.9rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 8px;
}

#contato .contact-title p {
  font-size: .9rem;
  color: var(--text-gray);
  max-width: 420px;
  margin: 0 auto;
}

#contato .contact-alert {
  margin-top: 18px;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: .85rem;
  background: #14302a;
  border: 1px solid #25d366;
  color: #e5fff3;
}

#contato .contact-card {
  background: #111;
  border-radius: 18px;
  padding: 30px 24px 26px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.7);
}

#contato .contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

#contato .contact-field label {
  display: block;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: #fff;
}

#contato .contact-field input,
#contato .contact-field select,
#contato .contact-field textarea {
  width: 100%;
  background: #000;
  border-radius: 12px;
  border: 1px solid #444;
  padding: 10px 12px;
  font-size: .95rem;
  color: #fff;
  font-family: 'Raleway', sans-serif;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

#contato .contact-field input::placeholder,
#contato .contact-field textarea::placeholder {
  color: #777;
}

#contato .contact-field input:focus,
#contato .contact-field select:focus,
#contato .contact-field textarea:focus {
  border-color: var(--brand-orange);
  box-shadow: 0 0 0 1px var(--brand-orange);
  background: #050505;
  outline: 0;
}

#contato .hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  overflow: hidden !important;
}

#contato .recaptcha-row {
  display: flex;
  justify-content: center;
  margin-top: 4px;
}

#contato .contact-note {
  margin-top: 10px;
  font-size: .75rem;
  color: #777;
  text-align: center;
}

#contato .contact-submit {
  margin-top: 12px;
  width: 100%;
  padding: 14px 18px;
  border-radius: 999px;
  border: 0;
  background: #fff;
  color: #000;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  letter-spacing: .14em;
  font-size: .9rem;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .1s ease, box-shadow .2s ease;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.5);
}

#contato .contact-submit:hover {
  background: var(--brand-orange);
  color: #000;
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.7);
}

#contato .contact-submit:active {
  transform: translateY(0);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.6);
}

@media(max-width:768px) {
  #contato { padding: 60px 0 90px; }
  #contato .contact-card { padding: 24px 18px 22px; }
  #contato .contact-title h2 { font-size: 1.5rem; }
}

/* =======================================
   RESTAURAÇÃO DO TAMANHO DA LOGO DO RODAPÉ
   ======================================= */
footer {
  background: #000;
  padding: 40px 0;
  border-top: 1px solid #333;
  text-align: center;
}

footer img {
  height: 80px; 
  margin-bottom: 20px;
}

footer p { font-size: .8rem; }

footer a {
  color: #666;
  font-size: .8rem;
  margin: 0 10px;
}

footer a:hover { color: var(--brand-orange); }

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(241, 148, 67, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(241, 148, 67, 0); }
  100% { box-shadow: 0 0 0 0 rgba(241, 148, 67, 0); }
}

@media(max-width:768px) {
  .hero h1 { font-size: 2.2rem; }
  .hero h1 span { font-size: 2.8rem; }
  .plan-card.featured {
    transform: scale(1);
    margin: 20px 0;
  }
  .btn-cta {
    font-size: 1rem;
    padding: 12px 20px;
  }
  .main-nav { display: none; }
}

/* =======================================
   MODAIS DE TERMOS E PRIVACIDADE
   ======================================= */
.modal-legal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    display: none; /* Flex quando ativado via JS */
    z-index: 10005; /* Fica acima de tudo no site */
    align-items: center;
    justify-content: center;
    padding: 20px;
}


.modal-legal-box {
    background: #fff;
    width: 100%;
    max-width: 600px;
    border-radius: 16px;
    padding: 30px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
    animation: modalFadeIn 0.3s ease-out forwards;
    max-height: 90vh; /* Se a tela for pequena, o modal não passa dela */
    display: flex;
    flex-direction: column;
}

.modal-legal-box h3 {
    color: var(--brand-purple, #4d244b);
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 1.5rem;
    text-align: center;
    border-bottom: 2px solid #f1f1f1;
    padding-bottom: 15px;
}

.modal-legal-content {
    overflow-y: auto; /* Adiciona scroll interno se o texto for grande */
    flex-grow: 1;
    padding-right: 15px;
    text-align: left;
    color: #444;
    font-family: 'Raleway', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
}

.modal-legal-content p {
    margin-bottom: 15px;
}

.modal-legal-content strong {
    color: #222;
}

.modal-legal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 32px;
    color: #999;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.modal-legal-close:hover {
    color: var(--bf-red, #ff0040);
}

/* Scrollbar customizada e fina para o conteúdo do Modal */
.modal-legal-content::-webkit-scrollbar {
    width: 6px;
}
.modal-legal-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}
.modal-legal-content::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}
.modal-legal-content::-webkit-scrollbar-thumb:hover {
    background: var(--brand-orange, #f19443);
}

@keyframes modalFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}