/* =======================================================
   OKANE PROMOTORA - HIGH CONVERSION LANDING PAGE
   Arquivo: styles.css (VERSÃO LIMPA E DEFINITIVA)
   ======================================================= */

/* --- RESET --- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

/* --- VARIÁVEIS DE COR OKANE --- */
:root {
  --primary: #d32f2f;
  --primary-dark: #b71c1c;
  --secondary: #ea580c;
  --secondary-dark: #c2410c;
  --accent: #d97706;
  --accent-light: #fef3c7;
  --dark: #0f172a;
  --dark-text: #1e293b;
  --light-text: #64748b;
  --gray2: #e2e8f0; 
  --bg-light: #fffaf9; 
  --bg-white: #ffffff;
  
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 25px rgba(211, 47, 47, 0.08); 
  --shadow-hover: 0 15px 35px rgba(234, 88, 12, 0.2);
  --radius: 12px;
  --transition: all 0.3s ease-in-out;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--dark-text);
  background-color: var(--bg-light);
  line-height: 1.6;
}

h1, h2, h3, h4, .logo-text, .btn-primary, .btn-secondary, .btn-nav {
  font-family: 'Montserrat', sans-serif;
}

a { text-decoration: none; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.mt-2 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 1.5rem; }

/* --- NAVBAR --- */
.navbar {
  position: fixed;
  top: 0; 
  left: 0; right: 0;
  background-color: var(--bg-white); 
  padding: 15px 0;
  z-index: 1000;
  transition: var(--transition);
  box-shadow: 0 4px 10px rgba(0,0,0,0.05); 
}

.navbar.scrolled {
  top: 0;
  padding: 10px 0;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1); 
  background-color: var(--bg-white); 
}

/* --- ALINHAMENTO DA LOGO (NAVBAR E FOOTER) --- */
.custom-logo-icon {
  height: 65px; 
  width: 65px; /* O SEGREDO: Travamos como um quadrado para ignorar a transparência lateral da imagem */
  object-fit: contain; 
  object-position: center; 
}

.logo-wrap { 
  display: flex; 
  align-items: center; 
  gap: 8px; /* Espaço bem justinho e elegante entre o ícone e o texto */
  justify-content: flex-start; 
}

/* Ajuste no texto para ficar proporcional ao ícone */
.logo-text { 
  font-size: 1.3rem; 
  font-weight: 700; 
  color: var(--dark); 
  line-height: 1; /* Tira espaços extras em cima e embaixo do texto */
}
.nav-inner { display: flex; justify-content: space-between; align-items: center; }

.nav-links { display: flex; gap: 24px; }
.nav-links a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark-text);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--secondary); }

.btn-nav {
  background-color: var(--primary-dark);
  color: white;
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: var(--transition);
}
.btn-nav:hover { background-color: var(--secondary); transform: translateY(-2px); }

/* Hamburger Mobile */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; z-index: 1001; }
.hamburger span { width: 25px; height: 3px; background-color: var(--dark); border-radius: 2px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(6px,6px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-6px); }

/* --- HERO SECTION FULLSCREEN --- */
.hero-split {
  min-height: 100vh; 
  display: flex;
  align-items: center;
  padding: 100px 0 40px; 
  position: relative;
  background-image: url('https://images.unsplash.com/photo-1573164713988-8665fc963095?q=80&w=1920');
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.4) 100%);
  z-index: 1;
}

.hero-split-inner {
  display: block;
  max-width: 650px;
  position: relative;
  z-index: 2;
  width: 100%; 
}

.badge-pulse {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
}

