/* Fraga Empilhadeiras — Landing Pages CSS */
:root {
  --primary: #0c2440;
  --primary-light: #1a3a5c;
  --primary-rgb: 12, 36, 64;
  --secondary: #f1f5f9;
  --accent-wa: #25d366;
  --accent-wa-hover: #20ba5a;
  --cta: #e87b35;
  --cta-hover: #d06a28;
  --light-bg: #f8fafc;
  --dark-text: #0f172a;
  --light-text: #f8fafc;
  --border: #e2e8f0;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 10px 30px rgba(0, 0, 0, 0.08);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--dark-text);
  line-height: 1.6;
  background: #ffffff;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--cta);
  color: #fff;
  padding: 12px 24px;
  z-index: 10000;
  font-weight: 700;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.lp-header {
  background: var(--primary);
  color: var(--light-text);
  border-bottom: 2px solid var(--primary-light);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
}

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

.lp-logo img {
  height: 50px;
  width: auto;
}

.logo-text {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #fff;
}

.logo-text span {
  color: var(--cta);
}

.header-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-size: 0.9rem;
}

.header-contact span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
}

.header-contact a {
  color: var(--cta);
  font-weight: 700;
  font-size: 1.1rem;
  transition: color 0.2s;
}

.header-contact a:hover {
  color: #fff;
}

/* Hero Section */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--light-text);
  padding: 80px 0 100px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.hero-text h1 {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
}

.hero-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 36px;
}

.hero-benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 1.05rem;
}

.hero-benefit-item span {
  color: var(--accent-wa);
  font-size: 1.2rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-cta {
  background: var(--cta);
  color: #fff;
  box-shadow: 0 4px 14px rgba(232, 123, 53, 0.4);
}

.btn-cta:hover {
  background: var(--cta-hover);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: var(--accent-wa);
  color: #fff;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: var(--accent-wa-hover);
  transform: translateY(-2px);
}

.btn-phone {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-phone:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

/* Form Container */
.form-card {
  background: #ffffff;
  color: var(--dark-text);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border: 1px solid var(--border);
}

.form-card h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--primary);
}

.form-card p {
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 24px;
}

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--primary-light);
}

.form-control {
  width: 100%;
  padding: 12px;
  border: 2px solid var(--border);
  border-radius: 6px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: border-color 0.2s;
  outline: none;
}

.form-control:focus {
  border-color: var(--primary-light);
}

select.form-control {
  appearance: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a3a5c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat right 12px center/16px;
}

textarea.form-control {
  resize: vertical;
  min-height: 80px;
}

.btn-submit {
  width: 100%;
  background: var(--cta);
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  transition: background 0.2s;
  box-shadow: 0 4px 12px rgba(232, 123, 53, 0.3);
}

.btn-submit:hover {
  background: var(--cta-hover);
}

/* Sections General */
.lp-section {
  padding: 80px 0;
}

.lp-section-alt {
  background: var(--light-bg);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.1rem;
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
}

/* Benefits Section */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.benefit-card {
  background: #ffffff;
  padding: 32px 24px;
  border-radius: 8px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: all 0.2s;
  text-align: center;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary-light);
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: var(--cta);
}

.benefit-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--primary);
}

.benefit-card p {
  font-size: 0.92rem;
  color: #64748b;
  line-height: 1.5;
}

/* Models Section */
.models-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.model-card {
  background: #ffffff;
  border-radius: 10px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
}

.model-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.model-img-wrapper {
  position: relative;
  height: 200px;
  background: #f1f5f9;
}

.model-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.model-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--primary);
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
}

.model-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.model-body h3 {
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--primary);
}

.model-capacity {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--cta);
  margin-bottom: 12px;
}

.model-body p {
  font-size: 0.92rem;
  color: #64748b;
  margin-bottom: 16px;
  flex-grow: 1;
}

.model-apps {
  font-size: 0.85rem;
  background: var(--light-bg);
  padding: 10px 14px;
  border-radius: 6px;
  border-left: 3px solid var(--primary-light);
  margin-bottom: 20px;
}

.model-apps strong {
  color: var(--primary);
}

.model-btn {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  font-weight: 700;
  text-align: center;
  font-size: 0.95rem;
  border: 2px solid var(--primary);
  color: var(--primary);
  transition: all 0.2s;
}

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

/* Regions Section */
.regions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.regions-list-wrapper h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 18px;
}

.regions-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.region-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-light);
}

.region-item::before {
  content: "📍";
  font-size: 0.9rem;
}

