/*
Theme Name: Satelital
Author: Luis Venturi
Description: Tema ligero y optimizado para la landing page de Satelital Taxi.
Version: 1.0
Text Domain: satelital
*/



/* Trust Banner */
.trust-banner {
  background: var(--color-footer-bg);
  border-top: 1px solid var(--color-footer-border);
  padding: 40px 0;
}

.trust-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}

.trust-title {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}

.brand-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  opacity: 0.7;
}

.brand-logo {
  max-height: 24px;
  width: auto;
}

/* Services Bento */
.services-wrapper {
  background: var(--color-bg-light);
  padding: 80px 0;
}

.services-header, .faq-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-label {
  color: #334155;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.section-title {
  color: var(--color-dark);
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
}

.bento-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 80px;
}

.bento-card {
  background: #FFFFFF;
  box-shadow: var(--shadow-bento);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.3s ease;
}

.bento-card:hover {
  transform: translateY(-5px);
}

.bento-icon {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  object-fit: contain;
  flex-shrink: 0;
}

.bento-title {
  color: var(--color-dark);
  font-size: 20px;
  font-weight: 700;
}

.bento-list li {
  color: var(--color-text);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.bento-list .bullet {
  color: var(--color-green);
  font-weight: 800;
  font-size: 20px;
  line-height: 1;
}

/* How It Works */
.how-it-works {
  padding-top: 40px;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  text-align: center;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.step-icon {
  width: 80px;
  height: 80px;
  background: #fff;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.step-title {
  color: var(--color-dark);
  font-size: 20px;
  font-weight: 800;
}

.step-desc {
  color: var(--color-text-light);
  font-size: 16px;
}

/* FAQ */
.faq-section {
  background: var(--color-bg-light);
  padding: 40px 0 80px;
}

.faq-container {
  max-width: 768px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 8px;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-dark);
  cursor: pointer;
  list-style: none; /* Hide default marker */
}

.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-content {
  padding: 0 8px 24px;
  color: var(--color-text-light);
  font-size: 16px;
  line-height: 1.6;
}

.faq-icon-open {
  display: none;
}

.faq-item[open] .faq-icon {
  display: none;
}

.faq-item[open] .faq-icon-open {
  display: block;
}

.faq-icon, .faq-icon-open {
  font-size: 24px;
  color: var(--color-text-light);
  font-weight: 400;
}

/* Footer */
.footer {
  background: var(--color-footer-bg);
  border-top: 1px solid var(--color-footer-border);
  padding: 60px 0 30px;
  color: var(--color-footer-text);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand .logo {
  margin-bottom: 20px;
}

.footer-brand .logo-text {
  color: #fff;
}

.footer-desc {
  font-size: 16px;
  line-height: 1.6;
}

.footer-links h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 20px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  border-top: 1px solid var(--color-footer-border);
  padding-top: 30px;
  text-align: center;
}

.copyright {
  font-size: 14px;
}

.btn-whatsapp-footer {
  background: var(--color-green);
  color: #fff;
  padding: 12px 24px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  transition: opacity 0.2s;
}

.btn-whatsapp-footer:hover {
  opacity: 0.9;
}

/* Floating WhatsApp Button */
.floating-whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: var(--color-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: transform 0.3s;
}

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

/* Media Queries (Desktop) */
@media (min-width: 768px) {
  
  .trust-title {
    font-size: 24px;
  }
  
  .brand-logos {
    gap: 40px;
  }

  .section-title {
    font-size: 36px;
  }

  .bento-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-top {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