.hero-text-content h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 900;
  color: #ffffff; 
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-text-content h1 span {
  background: linear-gradient(to right, var(--primary), var(--secondary));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-text-content p {
  font-size: 1.15rem;
  color: #cbd5e1; 
  margin-bottom: 35px;
  max-width: 95%;
}

.hero-action { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.hero-note { font-size: 0.85rem; color: #94a3b8; font-weight: 600; display: flex; align-items: center; gap: 6px;}
.hero-note i { color: #10b981; }

.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: linear-gradient(to right, var(--secondary), var(--primary));
  color: white;
  padding: 16px 32px;
  border-radius: var(--radius);
  font-weight: 800;
  font-size: 1.05rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.btn-primary:hover { 
  box-shadow: var(--shadow-hover); 
  transform: translateY(-3px); 
  background: linear-gradient(to right, var(--primary), var(--secondary-dark)); 
}

/* --- HEADINGS --- */
.sub-heading {
  color: var(--secondary); font-weight: 800; font-size: 0.85rem; letter-spacing: 0.1em;
  display: inline-block; margin-bottom: 10px; background: rgba(234, 88, 12, 0.1); padding: 4px 12px; border-radius: 4px;
}
.section-title-wrap h2 { font-size: 2.5rem; color: var(--dark); margin-bottom: 15px; font-weight: 800; }
.section-title-wrap p { font-size: 1.1rem; color: var(--light-text); max-width: 700px; margin: 0 auto; line-height: 1.6;}

/* --- SERVIÇOS MODERNOS --- */
.services-modern { padding: 100px 0; background-color: var(--bg-light); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 60px; }
.srv-card {
  background: white;
  padding: 45px 30px 30px;
  border-radius: 16px;
  position: relative;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray2);
  border-top: 4px solid transparent; 
  transition: var(--transition);
  margin-top: 30px; 
}
.srv-card:hover { 
  transform: translateY(-10px); 
  box-shadow: var(--shadow-hover); 
  border-color: rgba(211, 47, 47, 0.1); 
  border-top: 4px solid var(--primary); 
}
.srv-icon-top {
  position: absolute;
  top: -30px; left: 30px;
  width: 60px; height: 60px;
  background: var(--bg-light);
  border: 2px solid var(--gray2);
  color: var(--primary);
  border-radius: 14px;
  display: flex; justify-content: center; align-items: center;
  font-size: 1.6rem;
  transition: var(--transition);
}
.srv-card:hover .srv-icon-top { background: var(--primary); color: white; border-color: var(--primary); }

.srv-card h3 { font-size: 1.3rem; margin-bottom: 12px; color: var(--dark); }
.srv-card p { font-size: 0.95rem; color: var(--light-text); margin-bottom: 24px; line-height: 1.7; }
.srv-link { font-weight: 700; color: var(--dark); font-size: 0.95rem; display: flex; align-items: center; gap: 8px; transition: var(--transition); }
.srv-link:hover { color: var(--secondary); gap: 12px; }

.srv-card.highlight { background: var(--dark); color: white; border-color: var(--dark); border-top: 4px solid transparent; }
.srv-card.highlight:hover { border-top: 4px solid var(--secondary); }
.srv-card.highlight h3 { color: white; }
.srv-card.highlight p { color: #cbd5e1; }
.srv-card.highlight .srv-icon-top { background: var(--secondary); color: white; border-color: var(--secondary); }
.srv-card.highlight .srv-link { color: var(--accent); }
.srv-card.highlight .srv-link:hover { color: white; }

/* --- COMO FUNCIONA (DARK) --- */
.how-it-works { 
  padding: 100px 0; 
  background: linear-gradient(135deg, var(--dark) 0%, #1e293b 100%); 
  color: white;
}
.split-section { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

.split-text h2 { font-size: 2.2rem; color: white; margin-bottom: 20px; line-height: 1.2; }
.split-text p { font-size: 1.1rem; color: #cbd5e1; margin-bottom: 30px; line-height: 1.7;}

.how-it-works .btn-secondary {
  border-color: var(--accent);
  color: var(--accent);
}
.how-it-works .btn-secondary:hover {
  background: var(--accent);
  color: var(--dark);
  box-shadow: 0 10px 25px rgba(217, 119, 6, 0.2);
}

.steps-wrapper { display: flex; flex-direction: column; gap: 30px; }
.step-box { display: flex; gap: 20px; }

.step-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2.5rem;
  color: rgba(255, 255, 255, 0.05); 
  -webkit-text-stroke: 1px rgba(255,255,255,0.2);
  line-height: 1;
  transition: var(--transition);
}
.step-box:hover .step-num { color: var(--secondary); -webkit-text-stroke: 0px; }
.step-info h4 { font-size: 1.2rem; color: white; margin-bottom: 8px; }
.step-info p { font-size: 0.95rem; color: #94a3b8; line-height: 1.6;}

/* --- SOBRE A OKANE --- */
.about-okane { padding: 100px 0; background: var(--bg-light); }
.about-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: center; }
.about-image { position: relative; }
.about-image img { width: 100%; border-radius: 20px; box-shadow: var(--shadow-md); }
.experience-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--primary); color: white;
  padding: 24px; border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.experience-badge strong { display: block; font-family: 'Montserrat', sans-serif; font-size: 1.4rem; font-weight: 900; line-height: 1; }
.experience-badge span { font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em;}

.about-content h2 { font-size: 2.2rem; color: var(--dark); margin-bottom: 20px; line-height: 1.2; }
.about-content p { font-size: 1.05rem; color: var(--light-text); margin-bottom: 20px; line-height: 1.7;}
.about-content p strong { color: var(--dark-text); }

.about-checks { display: flex; flex-direction: column; gap: 20px; margin-top: 30px; }
.about-checks li { 
  display: flex;
  align-items: flex-start; 
  gap: 16px;
  background-color: var(--bg-white); 
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03); 
  border: 1px solid var(--gray2);
  transition: var(--transition);
}
.about-checks li:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(211, 47, 47, 0.15); 
}
.chk-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, rgba(234, 88, 12, 0.1), rgba(211, 47, 47, 0.05)); 
  color: var(--secondary); 
  border-radius: 10px; 
  display: flex; justify-content: center; align-items: center;
  font-size: 1.1rem; flex-shrink: 0; 
}
.chk-content strong { 
  display: block; 
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem; color: var(--dark); margin-bottom: 6px;
}
.chk-content p { font-size: 0.95rem; color: var(--light-text); margin: 0; line-height: 1.5; }

/* --- LOCALIZAÇÃO E CONTATO (MAPA GIGANTE & CLEAN) --- */
.contact-location {
  padding: 100px 0;
  background-color: #f1f5f9; /* Cinza gelo premium e elegante (gera ótimo contraste com botões brancos) */
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr; /* 60% Mapa, 40% Botões */
  gap: 40px;
  margin-top: 50px;
  align-items: stretch; /* Estica o mapa e botões para a mesma altura */
}

.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between; 
  gap: 20px;
}

