/*--------------------------------------------------------------
# SEO & Conversion Improvements Styles
# Real Locus - Landing Page Otimizada
--------------------------------------------------------------*/

/* ===== Hero Override - Responsivo Completo ===== */

/* Base - Hero altura dinamica */
#hero {
  height: auto !important;
  min-height: 100vh;
  min-height: 100svh; /* Safari mobile */
}

#hero .hero-single {
  min-height: 100vh;
  min-height: 100svh;
}

#hero .hero-container {
  padding: 100px 30px 50px !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero .hero-container .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}

/* ===== Hero Badge ===== */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 15px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-badge i {
  color: #4CAF50;
  font-size: 1rem;
}

.hero-badge span {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== Hero Title ===== */
#hero h2 {
  margin-bottom: 10px !important;
}

.hero-highlight {
  color: #2E92D0;
  display: block;
}

/* ===== Hero Benefits ===== */
.hero-benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 15px 0;
}

.hero-benefits span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.85rem;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  backdrop-filter: blur(5px);
}

.hero-benefits span i {
  color: #4CAF50;
  font-size: 0.9rem;
}

/* ===== Hero CTA Group ===== */
.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 20px 0 15px;
}

#hero .btn-get-started {
  margin-top: 0 !important;
  padding: 12px 28px !important;
  font-size: 14px !important;
}

.btn-whatsapp-hero {
  display: inline-flex;
  align-items: center;
  padding: 12px 28px;
  background: #25D366;
  color: #fff !important;
  font-weight: 600;
  font-size: 14px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-hero:hover {
  background: #128C7E;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  color: #fff !important;
}

/* ===== Hero Price ===== */
.hero-price {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 12px 25px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 10px;
}

.hero-price .price-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-price .price-value {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.hero-price .price-detail {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ===== RESPONSIVO - 2K / QHD (2560px+) ===== */
@media (min-width: 2560px) {
  #hero .hero-container {
    padding: 140px 60px 80px !important;
  }

  #hero h2 {
    font-size: 3.5rem !important;
  }

  #hero p {
    font-size: 1.4rem !important;
  }

  .hero-badge {
    padding: 10px 25px;
  }

  .hero-badge span {
    font-size: 1rem;
  }

  .hero-benefits span {
    font-size: 1.1rem;
    padding: 10px 20px;
  }

  #hero .btn-get-started,
  .btn-whatsapp-hero {
    padding: 16px 40px !important;
    font-size: 16px !important;
  }

  .hero-price {
    padding: 20px 40px;
  }

  .hero-price .price-value {
    font-size: 3rem;
  }
}

/* ===== RESPONSIVO - Full HD (1920px) ===== */
@media (min-width: 1920px) and (max-width: 2559px) {
  #hero .hero-container {
    padding: 120px 50px 70px !important;
  }

  #hero h2 {
    font-size: 3rem !important;
  }

  #hero p {
    font-size: 1.25rem !important;
  }
}

/* ===== RESPONSIVO - Desktop (1200px - 1919px) ===== */
@media (min-width: 1200px) and (max-width: 1919px) {
  #hero .hero-container {
    padding: 100px 40px 60px !important;
  }

  #hero h2 {
    font-size: 2.5rem !important;
  }
}

/* ===== RESPONSIVO - Laptop (992px - 1199px) ===== */
@media (min-width: 992px) and (max-width: 1199px) {
  #hero .hero-container {
    padding: 100px 30px 50px !important;
  }

  #hero h2 {
    font-size: 2.2rem !important;
  }

  #hero p {
    font-size: 1rem !important;
  }
}

