/* ===================================================================
   TRITEC INSTALAÇÕES - FULLSCREEN LIGHT GRAY THEME
   Sem quadros, 100% Fullscreen, Limpo e Elegante
   =================================================================== */

:root {
  /* Cores da Marca */
  --color-yellow: #ebd925;
  --color-yellow-bright: #faec32;
  --color-dark: #1e2128;
  
  /* Fundo Cinza Claro */
  --color-bg-page: #f1f3f6;
  --color-bg-subtle: #e8ecf1;
  --color-border-subtle: #e2e6eb;
  
  /* Textos */
  --color-text-title: #111827;
  --color-text-body: #4b5563;
  --color-text-muted: #6b7280;

  /* Redes */
  --color-whatsapp: #25d366;
  --color-whatsapp-hover: #20ba59;
  --color-instagram-start: #f09433;
  --color-instagram-end: #dc2743;

  /* Tipografia */
  --font-main: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html, body {
  width: 100%;
  min-height: 100vh;
  font-family: var(--font-main);
  background-color: var(--color-bg-page);
  color: var(--color-text-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Fundo Iluminado Sutil */
.bg-shape {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(90px);
  opacity: 0.35;
}

.shape-1 {
  top: -80px;
  right: -50px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(235, 217, 37, 0.45) 0%, transparent 70%);
}

.shape-2 {
  bottom: -80px;
  left: -50px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, #dfe4eb 0%, transparent 70%);
}

/* ===================================================================
   FULLSCREEN WRAPPER
   =================================================================== */
.fullscreen-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 36px 24px 30px;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

/* ===================================================================
   TOP STATUS
   =================================================================== */
.top-status {
  width: 100%;
  display: flex;
  justify-content: center;
}

.badge-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(254, 252, 232, 0.85);
  color: #854d0e;
  border: 1px solid #fde047;
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  backdrop-filter: blur(6px);
}

.dot-pulse {
  width: 8px;
  height: 8px;
  background-color: #ca8a04;
  border-radius: 50%;
  animation: pulseDot 1.8s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.9); opacity: 0.6; }
  50% { transform: scale(1.35); opacity: 1; }
  100% { transform: scale(0.9); opacity: 0.6; }
}

/* ===================================================================
   HERO CONTENT
   =================================================================== */
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 720px;
  margin: 20px 0;
}

.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo {
  max-width: 220px;
  height: auto;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.05));
  transition: transform 0.3s ease;
}

.brand-logo:hover {
  transform: scale(1.03);
}

.text-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.main-heading {
  font-size: clamp(1.65rem, 4.5vw, 2.3rem);
  font-weight: 800;
  color: var(--color-text-title);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.main-description {
  font-size: clamp(1rem, 2.2vw, 1.12rem);
  color: var(--color-text-body);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.main-description strong {
  color: var(--color-text-title);
}

/* ===================================================================
   ACTION BUTTONS (COMPACT & SIDE BY SIDE)
   =================================================================== */
.action-buttons-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 6px;
}

.btn-compact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 40px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  color: #ffffff;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid transparent;
}

.btn-compact svg {
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.btn-compact:hover svg {
  transform: scale(1.15);
}

/* WhatsApp Button */
.btn-whatsapp {
  background-color: var(--color-whatsapp);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25);
}

.btn-whatsapp:hover {
  background-color: var(--color-whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
}

/* Instagram Button */
.btn-instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  box-shadow: 0 4px 14px rgba(220, 39, 67, 0.25);
}

.btn-instagram:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(220, 39, 67, 0.35);
  filter: brightness(1.05);
}

/* ===================================================================
   BOTTOM CONTACT & FOOTER
   =================================================================== */
.bottom-footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-details-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 18px;
  font-size: 0.92rem;
  color: var(--color-text-body);
}

.contact-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--color-text-body);
  transition: var(--transition);
}

a.contact-item:hover {
  color: var(--color-text-title);
  transform: translateY(-1px);
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #854d0e;
  background: rgba(235, 217, 37, 0.2);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
}

.contact-separator {
  color: #cbd5e1;
  font-size: 1.1rem;
}

.copyright {
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

.copyright strong {
  color: var(--color-text-title);
}

/* Ripple animation on click */
@keyframes ripple {
  to {
    transform: scale(3.5);
    opacity: 0;
  }
}

/* ===================================================================
   RESPONSIVO
   =================================================================== */
@media (max-width: 600px) {
  .fullscreen-wrapper {
    padding: 24px 16px 20px;
  }

  .brand-logo {
    max-width: 180px;
  }

  .action-buttons-row {
    flex-direction: column;
    width: 100%;
  }

  .btn-compact {
    width: 100%;
    max-width: 320px;
    padding: 12px 18px;
  }

  .contact-details-box {
    flex-direction: column;
    gap: 8px;
  }

  .contact-separator {
    display: none;
  }
}
