﻿/*
Theme Name: ESUGEP Theme
Theme URI: https://esugep.com.br/
Author: Codex
Description: Tema de pagina unica para ESUGEP com conteudo editavel via Customizer.
Version: 1.0.0
Text Domain: esugep-theme
*/

:root {
  --orange: #ef6c00;
  --orange-dark: #c45500;
  --blue: #26a3ea;
  --cream: #fff6ee;
  --ink: #1a1a1a;
  --muted: #5d5d5d;
}

body {
  font-family: "Source Sans 3", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #fff 0%, #f8f6f3 50%, #ffffff 100%);
}

h1, h2, h3, .display-5 {
  font-family: "Playfair Display", "Times New Roman", serif;
  letter-spacing: 0.3px;
}

.navbar {
  background: rgba(239, 108, 0, 0.96);
  backdrop-filter: blur(6px);
}

.brand-logo {
  height: 44px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}

.custom-logo-link {
  display: inline-flex;
  align-items: center;
}

.custom-logo {
  height: 44px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}

.navbar .nav-link,
.navbar .navbar-brand {
  color: #fff;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
  color: #ffe0c7;
}

.hero {
  position: relative;
  min-height: 80vh;
  color: #fff;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.08),
    rgba(255, 255, 255, 0.08) 2px,
    transparent 2px,
    transparent 10px
  );
  mix-blend-mode: soft-light;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.85rem;
  color: #ffd7b4;
}

.badge-line {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 1.1rem;
  color: #ffe7d4;
}

.section-pad {
  padding: 80px 0;
}

.section-title {
  position: relative;
  display: inline-block;
  padding-bottom: 12px;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 3px;
  background: var(--orange);
}

.card {
  border: none;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.card-img-top {
  height: 200px;
  object-fit: cover;
}

.pill {
  background: var(--blue);
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
}

.bg-cream {
  background: var(--cream);
}

.bg-orange {
  background: var(--orange);
  color: #fff;
}

.bg-orange a {
  color: #fff;
}

.bg-dark-ink {
  background: #15110f;
  color: #e8e2de;
}

.btn-orange {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

.btn-orange:hover,
.btn-orange:focus {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  color: #fff;
}

.info-panel {
  background: #fff;
  border-left: 6px solid var(--orange);
  padding: 24px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.contact-card {
  background: #fff;
  border: 1px solid #ece3db;
  padding: 32px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.footer-note {
  font-size: 0.9rem;
  color: #c7bdb5;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  animation: fadeUp 0.9s ease forwards;
}

.reveal.delay-1 { animation-delay: 0.2s; }
.reveal.delay-2 { animation-delay: 0.4s; }
.reveal.delay-3 { animation-delay: 0.6s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 991px) {
  .hero {
    min-height: 70vh;
  }
}