/* ===== RESPONSIVO - Tablet (768px - 991px) ===== */
@media (min-width: 768px) and (max-width: 991px) {
  #hero {
    min-height: auto !important;
  }

  #hero .hero-single {
    min-height: auto;
    height: auto;
  }

  #hero .hero-container {
    padding: 100px 25px 40px !important;
    position: relative;
    height: auto;
  }

  #hero h2 {
    font-size: 2rem !important;
  }

  #hero p {
    font-size: 0.95rem !important;
  }

  .hero-benefits {
    gap: 8px;
  }

  .hero-benefits span {
    font-size: 0.8rem;
    padding: 5px 10px;
  }

  #hero .btn-get-started,
  .btn-whatsapp-hero {
    padding: 10px 22px !important;
    font-size: 13px !important;
  }

  .hero-price .price-value {
    font-size: 1.8rem;
  }
}

/* ===== RESPONSIVO - Mobile Landscape (576px - 767px) ===== */
@media (min-width: 576px) and (max-width: 767px) {
  #hero {
    min-height: auto !important;
  }

  #hero .hero-single {
    min-height: auto;
  }

  #hero .hero-container {
    padding: 90px 20px 35px !important;
    position: relative;
    height: auto;
  }

  #hero h2 {
    font-size: 1.7rem !important;
    line-height: 1.3 !important;
  }

  #hero p {
    font-size: 0.9rem !important;
    margin-top: 8px !important;
  }

  .hero-badge {
    padding: 5px 12px;
    margin-bottom: 12px;
  }

  .hero-badge span {
    font-size: 0.7rem;
  }

  .hero-benefits {
    gap: 6px;
    margin: 12px 0;
  }

  .hero-benefits span {
    font-size: 0.75rem;
    padding: 4px 10px;
  }

  .hero-cta-group {
    margin: 15px 0 12px;
    gap: 10px;
  }

  #hero .btn-get-started,
  .btn-whatsapp-hero {
    padding: 10px 20px !important;
    font-size: 12px !important;
  }

  .hero-price {
    padding: 10px 20px;
    margin-top: 8px;
  }

  .hero-price .price-value {
    font-size: 1.6rem;
  }

  .hero-price .price-label,
  .hero-price .price-detail {
    font-size: 0.7rem;
  }
}

/* ===== RESPONSIVO - Mobile Portrait (até 575px) ===== */
@media (max-width: 575px) {
  #hero {
    min-height: auto !important;
  }

  #hero .hero-single {
    min-height: auto;
    padding-bottom: 20px;
  }

  #hero .hero-container {
    padding: 80px 15px 25px !important;
    position: relative;
    height: auto;
    align-items: flex-start;
  }

  #hero h2 {
    font-size: 1.4rem !important;
    line-height: 1.3 !important;
  }

  .hero-highlight {
    font-size: 1.5rem;
  }

  #hero p {
    font-size: 0.85rem !important;
    margin-top: 8px !important;
    line-height: 1.5 !important;
  }

  .hero-badge {
    padding: 4px 10px;
    margin-bottom: 10px;
  }

  .hero-badge i {
    font-size: 0.85rem;
  }

  .hero-badge span {
    font-size: 0.65rem;
    letter-spacing: 0.5px;
  }

  .hero-benefits {
    flex-direction: column;
    align-items: center;
    gap: 5px;
    margin: 10px 0;
  }

  .hero-benefits span {
    font-size: 0.75rem;
    padding: 5px 12px;
    width: auto;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin: 15px 0 10px;
    width: 100%;
  }

  #hero .btn-get-started,
  .btn-whatsapp-hero {
    padding: 12px 25px !important;
    font-size: 13px !important;
    width: 100%;
    max-width: 280px;
    justify-content: center;
    text-align: center;
  }

  .hero-price {
    padding: 10px 20px;
    margin-top: 8px;
  }

  .hero-price .price-value {
    font-size: 1.5rem;
  }

  .hero-price .price-label,
  .hero-price .price-detail {
    font-size: 0.65rem;
  }
}

