/*
Theme Name: Welldy Motors Intermediações
Theme URI: https://welldymotors.com.br
Author: Welldy Motors
Author URI: https://welldymotors.com.br
Description: Tema profissional para landing page de intermediação automotiva - Welldy Motors. Design moderno em tons amber/laranja com seções de planos, FAQ, carros vendidos e depoimentos.
Version: 1.0.2
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: welldy-motors
Tags: landing-page, automotive, intermediacao, one-page
*/

/* Reset e Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: #09090b;
  color: #fafafa;
  line-height: 1.6;
  padding-top: 4rem; /* Espaço para o menu fixo */
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Custom Logo */
.custom-logo-link img {
    max-height: 2.5rem;
    width: auto;
    display: block;
}

/* Utility Classes */
.text-center { text-align: center; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('https://static.vecteezy.com/system/resources/previews/036/780/554/non_2x/ai-generated-closeup-new-black-car-parked-in-luxury-showroom-car-dealership-office-new-car-parked-in-modern-showroom-car-for-sale-and-rent-business-automobile-leasing-and-insurance-background-photo.jpg');
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(9, 9, 11, 0.95), rgba(9, 9, 11, 0.85), #09090b);
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 5rem 1rem;
}

.badge {
  display: inline-block;
  background: rgba(245, 158, 11, 0.2);
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.3);
  padding: 0.375rem 1rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 900;
  color: #fff;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.gradient-text {
  background: linear-gradient(to right, #fbbf24, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  color: #d4d4d8;
  margin-bottom: 1rem;
  font-weight: 300;
}

.hero-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #a1a1aa;
  margin-bottom: 3rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(to right, #f59e0b, #ea580c);
  color: #fff;
  box-shadow: 0 20px 25px -5px rgba(245, 158, 11, 0.2);
}

.btn-primary:hover {
  background: linear-gradient(to right, #d97706, #c2410c);
  transform: translateY(-2px);
}

.btn-outline {
  border: 1px solid #3f3f46;
  background: rgba(24, 24, 27, 0.5);
  backdrop-filter: blur(10px);
  color: #fff;
}

.btn-outline:hover {
  background: #27272a;
}

.btn-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .btn-group {
    flex-direction: row;
    justify-content: center;
  }
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-title {
  font-size: clamp(1.875rem, 5vw, 3rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 3rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: #a1a1aa;
  max-width: 48rem;
  margin: 0 auto;
}

/* Cards Grid */
.cards-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .cards-grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  background: #18181b;
  border: 1px solid #27272a;
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: all 0.3s;
}

.card:hover {
  border-color: rgba(245, 158, 11, 0.3);
  box-shadow: 0 20px 25px -5px rgba(245, 158, 11, 0.1);
}

.card-icon {
  width: 3rem;
  height: 3rem;
  color: #f59e0b;
  margin-bottom: 1rem;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}

.card-text {
  color: #a1a1aa;
  line-height: 1.75;
}

/* Pricing Cards */
.pricing-grid {
  display: grid;
  gap: 2rem;
  max-width: 80rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

.pricing-card {
  background: #18181b;
  border: 1px solid #3f3f46;
  border-radius: 0.75rem;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

.pricing-card:hover {
  border-color: rgba(245, 158, 11, 0.5);
  box-shadow: 0 25px 50px -12px rgba(245, 158, 11, 0.2);
}

.pricing-card-premium {
  background: linear-gradient(135deg, rgba(120, 53, 15, 0.2), #18181b, #18181b);
  border-color: rgba(245, 158, 11, 0.5);
}

.pricing-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #f59e0b;
  color: #18181b;
  padding: 0.25rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.75rem;
  font-weight: 700;
}

.pricing-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.pricing-description {
  color: #a1a1aa;
  margin-bottom: 1.5rem;
}

.pricing-price {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
}

.pricing-period {
  color: #a1a1aa;
  font-size: 1rem;
  margin-left: 0.5rem;
}

.pricing-features {
  list-style: none;
  margin: 2rem 0;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: #d4d4d8;
}

.check-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #22c55e;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.zap-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #f59e0b;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

/* Como Funciona - Steps */
.steps-grid {
  display: grid;
  gap: 2rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .steps-grid { grid-template-columns: repeat(4, 1fr); }
}

.step {
  text-align: center;
}

.step-number {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(135deg, #f59e0b, #ea580c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 20px 25px -5px rgba(245, 158, 11, 0.3);
}

.step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.step-description {
  color: #a1a1aa;
}

/* FAQ Accordion */
.faq-accordion {
  max-width: 48rem;
  margin: 0 auto;
}

.faq-item {
  background: rgba(24, 24, 27, 0.5);
  border: 1px solid #27272a;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: color 0.3s;
}

.faq-question:hover {
  color: #f59e0b;
}

.faq-answer {
  padding: 0 1.5rem 1rem;
  color: #a1a1aa;
  line-height: 1.75;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Carros Vendidos - Gallery */
.cars-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 96rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .cars-grid { grid-template-columns: repeat(3, 1fr); }
}

.car-card {
  position: relative;
  border: 1px solid #27272a;
  border-radius: 0.75rem;
  overflow: hidden;
  transition: all 0.3s;
  aspect-ratio: 3/4;
}

.car-card:hover {
  border-color: rgba(245, 158, 11, 0.5);
  transform: scale(1.02);
}

.car-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.car-card:hover .car-image {
  transform: scale(1.05);
}

.car-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.3), transparent);
}

.car-info-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  background: rgba(245, 158, 11, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 0.5rem;
  padding: 0.75rem;
}

.car-model {
  font-weight: 700;
  font-size: 0.875rem;
  color: #fff;
  margin-bottom: 0.25rem;
}

.car-year {
  font-size: 0.75rem;
  color: #fff;
}

.car-sold-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(34, 197, 94, 0.5);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.sold-text {
  font-weight: 700;
  font-size: 1.125rem;
  color: #fff;
}

.sold-icon {
  width: 1.5rem;
  height: 1.5rem;
  color: #22c55e;
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  gap: 2rem;
  max-width: 80rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

.testimonial-card {
  background: #18181b;
  border: 1px solid #27272a;
  border-radius: 0.75rem;
  padding: 1.5rem;
}

.stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.star {
  color: #f59e0b;
  font-size: 1.25rem;
}

.testimonial-text {
  color: #d4d4d8;
  font-size: 1.125rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, #f59e0b, #ea580c);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
}

.author-name {
  font-weight: 700;
  color: #fff;
}

.author-plan {
  font-size: 0.875rem;
  color: #a1a1aa;
}

/* Footer */
.footer {
  background: #09090b;
  border-top: 1px solid #27272a;
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
}

.footer-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}

.footer-text {
  color: #a1a1aa;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.footer-link {
  display: block;
  color: #a1a1aa;
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}

.footer-link:hover {
  color: #f59e0b;
}

.legal-notice {
  background: #18181b;
  border: 1px solid #27272a;
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.legal-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}

.shield-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: #f59e0b;
}

.legal-text {
  color: #a1a1aa;
  font-size: 0.875rem;
  line-height: 1.75;
}

.copyright {
  text-align: center;
  color: #71717a;
  font-size: 0.875rem;
}

/* Background Colors */
.bg-dark { background: #09090b; }
.bg-dark-secondary { background: rgba(24, 24, 27, 0.5); }
.border-top { border-top: 1px solid #27272a; }