.info-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background-color: #ffffff; /* Fundo branco puro para saltar na tela */
  padding: 30px 24px; /* Botões mais gordinhos e altos */
  border-radius: 16px;
  text-decoration: none; 
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  border: 1px solid var(--gray2);
  transition: var(--transition);
  flex: 1; 
}

.info-card:hover {
  transform: translateX(8px); 
  box-shadow: 0 15px 35px rgba(211, 47, 47, 0.08); 
  border-color: rgba(211, 47, 47, 0.2); 
}

.info-icon {
  width: 55px; height: 55px;
  background: rgba(211, 47, 47, 0.08);
  color: var(--primary);
  border-radius: 14px;
  display: flex; justify-content: center; align-items: center;
  font-size: 1.4rem; flex-shrink: 0;
  transition: var(--transition);
}

.info-card:hover .info-icon { background: var(--primary); color: white; }

.info-text strong {
  display: block; font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem; color: var(--dark); margin-bottom: 4px;
  transition: var(--transition);
}
.info-card:hover .info-text strong { color: var(--primary); }
.info-text span { font-size: 0.95rem; color: var(--light-text); line-height: 1.5; }

/* Mapa Gigante */
.map-container {
  width: 100%;
  min-height: 550px; /* Altura forçada gigantesca no Desktop */
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border: 6px solid #ffffff; /* Moldura branca premium ao redor do mapa */
}