/* ===== RESPONSIVO - Mobile muito pequeno (até 375px) ===== */
@media (max-width: 375px) {
  #hero .hero-container {
    padding: 75px 12px 20px !important;
  }

  #hero h2 {
    font-size: 1.25rem !important;
  }

  .hero-highlight {
    font-size: 1.3rem;
  }

  #hero p {
    font-size: 0.8rem !important;
  }

  .hero-badge {
    padding: 3px 8px;
  }

  .hero-badge span {
    font-size: 0.6rem;
  }

  .hero-benefits span {
    font-size: 0.7rem;
  }

  #hero .btn-get-started,
  .btn-whatsapp-hero {
    padding: 10px 20px !important;
    font-size: 12px !important;
  }

  .hero-price .price-value {
    font-size: 1.3rem;
  }
}

/* ===== Trust Bar ===== */
.trust-bar {
  background: linear-gradient(135deg, #1A2F73 0%, #2E5A9C 100%);
  padding: 15px 0;
}

.trust-items {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  padding: 8px 15px;
}

.trust-item i {
  font-size: 1.5rem;
  color: #4FC3F7;
}

.trust-item span {
  font-size: 0.8rem;
  line-height: 1.3;
  font-weight: 500;
}

.trust-item.trust-serpro {
  gap: 8px;
}

.trust-item.trust-serpro img {
  height: 30px;
  width: auto;
  filter: brightness(0) invert(1);
}

/* Trust Bar - Tablet */
@media (min-width: 768px) and (max-width: 991px) {
  .trust-items {
    gap: 15px;
  }

  .trust-item {
    padding: 6px 12px;
  }

  .trust-item i {
    font-size: 1.3rem;
  }

  .trust-item span {
    font-size: 0.75rem;
  }

  .trust-item.trust-serpro img {
    height: 25px;
  }
}

/* Trust Bar - Mobile */
@media (max-width: 767px) {
  .trust-bar {
    padding: 12px 0;
  }

  .trust-items {
    gap: 8px;
    justify-content: space-around;
  }

  .trust-item {
    flex: 0 0 auto;
    flex-direction: column;
    text-align: center;
    padding: 5px 8px;
    gap: 4px;
  }

  .trust-item i {
    font-size: 1.2rem;
  }

  .trust-item span {
    font-size: 0.65rem;
    line-height: 1.2;
  }

  .trust-item.trust-serpro img {
    height: 22px;
  }
}

/* Trust Bar - Mobile pequeno */
@media (max-width: 480px) {
  .trust-items {
    gap: 5px;
  }

  .trust-item {
    flex: 0 0 18%;
    padding: 4px 5px;
  }

  .trust-item i {
    font-size: 1rem;
  }

  .trust-item span {
    font-size: 0.55rem;
  }

  .trust-item.trust-serpro img {
    height: 18px;
  }
}

/* ===== Section Title H1 ===== */
.section-title h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1A2F73;
  margin-bottom: 15px;
}

.section-subtitle {
  display: inline-block;
  color: #2E92D0;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.section-description {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== Validation Info Compact ===== */
.validation-info-compact {
  text-align: center;
}

.validation-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #f8f9fa;
  border-radius: 25px;
  border: 1px solid #e9ecef;
}

.validation-badge i {
  color: #2E92D0;
  font-size: 1.1rem;
}

.validation-badge span {
  color: #495057;
  font-size: 0.85rem;
}

/* Validation Info - Tablet */
@media (min-width: 768px) and (max-width: 991px) {
  .validation-badge {
    padding: 6px 12px;
  }

  .validation-badge i {
    font-size: 1rem;
  }

  .validation-badge span {
    font-size: 0.8rem;
  }
}

/* Validation Info - Mobile */
@media (max-width: 767px) {
  .validation-info-compact .d-flex {
    gap: 8px !important;
  }

  .validation-badge {
    padding: 6px 10px;
    gap: 5px;
  }

  .validation-badge i {
    font-size: 0.9rem;
  }

  .validation-badge span {
    font-size: 0.75rem;
  }

  .validation-info-compact .text-muted {
    font-size: 0.75rem;
  }
}

