/* ===== PÁGINA DE CONTATO - JK AUTOMOTIVE ===== */

/* Hero Section */
.contact-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: #1e293b;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #16a34a;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  border: 1px solid #16a34a;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 2rem;
  box-shadow: 0 4px 20px rgba(22, 163, 74, 0.3);
}

.hero-title {
  margin-bottom: 2rem;
}

.title-main {
  display: block;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.title-highlight {
  display: block;
  color: #16a34a;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 600;
}

.hero-description {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: #e2e8f0;
  margin-bottom: 3rem;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn-whatsapp {
  background: #16a34a;
  color: white;
  box-shadow: 0 4px 20px rgba(22, 163, 74, 0.3);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(22, 163, 74, 0.4);
  background: #15803d;
}

.btn-secondary {
  background: transparent;
  color: #16a34a;
  border-color: #16a34a;
}

.btn-secondary:hover {
  background: #16a34a;
  color: white;
  transform: translateY(-2px);
}

/* Contact Stats Section */
.contact-stats {
  background: #0f172a;
  padding: 4rem 0;
  position: relative;
}

.contact-stats::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: #16a34a;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-item {
  text-align: center;
  padding: 2rem 1rem;
  background: #1e293b;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  border: 1px solid #16a34a;
}

.stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(22, 163, 74, 0.3);
  background: #16a34a;
}

.stat-item:hover .stat-icon {
  background: white;
  color: #16a34a;
}

.stat-item:hover .stat-number,
.stat-item:hover .stat-label {
  color: white;
}

.stat-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: #16a34a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
  box-shadow: 0 4px 20px rgba(22, 163, 74, 0.3);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #16a34a;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: #e2e8f0;
  font-weight: 500;
}

/* Contact Section */
.contact-section {
  padding: 6rem 0;
  background: #0f172a;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #e2e8f0;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Contact Info */
.contact-info {
  padding: 2rem;
}

.info-header {
  margin-bottom: 3rem;
}

.info-header h3 {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.info-header p {
  font-size: 1.1rem;
  color: #e2e8f0;
  line-height: 1.6;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #1e293b;
  border-radius: 16px;
  border: 2px solid #334155;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.contact-method:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(22, 163, 74, 0.3);
  border-color: #16a34a;
  background: #16a34a;
}

.contact-method:hover .method-info h4,
.contact-method:hover .method-info p {
  color: white;
}

.contact-method:hover .contact-link {
  color: white;
}

.method-info h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.5rem;
}

.method-detail {
  font-size: 1.1rem;
  color: #e2e8f0;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.method-description {
  font-size: 0.9rem;
  color: #94a3b8;
  margin-bottom: 1rem;
}

.method-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  flex-shrink: 0;
}

.method-icon.whatsapp {
  background: #16a34a;
}
.method-icon.phone {
  background: #3b82f6;
}
.method-icon.email {
  background: #8b5cf6;
}
.method-icon.location {
  background: #16a34a;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #16a34a;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.contact-link:hover {
  color: #15803d;
  transform: translateX(5px);
}

/* Business Hours */
.business-hours {
  background: #16a34a;
  color: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(22, 163, 74, 0.2);
}

.business-hours h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: center;
}

.hours-grid {
  display: grid;
  gap: 1rem;
}

.hour-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.day {
  font-weight: 500;
}

.time {
  font-weight: 600;
  color: #bbf7d0;
}

/* Contact Form */
.contact-form-container {
  background: #1e293b;
  padding: 3rem;
  border-radius: 24px;
  border: 2px solid #334155;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.form-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.form-header h3 {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.form-header p {
  font-size: 1.1rem;
  color: #e2e8f0;
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #e2e8f0;
  margin-bottom: 0.5rem;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-wrapper i {
  position: absolute;
  left: 1rem;
  color: #64748b;
  font-size: 1rem;
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
  width: 100%;
  padding: 1rem 1rem 1rem 3rem;
  border: 2px solid #334155;
  border-radius: 12px;
  font-size: 1rem;
  background: #0f172a;
  transition: all 0.3s ease;
  color: white;
}

.input-wrapper textarea {
  padding-left: 3rem;
  resize: vertical;
  min-height: 120px;
}

.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
  outline: none;
  border-color: #16a34a;
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.2);
  background: #1e293b;
}