.map-container iframe {
  width: 100%; height: 100%; display: block; border: 0;
}

@media (max-width: 960px) {
  .contact-grid { grid-template-columns: 1fr; }
  .map-container { min-height: 400px; /* Diminui um pouco no celular para caber na tela */ }
}

/* --- CTA FINAL AGRESSIVO --- */
.cta-final { padding: 80px 0; }
.cta-final-box {
  background: linear-gradient(135deg, var(--dark), #1e293b);
  border-radius: 24px;
  padding: 60px 40px; text-align: center; color: white;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2); position: relative; overflow: hidden;
}
.cta-final-box::before {
  content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(211, 47, 47, 0.15) 0%, transparent 60%); z-index: 1;
}
.cta-final-box h2 { font-size: 2.5rem; position: relative; z-index: 2; margin-bottom: 15px; }
.cta-final-box p { font-size: 1.15rem; color: #cbd5e1; position: relative; z-index: 2; margin-bottom: 35px; max-width: 600px; margin-left: auto; margin-right: auto; line-height: 1.6;}
.cta-pulse { position: relative; z-index: 2; animation: pulseRed 2s infinite; }
@keyframes pulseRed {
  0% { box-shadow: 0 0 0 0 rgba(234, 88, 12, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(234, 88, 12, 0); }
  100% { box-shadow: 0 0 0 0 rgba(234, 88, 12, 0); }
}

/* --- FOOTER MODERN --- */
.footer-modern { background: var(--bg-white); padding-top: 80px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.5fr; gap: 50px; margin-bottom: 60px; }
.foot-brand p { color: var(--light-text); font-size: 0.95rem; max-width: 400px; line-height: 1.7; }
.foot-links h4, .foot-contact h4 { font-size: 1.1rem; color: var(--dark); margin-bottom: 20px; }
.foot-links ul { display: flex; flex-direction: column; gap: 12px; }
.foot-links a { color: var(--light-text); font-weight: 500; transition: var(--transition); }
.foot-links a:hover { color: var(--primary); padding-left: 5px; }
.foot-contact ul { display: flex; flex-direction: column; gap: 16px; }
.foot-contact li { display: flex; gap: 12px; color: var(--light-text); font-size: 0.95rem; align-items: flex-start;}
.foot-contact i { color: var(--secondary); margin-top: 4px; font-size: 1.1rem; }

/* --- FOOTER BOTTOM (Texto Legal) --- */
.footer-bottom { border-top: 1px solid var(--gray2); padding: 30px 0; text-align: center; }
.legal-info .small-text { color: var(--light-text); font-size: 0.8rem; font-weight: 400; max-width: 1000px; margin: 0 auto; line-height: 1.6;}

/* --- NOVA BARRA ESCURA INFERIOR --- */
.footer-dark-bar { background-color: #1a0b00; color: #94a3b8; font-size: 0.85rem; }
.dark-bar-inner { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; flex-wrap: nowrap; gap: 20px; }
.dark-copy { font-weight: 500; color: #cbd5e1; white-space: nowrap; }

.simcred-link { color: #ffffff; font-weight: 700; text-decoration: none; transition: var(--transition); }
.simcred-link:hover { color: var(--primary); text-decoration: underline; }

.dark-right-group { display: flex; align-items: center; gap: 30px; white-space: nowrap; }
.dark-links a { color: #cbd5e1; text-decoration: none; transition: var(--transition); }
.dark-links a:hover { color: var(--primary); text-decoration: underline; }

.dark-dev { display: flex; align-items: center; gap: 6px; color: #8c8c8c; }
.dark-dev a { text-decoration: none; }

.tag-dev {
  background-color: transparent; color: var(--primary); border: 1px solid var(--primary);
  padding: 4px 10px; border-radius: 6px; font-weight: bold; font-family: 'Courier New', Courier, monospace;
  transition: all 0.3s ease; display: inline-block;
}
.dark-dev a:hover .tag-dev { background-color: var(--primary); color: #ffffff; transform: translateY(-2px); box-shadow: 0 4px 10px rgba(211, 47, 47, 0.2); }

@media (max-width: 1080px) {
  .dark-bar-inner { flex-direction: column; text-align: center; justify-content: center; flex-wrap: wrap; gap: 15px; }
  .dark-copy { white-space: normal; line-height: 1.5; }
  .dark-right-group { flex-direction: column; gap: 15px; }
}

/* --- WHATSAPP FLOAT --- */
.whatsapp-float {
  position: fixed; bottom: 30px; right: 30px; z-index: 999; width: 60px; height: 60px; border-radius: 50%;
  background: #25d366; color: #fff; display: flex; justify-content: center; align-items: center; font-size: 2rem;
  box-shadow: 0 10px 25px rgba(37,211,102,0.4); transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1) rotate(-5deg); background: #20b85a; }

/* --- RESPONSIVIDADE GERAL --- */
@media (max-width: 1024px) {
  .hero-split-inner { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-text-content { display: flex; flex-direction: column; align-items: center; }
  .hero-text-content p { max-width: 100%; }
  .hero-action { align-items: center; }
  .floating-card { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .split-section, .about-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .about-checks li { justify-content: center; text-align: left; }
  .about-image { order: -1; }
  .experience-badge { bottom: -20px; left: 50%; transform: translateX(-50%); right: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed; top: 0; right: -100%; bottom: 0; width: 80%; max-width: 300px;
    background: white; flex-direction: column; justify-content: center; align-items: center;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1); transition: 0.4s ease-in-out;
  }
  .nav-links.active { right: 0; }
  .hamburger { display: flex; }
  .btn-nav { display: none; }
  .hero-split { padding: 120px 0 60px; }
  .hero-text-content h1 { font-size: 2.2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .foot-contact li { justify-content: center; text-align: center; }
  .cta-final-box { padding: 40px 20px; }
  .cta-final-box h2 { font-size: 1.8rem; }
  .btn-primary { width: 100%; justify-content: center; }
}

/* --- ANIMAÇÕES --- */
.fade-up { opacity: 0; transform: translateY(40px); transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); will-change: opacity, transform; }
.fade-up.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }
.navbar.nav-hidden { top: -100px !important; }

/* =======================================================
   PÁGINAS LEGAIS (Privacidade e Termos)
   ======================================================= */
.legal-page {
  padding: 140px 24px 80px; /* Espaço seguro para a Navbar Fixa */
  background-color: var(--bg-light);
  min-height: 100vh;
}

.legal-content {
  max-width: 850px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 50px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray2);
}

.legal-content h1 {
  font-size: 2.2rem;
  color: var(--dark);
  margin-bottom: 5px;
  text-align: center;
}

.legal-content .last-update {
  text-align: center;
  color: var(--light-text);
  font-size: 0.9rem;
  margin-bottom: 40px;
  display: block;
}

.legal-content h2, .legal-content h3 {
  font-size: 1.25rem;
  color: var(--primary);
  margin-top: 35px;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--gray2);
  padding-bottom: 8px;
}

.legal-content p, .legal-content li {
  font-size: 1rem;
  color: var(--dark-text);
  line-height: 1.7;
  margin-bottom: 16px;
}

.legal-content ul {
  list-style-type: disc;
  padding-left: 20px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .legal-content { padding: 30px 20px; }
  .legal-content h1 { font-size: 1.8rem; }
}