/* 
  Satelital - Estilos Consolidados
*/

/* Interceptor Styles (WhatsApp Redirect) */
.interceptor-view {
  font-family: Arial, sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #f4f4f4;
  text-align: center;
  margin: 0;
}

.loader {
  border: 5px solid #e0e0e0;
  border-top: 5px solid #25D366;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

a.btn-manual {
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #25D366;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

/* Base CSS & Reset */
:root {
  --color-dark: #0F172B;
  --color-green: #25D366;
  --color-green-dark: #1DAA61;
  --color-text: #314158;
  --color-text-light: #45556C;
  --color-border: #E2E8F0;
  --color-bg-light: #F8FAFC;
  --color-footer-bg: #030213;
  --color-footer-border: #1D293D;
  --color-footer-text: #90A1B9;
  --font-inter: 'Inter', sans-serif;
  --shadow-bento: -8px -8px 16px 0px rgba(255, 255, 255, 0.8), 8px 8px 16px 0px rgba(0, 0, 0, 0.05), inset -4px -4px 8px 0px rgba(0, 0, 0, 0.03), inset 4px 4px 8px 0px rgba(255, 255, 255, 0.9);
}

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

body {
  font-family: var(--font-inter);
  color: var(--color-text);
  line-height: 1.5;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
}

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

ul {
  list-style: none;
}

.container {
  max-width: 1171px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #F1F5F9;
  height: 65px;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

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

.logo-icon {
  background: var(--color-dark);
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}

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

.btn-whatsapp {
  background: var(--color-green);
  color: #fff;
  border-radius: 9999px;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: transform 0.2s, background 0.2s;
}

.btn-whatsapp:hover {
  background: var(--color-green-dark);
  transform: translateY(-1px);
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 737px;
  display: flex;
  align-items: flex-start;
  padding-top: 80px;
  overflow: hidden;
}

.hero-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(15, 23, 43, 0.8), rgba(15, 23, 43, 0.8));
  z-index: -1;
}

.hero-container {
  width: 100%;
  position: relative;
  padding-right: 0;
}

.hero-content {
  max-width: 517px;
  margin-bottom: 40px;
}

.hero-title {
  color: #fff;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero-description {
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
  opacity: 0.9;
}

.hero-form-box {
  background: #fff;
  border-radius: 8px;
  padding: 24px;
  max-width: 517px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 24px;
}

.form-inputs {
  background: transparent;
  padding: 0;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.form-inputs::before {
  content: '';
  position: absolute;
  left: 21.5px;
  top: 25px;
  bottom: 25px;
  width: 1px;
  background: #000;
  z-index: 1;
}

.input-group {
  display: flex;
  align-items: center;
  padding: 0 16px;
  gap: 16px;
  background: #F2F2F2;
  border-radius: 8px;
  height: 51px;
}

.input-icon {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  background: #F2F2F2;
}

.input-icon.dot {
  border: 2px solid var(--color-dark);
  border-radius: 50%;
}

.input-icon.square {
  background: var(--color-dark);
}

.input-divider {
  display: none;
}

.input-group input {
  border: none;
  background: transparent;
  width: 100%;
  font-family: var(--font-inter);
  font-size: 16px;
  color: var(--color-dark);
  outline: none;
}

.input-group input::placeholder {
  color: #595959;
}

.btn-reservar {
  background: var(--color-green-dark);
  color: #fff;
  width: 100%;
  padding: 16px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  transition: opacity 0.2s;
}

.btn-reservar:hover {
  opacity: 0.9;
}

.hero-badges {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #CAD5E2;
  font-size: 14px;
  font-weight: 600;
}

.badge.separator {
  width: 4px;
  height: 4px;
  background: #45556C;
  border-radius: 50%;
}

@media (min-width: 768px) {
  .hero-container {
    display: grid;
    grid-template-columns: 1fr 517px 0px;
    align-content: start;
  }

  .hero-content {
    grid-column: 2;
    text-align: left;
    margin-bottom: 40px;
  }

  .hero-form-box {
    grid-column: 2;
    margin-bottom: 40px;
  }

  .hero-badges {
    grid-column: 2;
    justify-content: flex-start;
  }

  .btn-reservar {
    width: 257px;
  }

  .hero-title {
    font-size: 64px;
  }
}

/* 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 h3 {
  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;
  }
}