.input-wrapper input::placeholder,
.input-wrapper textarea::placeholder {
  color: #64748b;
}

.error-message {
  color: #dc2626;
  font-size: 0.8rem;
  margin-top: 0.5rem;
  min-height: 1rem;
}

.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: #16a34a;
  color: white;
  border: none;
  padding: 1.25rem 2rem;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-top: 1rem;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(22, 163, 74, 0.3);
  background: #15803d;
}

.btn-submit:active {
  transform: translateY(0);
}

.btn-loading {
  display: none;
}

.btn-submit.loading .btn-loading {
  display: block;
}

.btn-submit.loading span {
  display: none;
}

/* Location Section */
.location-section {
  padding: 6rem 0;
  background: #ffffff;
}

.location-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.location-card {
  background: #f8fafc;
  padding: 3rem;
  border-radius: 24px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
}

.location-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.location-header i {
  width: 60px;
  height: 60px;
  background: #16a34a;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
}

.location-header h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #1e293b;
}

.location-details {
  margin-bottom: 2rem;
}

.location-details p {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  color: #374151;
}

.location-details i {
  color: #16a34a;
  width: 20px;
}

.location-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.btn-map,
.btn-whatsapp-location {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-map {
  background: #3b82f6;
  color: white;
}

.btn-whatsapp-location {
  background: #16a34a;
  color: white;
}

.btn-map:hover,
.btn-whatsapp-location:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.location-map {
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-placeholder {
  background: #f8fafc;
  padding: 3rem;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #e2e8f0;
  width: 100%;
}

.map-placeholder i {
  font-size: 4rem;
  color: #16a34a;
  margin-bottom: 1rem;
}

.map-placeholder p {
  font-size: 1.2rem;
  color: #64748b;
  margin-bottom: 2rem;
}

.btn-open-map {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #16a34a;
  color: white;
  padding: 1rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-open-map:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(22, 163, 74, 0.3);
  background: #15803d;
}

/* FAQ Section */
.faq-section {
  padding: 6rem 0;
  background: #f8fafc;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-item:hover {
  border-color: #16a34a;
  box-shadow: 0 4px 20px rgba(22, 163, 74, 0.1);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  cursor: pointer;
  background: white;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: #f1f5f9;
}

.faq-question h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0;
}

.faq-question i {
  color: #16a34a;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 1.5rem 1.5rem;
  max-height: 200px;
}

.faq-answer p {
  color: #64748b;
  line-height: 1.6;
  margin: 0;
}

/* Quick Contact */
.quick-contact {
  padding: 6rem 0;
  background: #16a34a;
  color: white;
}

.quick-contact-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
}

.quick-contact-info h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.quick-contact-info p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.quick-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quick-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1rem;
}

.quick-feature i {
  color: #bbf7d0;
  width: 20px;
}

.quick-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.btn-whatsapp-urgent,
.btn-phone-urgent {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem 2rem;
  border-radius: 16px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
  min-width: 200px;
}

.btn-whatsapp-urgent {
  background: #25d366;
  color: white;
}

.btn-phone-urgent {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-whatsapp-urgent:hover,
.btn-phone-urgent:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.btn-whatsapp-urgent span,
.btn-phone-urgent span {
  font-size: 1.1rem;
}

.btn-whatsapp-urgent small,
.btn-phone-urgent small {
  font-size: 0.8rem;
  opacity: 0.8;
  font-weight: 400;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .location-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .quick-contact-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn-hero {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .contact-form-container {
    padding: 2rem;
  }

  .location-card {
    padding: 2rem;
  }

  .map-placeholder {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding: 1rem;
  }

  .contact-section {
    padding: 4rem 0;
  }

  .location-section,
  .faq-section,
  .quick-contact {
    padding: 4rem 0;
  }
}
