:root {
  --color-primary: #0057B8;
  --color-cta: #1A8FE3;
  --color-secondary: #8B9BB4;
  --color-dark: #001435;
  --color-light: #F4F6FA;
  --color-white: #FFFFFF;
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Inter', sans-serif;
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
  font-family: var(--font-sans);
  color: #333;
  background-color: var(--color-white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--color-dark);
}

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

img {
  max-width: 100%;
  height: auto;
}

/* Animations */
.animate-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.animate-up.visible {
  opacity: 1;
  transform: translateY(0);
}

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

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(26, 143, 227, 0.4); }
  50% { box-shadow: 0 0 20px 5px rgba(26, 143, 227, 0.15); }
}

/* Header & Lang Bar */
.top-bar {
  background-color: var(--color-dark);
  color: var(--color-white);
  padding: 8px 5%;
  display: flex;
  justify-content: flex-end;
  font-size: 0.85rem;
  align-items: center;
}
.lang-selector {
  position: relative;
  display: flex;
  align-items: center;
}

.custom-select-wrapper {
  position: relative;
  user-select: none;
  cursor: pointer;
}

.custom-select-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 4px 12px;
  border-radius: 20px;
  font-family: var(--font-sans);
  font-weight: 500;
  transition: var(--transition);
}

.custom-select-trigger:hover {
  background: rgba(255,255,255,0.2);
  border-color: var(--color-cta);
}

.custom-options {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  background: var(--color-white);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 1001;
  min-width: 140px;
}

.custom-options.open {
  display: flex;
}

.custom-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 15px;
  color: var(--color-dark);
  font-weight: 500;
  transition: background 0.3s ease;
}

.custom-option:hover {
  background-color: var(--color-light);
  color: var(--color-cta);
}

.flag-icon {
  width: 20px;
  height: 15px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.top-bar select {
  display: none; /* Hide old select */
}

header {
  background-color: var(--color-white);
  padding: 15px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.logo img {
  height: 160px;
  transition: var(--transition);
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: brightness(1.05); /* Garante que o fundo do logo seja branco puro */
}
.logo img:hover {
  transform: scale(1.05);
}

.nav-menu {
  display: flex;
  gap: 20px;
  list-style: none;
  align-items: center;
}
.nav-menu a {
  font-weight: 500;
  color: var(--color-dark);
  transition: color 0.3s ease;
  font-size: 0.95rem;
}
.nav-menu a:hover {
  color: var(--color-cta);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-dark);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1rem;
  letter-spacing: 0.3px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--color-cta) 0%, var(--color-primary) 100%);
  color: var(--color-white);
  border: none;
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}
.btn-primary:hover::after {
  left: 100%;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26, 143, 227, 0.5);
}
.btn-outline {
  background-color: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background-color: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-white);
}

/* ===========================
   HERO SECTION
   =========================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  padding: 0 5%;
  color: var(--color-white);
  background: var(--color-dark);
  overflow: hidden;
}

.hero-bg-image {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1;
}

.hero-bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(0,20,53,0.92) 0%, rgba(0,57,120,0.75) 50%, rgba(0,87,184,0.55) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1100px;
}

.hero-content h1 {
  color: var(--color-white);
  font-size: 3.8rem;
  line-height: 1.15;
  margin-bottom: 24px;
  text-shadow: 0 2px 30px rgba(0,0,0,0.3);
}

.hero-content p {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 35px;
  max-width: 900px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 18px;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  gap: 30px;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 25px;
  flex-wrap: nowrap;
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: 1rem;
  white-space: nowrap;
}
.stat-icon {
  width: 36px;
  height: 36px;
  background: rgba(26,143,227,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

/* ===========================
   SECTIONS GLOBAL
   =========================== */
section {
  padding: 100px 5%;
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header h2 {
  font-size: 2.8rem;
  margin-bottom: 15px;
  color: var(--color-primary);
}
.section-header .line {
  height: 3px;
  width: 70px;
  background: linear-gradient(90deg, var(--color-cta), var(--color-primary));
  margin: 0 auto;
  border-radius: 2px;
}

.bg-light {
  background-color: var(--color-light);
}

/* ===========================
   ABOUT SECTION
   =========================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.about-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
/* Duplicate logo styles removed and consolidated above */
.about-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.about-image:hover img {
  transform: scale(1.03);
}
.about-image::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(transparent, rgba(0,20,53,0.3));
  pointer-events: none;
}
.about-text h2 {
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: 20px;
}
.about-text p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 35px;
  line-height: 1.8;
}
.about-stats {
  display: flex;
  gap: 30px;
}
.about-stat {
  border-left: 3px solid var(--color-cta);
  padding-left: 15px;
}
.about-stat h4 {
  font-size: 1.5rem;
  color: var(--color-dark);
}
.about-stat span {
  font-size: 0.9rem;
  color: var(--color-secondary);
}