/* Validation Info - Mobile pequeno */
@media (max-width: 480px) {
  .validation-info-compact .d-flex {
    flex-direction: column;
    gap: 5px !important;
  }

  .validation-info-compact .text-muted {
    display: none;
  }

  .validation-badge {
    padding: 5px 10px;
  }

  .validation-badge i {
    font-size: 0.85rem;
  }

  .validation-badge span {
    font-size: 0.7rem;
  }
}

/* ===== Certificate Tabs ===== */
.certificate-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.tab-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 25px;
  background: #fff;
  border: 2px solid #e9ecef;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn i {
  font-size: 1.3rem;
  color: #1A2F73;
}

.tab-btn .tab-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1A2F73;
}

.tab-btn .tab-badge {
  background: #e9ecef;
  padding: 3px 10px;
  border-radius: 15px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #666;
}

.tab-btn:hover {
  border-color: #2E92D0;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.tab-btn.active {
  background: linear-gradient(135deg, #1A2F73 0%, #2E92D0 100%);
  border-color: transparent;
}

.tab-btn.active i,
.tab-btn.active .tab-title {
  color: #fff;
}

.tab-btn.active .tab-badge {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

/* Certificate Tabs - Tablet */
@media (min-width: 768px) and (max-width: 991px) {
  .tab-btn {
    padding: 10px 20px;
    gap: 8px;
  }

  .tab-btn i {
    font-size: 1.1rem;
  }

  .tab-btn .tab-title {
    font-size: 0.85rem;
  }

  .tab-btn .tab-badge {
    padding: 2px 8px;
    font-size: 0.7rem;
  }
}

/* Certificate Tabs - Mobile */
@media (max-width: 767px) {
  .certificate-tabs {
    gap: 10px;
  }

  .tab-btn {
    flex: 1;
    justify-content: center;
    padding: 10px 15px;
    gap: 6px;
  }

  .tab-btn i {
    font-size: 1rem;
  }

  .tab-btn .tab-title {
    font-size: 0.8rem;
  }

  .tab-btn .tab-badge {
    display: none;
  }
}

/* Certificate Tabs - Mobile pequeno */
@media (max-width: 480px) {
  .tab-btn {
    padding: 8px 12px;
  }

  .tab-btn i {
    font-size: 0.9rem;
  }

  .tab-btn .tab-title {
    font-size: 0.75rem;
  }
}

/* ===== Certificates Guarantees ===== */
.certificates-guarantees {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 30px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 15px;
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 15px;
}

.guarantee-item i {
  font-size: 1.2rem;
  color: #28a745;
}

.guarantee-item span {
  font-size: 0.85rem;
  font-weight: 500;
  color: #495057;
}

/* Guarantees - Tablet */
@media (min-width: 768px) and (max-width: 991px) {
  .certificates-guarantees {
    gap: 10px;
    padding: 15px;
  }

  .guarantee-item {
    padding: 6px 12px;
  }

  .guarantee-item i {
    font-size: 1rem;
  }

  .guarantee-item span {
    font-size: 0.75rem;
  }
}

/* Guarantees - Mobile */
@media (max-width: 767px) {
  .certificates-guarantees {
    gap: 8px;
    padding: 15px 10px;
    margin-top: 20px;
  }

  .guarantee-item {
    flex: 0 0 48%;
    justify-content: center;
    padding: 8px 10px;
  }

  .guarantee-item i {
    font-size: 1rem;
  }

  .guarantee-item span {
    font-size: 0.7rem;
  }
}

/* Guarantees - Mobile pequeno */
@media (max-width: 480px) {
  .certificates-guarantees {
    gap: 5px;
    padding: 12px 8px;
  }

  .guarantee-item {
    flex: 0 0 48%;
    padding: 6px 8px;
  }

  .guarantee-item i {
    font-size: 0.9rem;
  }

  .guarantee-item span {
    font-size: 0.65rem;
  }
}

/* ===== Social Proof Section ===== */
.social-proof {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 50px 0;
}

.stats-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.stat-item {
  text-align: center;
  padding: 20px 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-icon {
  font-size: 2rem;
  color: #2E92D0;
  margin-bottom: 10px;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: #1A2F73;
  line-height: 1.2;
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  color: #666;
  margin-top: 5px;
}

/* Social Proof - Desktop grande */
@media (min-width: 1200px) {
  .stats-row {
    gap: 50px;
  }

  .stat-icon {
    font-size: 2.5rem;
  }

  .stat-number {
    font-size: 2.2rem;
  }
}

/* Social Proof - Tablet */
@media (min-width: 768px) and (max-width: 991px) {
  .social-proof {
    padding: 40px 0;
  }

  .stats-row {
    gap: 20px;
  }

  .stat-item {
    padding: 15px 20px;
  }

  .stat-icon {
    font-size: 1.6rem;
  }

  .stat-number {
    font-size: 1.6rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }
}

/* Social Proof - Mobile */
@media (max-width: 767px) {
  .social-proof {
    padding: 30px 0;
  }

  .stats-row {
    gap: 10px;
    justify-content: space-around;
  }

  .stat-item {
    flex: 0 0 45%;
    padding: 15px 10px;
  }

  .stat-icon {
    font-size: 1.4rem;
    margin-bottom: 6px;
  }

  .stat-number {
    font-size: 1.3rem;
  }

  .stat-label {
    font-size: 0.7rem;
  }
}

/* Social Proof - Mobile pequeno */
@media (max-width: 480px) {
  .social-proof {
    padding: 25px 0;
  }

  .stats-row {
    gap: 8px;
  }

  .stat-item {
    flex: 0 0 48%;
    padding: 12px 8px;
  }

  .stat-icon {
    font-size: 1.2rem;
    margin-bottom: 5px;
  }

  .stat-number {
    font-size: 1.1rem;
  }

  .stat-label {
    font-size: 0.65rem;
  }
}

/* ===== Card Badge (Mais Vendido) ===== */
.certificate-card .card-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a5a 100%);
  color: #fff;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(238, 90, 90, 0.4);
  z-index: 10;
}

.certificate-card .card-badge.bestseller {
  background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
  box-shadow: 0 4px 15px rgba(255, 152, 0, 0.4);
}

/* ===== Mobile Responsiveness ===== */
@media (max-width: 576px) {
  .hero-benefits {
    flex-direction: column;
    align-items: center;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: center;
  }

  .hero-cta-group a {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .hero-price .price-value {
    font-size: 2rem;
  }

  .section-title h1 {
    font-size: 1.8rem;
  }

  .tab-btn {
    flex: 1;
    justify-content: center;
    padding: 12px 20px;
  }

  .tab-btn .tab-title {
    font-size: 0.9rem;
  }

  .certificates-guarantees {
    flex-direction: column;
    align-items: center;
  }
}

/* ===== Header Contact / WhatsApp ===== */
.header-contact {
  display: flex;
  align-items: center;
  margin-right: 15px;
}

.header-whatsapp {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #25D366;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 6px 12px;
  background: rgba(37, 211, 102, 0.1);
  border-radius: 20px;
}

.header-whatsapp:hover {
  color: #128C7E;
  background: rgba(37, 211, 102, 0.2);
}

.header-whatsapp i {
  font-size: 1.2rem;
}

/* Header scroll state */
#header.header-scrolled .header-whatsapp {
  background: rgba(37, 211, 102, 0.15);
}

/* Header Contact - Responsivo */
@media (max-width: 1199px) {
  .header-contact {
    margin-right: 10px;
  }

  .header-whatsapp {
    font-size: 0.85rem;
    padding: 5px 10px;
  }

  .header-whatsapp i {
    font-size: 1.1rem;
  }
}
