/* ============================================================
   ProService Portugal - Common Styles
   Used by ALL pages (index, services, legal)
   ============================================================ */

/* ============================================================
   1. RESET / BASE
   ============================================================ */

* {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #D4AF37;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #d55418;
}

/* ============================================================
   2. BRAND COLORS
   ============================================================ */

.brand-gold {
  color: #D4AF37;
}

.bg-brand-gold {
  background-color: #D4AF37;
}

.brand-black {
  color: #000000;
}

.bg-brand-black {
  background-color: #000000;
}

.border-brand-gold {
  border-color: #D4AF37;
}

/* ============================================================
   3. LOGO & FOOTER LOGOS
   ============================================================ */

.logo-text {
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1;
}

.logo-text .pro {
  color: #000000;
}

.logo-text .service {
  color: #D4AF37;
}

.logo-text .portugal {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 8px;
  color: #000000;
  margin-top: 2px;
}

.footer-logo-text {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1;
}

.footer-logo-text .pro {
  color: #000000;
}

.footer-logo-text .service {
  color: #D4AF37;
}

.footer-logo-text .portugal {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 7px;
  color: #000000;
  margin-top: 2px;
}

/* ============================================================
   4. ANIMATIONS
   ============================================================ */

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse-gold {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(242, 101, 34, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(242, 101, 34, 0);
  }
}

@keyframes slideInLeft {
  from {
    transform: translateX(-100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes fadeInUpDropdown {
  from {
    transform: translateY(-8px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.float-animation {
  animation: float 3s ease-in-out infinite;
}

.pulse-gold {
  animation: pulse-gold 2s infinite;
}

.slide-in-left {
  animation: slideInLeft 0.6s ease-out;
}

.slide-in-right {
  animation: slideInRight 0.6s ease-out;
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

/* ============================================================
   5. HOVER UTILITIES
   ============================================================ */

.hover-lift {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* ============================================================
   8. MISSING TAILWIND UTILITIES (pro.css truncated build)
   ============================================================ */

.bg-white { background-color: #fff; }
.bg-gray-50 { background-color: #f9fafb; }
.bg-gray-100 { background-color: #f3f4f6; }

.text-gray-800 { color: #1f2937; }
.text-gray-600 { color: #4b5563; }
.text-gray-500 { color: #6b7280; }
.text-gray-400 { color: #9ca3af; }

.shadow { box-shadow: 0 1px 3px 0 rgba(0,0,0,.1), 0 1px 2px -1px rgba(0,0,0,.1); }

.w-14 { width: 3.5rem; }
.h-14 { height: 3.5rem; }
.bg-green-500 { background-color: #22c55e; }

@media (min-width: 1024px) {
  .lg\:block { display: block; }
}