/* ===========================
   DIFERENCIAIS (Cards 6)
   =========================== */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.diff-card {
  background: var(--color-white);
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: var(--transition);
  border-top: 4px solid transparent;
  position: relative;
  overflow: hidden;
}
.diff-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(26,143,227,0.03), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.diff-card:hover::before {
  opacity: 1;
}
.diff-card:hover {
  transform: translateY(-10px);
  border-color: var(--color-cta);
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
.diff-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(26,143,227,0.1), rgba(0,87,184,0.1));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.diff-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  color: var(--color-primary);
}
.diff-card p {
  color: #666;
  line-height: 1.7;
}

/* ===========================
   SERVICES (with image banner)
   =========================== */
.services-section {
  position: relative;
  overflow: hidden;
}
.services-bg-banner {
  position: relative;
  height: 300px;
  margin: -100px -5% 50px -5%;
  overflow: hidden;
}
.services-bg-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}
.services-bg-banner::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, var(--color-light) 0%, rgba(244,246,250,0.4) 30%, rgba(244,246,250,0.8) 80%, var(--color-light) 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}
.service-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--color-white);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.04);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.03);
}
.service-item:hover {
  background: linear-gradient(135deg, var(--color-primary), var(--color-dark));
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,87,184,0.3);
}
.service-item:hover .service-num {
  color: var(--color-cta);
  opacity: 1;
}
.service-item:hover h3 {
  color: var(--color-white);
}
.service-item:hover .service-desc {
  color: rgba(255, 255, 255, 0.9);
}
.service-num {
  font-size: 2.2rem;
  font-family: var(--font-serif);
  color: var(--color-secondary);
  opacity: 0.4;
  font-weight: 700;
  transition: var(--transition);
  min-width: 50px;
  line-height: 1;
}
.service-content {
  flex: 1;
}
.service-item h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  transition: var(--transition);
}
.service-desc {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
  transition: var(--transition);
}

/* ===========================
   HOW WE WORK (with image)
   =========================== */
.how-section {
  position: relative;
  overflow: hidden;
}
.how-bg-strip {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 250px;
  overflow: hidden;
  z-index: 0;
}
.how-bg-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.how-bg-strip::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.3), rgba(255,255,255,1));
}
.how-section .section-header,
.how-section .timeline {
  position: relative;
  z-index: 1;
}

.timeline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 25px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-cta), var(--color-primary));
  opacity: 0.3;
  z-index: 1;
  border-radius: 2px;
}
.timeline-item {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 15%;
}
.timeline-step {
  width: 52px;
  height: 52px;
  background-color: var(--color-white);
  border: 3px solid var(--color-cta);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px auto;
  font-weight: bold;
  color: var(--color-primary);
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(26,143,227,0.2);
  animation: pulseGlow 3s infinite;
}
.timeline-item h4 {
  font-size: 1.05rem;
  margin-bottom: 10px;
}
.timeline-item p {
  font-size: 0.78rem;
  color: #666;
}

/* ===========================
   PME SECTION (with photo background)
   =========================== */
.pme {
  position: relative;
  color: var(--color-white);
  text-align: center;
  overflow: hidden;
}
.pme-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1;
}
.pme-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.pme-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(0,20,53,0.93) 0%, rgba(0,87,184,0.88) 100%);
  z-index: 2;
}
.pme-content {
  position: relative;
  z-index: 3;
}

.pme .badge {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: var(--color-cta);
  border: 1px solid rgba(26,143,227,0.3);
}
.pme h2 {
  color: var(--color-white);
  font-size: 2.4rem;
  max-width: 700px;
  margin: 0 auto 50px auto;
}
.pme-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 45px;
}
.pme-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 30px 20px;
  border-radius: 12px;
  backdrop-filter: blur(15px);
  transition: var(--transition);
}
.pme-card:hover {
  background: rgba(255,255,255,0.12);
  transform: translateY(-5px);
}
.pme-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(26,143,227,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin: 0 auto 15px auto;
}
.pme-card h4 {
  color: var(--color-white);
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.pme-card p {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ===========================
   SEGMENTS (with aerial bg)
   =========================== */
.segments-section {
  position: relative;
  overflow: hidden;
}
.segments-parallax {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
  overflow: hidden;
}
.segments-parallax img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.3);
}

.segments-section .section-header,
.segments-section .segment-tags {
  position: relative;
  z-index: 1;
}
.segments-section .section-header h2 {
  color: var(--color-white);
}

.segment-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}
.segment-tag {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
  transition: var(--transition);
  backdrop-filter: blur(10px);
}
.segment-tag:hover {
  background: var(--color-cta);
  border-color: var(--color-cta);
  color: var(--color-white);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(26,143,227,0.3);
}