.map-wrapper {
  background: #ffffff;
  padding: 16px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Styled map graphic via CSS */
.styled-map {
  width: 100%;
  height: 280px;
  background: linear-gradient(135deg, #e2e8f0 25%, transparent 25%) -50px 0,
              linear-gradient(225deg, #e2e8f0 25%, transparent 25%) -50px 0,
              linear-gradient(315deg, #e2e8f0 25%, transparent 25%),
              linear-gradient(45deg, #e2e8f0 25%, transparent 25%);
  background-size: 100px 100px;
  background-color: #f1f5f9;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  border: 1px solid #cbd5e1;
}

.map-marker {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--cta);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(232, 123, 53, 0.3);
  animation: pulse 1.8s infinite;
}

.map-marker::after {
  content: attr(data-city);
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  white-space: nowrap;
}

.marker-poa { top: 50%; left: 50%; }
.marker-canoas { top: 40%; left: 47%; }
.marker-cachoerinha { top: 38%; left: 58%; }
.marker-alvorada { top: 45%; left: 63%; }

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(232, 123, 53, 0.5); }
  70% { box-shadow: 0 0 0 10px rgba(232, 123, 53, 0); }
  100% { box-shadow: 0 0 0 0 rgba(232, 123, 53, 0); }
}

/* Reviews Section */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.review-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary);
  font-size: 1.1rem;
}

.review-meta h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--primary);
}

.review-meta span {
  font-size: 0.78rem;
  color: #64748b;
}

.review-stars {
  color: #f5a623;
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.review-body {
  font-size: 0.92rem;
  color: #334155;
  line-height: 1.5;
  font-style: italic;
}

/* FAQ Section */
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 12px;
  background: #ffffff;
  overflow: hidden;
}

.faq-q {
  padding: 18px 24px;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.faq-q::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--cta);
  transition: transform 0.3s;
}

.faq-item.active .faq-q::after {
  content: "−";
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s;
  padding: 0 24px;
  color: #334155;
  font-size: 0.95rem;
}

.faq-item.active .faq-a {
  max-height: 250px;
  padding: 0 24px 18px;
}

/* CTA Final Section */
.cta-final {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--light-text);
  text-align: center;
  padding: 80px 0;
}

.cta-final h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-final p {
  font-size: 1.2rem;
  margin-bottom: 36px;
  opacity: 0.9;
}

.cta-final-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Footer */
.lp-footer {
  background: #08182b;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  padding: 24px;
  font-size: 0.82rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Floating WhatsApp Button */
.whatsapp-float-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  background: var(--accent-wa);
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s;
}

.whatsapp-float-btn:hover {
  transform: scale(1.1);
}

.whatsapp-float-btn svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

/* Content Text section for SEO */
.seo-content-section {
  border-top: 1px solid var(--border);
  background: #ffffff;
}

.seo-text-rich {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: #334155;
}

.seo-text-rich p {
  margin-bottom: 20px;
}

.seo-text-rich h2 {
  font-size: 1.8rem;
  color: var(--primary);
  margin-top: 36px;
  margin-bottom: 16px;
  font-weight: 800;
}

.seo-text-rich h3 {
  font-size: 1.3rem;
  color: var(--primary-light);
  margin-top: 24px;
  margin-bottom: 12px;
  font-weight: 700;
}

.seo-text-rich ul, .seo-text-rich ol {
  margin-bottom: 20px;
  padding-left: 20px;
}

.seo-text-rich li {
  margin-bottom: 8px;
}

/* Responsive Media Queries */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  
  .regions-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  
  .hero-text h1 {
    font-size: 2.2rem;
  }
  
  .lp-section {
    padding: 60px 0;
  }
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  
  .header-contact {
    align-items: center;
  }
  
  .hero-benefits {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn {
    width: 100%;
  }
  
  .cta-final-buttons {
    flex-direction: column;
    padding: 0 20px;
  }
  
  /* Mobile Reviews Carousel */
  .reviews-carousel-mobile {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding-bottom: 16px;
    scrollbar-width: thin;
  }
  
  .reviews-carousel-mobile::-webkit-scrollbar {
    height: 6px;
  }
  
  .reviews-carousel-mobile::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
  }
  
  .reviews-carousel-mobile .review-card {
    flex: 0 0 85%;
    scroll-snap-align: center;
  }
  
  .reviews-grid {
    display: none; /* Hide desktop reviews grid */
  }
}

@media (min-width: 769px) {
  .reviews-carousel-mobile {
    display: none; /* Hide mobile carousel */
  }
}