/* ===========================
   FAQ
   =========================== */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid #E8EAF0;
  margin-bottom: 10px;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 0;
  font-size: 1.1rem;
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--color-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}
.faq-question:hover {
  color: var(--color-cta);
}
.faq-question .icon {
  font-size: 1.5rem;
  color: var(--color-cta);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 15px;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
.faq-answer p {
  padding-bottom: 18px;
  color: #666;
  font-size: 0.95rem;
  line-height: 1.7;
}
.faq-item.active .faq-question {
  color: var(--color-primary);
}

/* ===========================
   MISSION
   =========================== */
.mission {
  background-color: var(--color-light);
  text-align: center;
  padding: 120px 5%;
}
.mission-content {
  max-width: 800px;
  margin: 0 auto;
}
.mission blockquote {
  font-family: var(--font-serif);
  font-size: 2rem;
  line-height: 1.4;
  color: var(--color-primary);
  margin-bottom: 30px;
  font-style: italic;
  position: relative;
}
.mission blockquote::before {
  content: '"';
  font-size: 6rem;
  position: absolute;
  top: -50px;
  left: -20px;
  color: var(--color-secondary);
  opacity: 0.15;
  font-family: var(--font-serif);
}
.mission cite {
  font-size: 1.1rem;
  color: var(--color-dark);
  font-weight: bold;
}

/* ===========================
   CONTACT
   =========================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto;
}
.contact-info .info-item {
  margin-bottom: 25px;
}
.contact-info h3 {
  font-size: 1.8rem;
  margin-bottom: 30px;
}
.info-item h4 {
  font-size: 0.9rem;
  color: var(--color-secondary);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.info-item p {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-dark);
}
.info-item p a {
  text-decoration: underline;
  text-underline-offset: 4px;
  color: var(--color-primary);
  transition: var(--transition);
}
.info-item p a:hover {
  color: var(--color-cta);
}
.contact-form {
  background: var(--color-white);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}
.form-group {
  margin-bottom: 20px;
}
.form-control {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #D8DDE6;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  background: var(--color-light);
}
.form-control:focus {
  outline: none;
  border-color: var(--color-cta);
  box-shadow: 0 0 0 3px rgba(26,143,227,0.1);
  background: var(--color-white);
}
textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* ===========================
   FOOTER
   =========================== */
footer {
  background-color: var(--color-dark);
  color: var(--color-white);
  text-align: center;
  padding: 30px 5%;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 900px) {
  .hero-content h1 { font-size: 2.2rem; }
  .hero-content h1 br { display: none; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 30px; }
  .services-grid { grid-template-columns: 1fr; }
  .timeline { flex-direction: column; align-items: center; }
  .timeline::before {
    top: 0; left: 50%; transform: translateX(-50%); width: 3px; height: 100%;
  }
  .timeline-item { width: 100%; margin-bottom: 30px; }
  .section-header h2 { font-size: 2.2rem; }
}

@media (max-width: 768px) {
  .mobile-menu-btn { display: block; }
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--color-white);
    flex-direction: column;
    padding: 20px 5%;
    gap: 15px;
    box-shadow: 0 10px 15px rgba(0,0,0,0.05);
    display: none;
  }
  .nav-menu.active { display: flex; }
  .hero-buttons { flex-direction: column; }
  .hero-stats { flex-direction: column; gap: 15px; }
  .pme h2 { font-size: 1.8rem; }
  .mission blockquote { font-size: 1.5rem; }
  .about-image img { height: 300px; }
  .services-bg-banner { height: 200px; }
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50px;
  text-align: center;
  font-size: 32px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #128c7e;
  color: white;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

@media (max-width: 768px) {
  .logo img {
    height: 80px;
  }
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 1.8rem; }
  .hero-content p { font-size: 1rem; }
  .section-header h2 { font-size: 1.8rem; }
  .pme h2 { font-size: 1.5rem; }
  .top-bar { justify-content: center; }
  .logo img { height: 70px; }
  header { padding: 10px 5%; }
  .hero-buttons { width: 100%; }
  .hero-buttons .btn { width: 100%; margin-bottom: 10px; }
  .hero-stats { gap: 10px; }
  .stat-item { font-size: 0.9rem; }
}

/* Form Success/Error Messages */
.form-message {
  margin-top: 20px;
  padding: 15px 20px;
  border-radius: 8px;
  font-size: 0.95rem;
  display: none;
  text-align: center;
  transition: all 0.3s ease;
  font-weight: 600;
}

.form-message.success {
  display: block;
  background-color: rgba(40, 167, 69, 0.1);
  color: #1b742e;
  border: 1px solid rgba(40, 167, 69, 0.2);
}

.form-message.error {
  display: block;
  background-color: rgba(220, 53, 69, 0.1);
  color: #a71d2a;
  border: 1px solid rgba(220, 53, 69, 0.2);
}

/* Button Loading State */
#submitBtn.loading {
  opacity: 0.7;
  pointer-events: none;
  position: relative;
  color: transparent !important;
}

#submitBtn.loading::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  margin: -10px 0 0 -10px;
  border: 3px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}
