/* Base styles and variables */
:root {
  --luminar-blue: #1c3d6e;
  --luminar-orange: #f7941e;
  --luminar-gray: #4a5568;
  --luminar-gray-light: #e2e8f0;
  --luminar-white: #ffffff;
  --luminar-blue-dark: #1a3664;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --border-radius: 0.75rem;
}

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

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--luminar-gray);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--luminar-blue);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
}

.btn-primary {
  background-color: var(--luminar-orange);
  color: var(--luminar-white);
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 500;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(247, 148, 30, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(247, 148, 30, 0.3);
}

.btn-secondary {
  background-color: var(--luminar-blue);
  color: var(--luminar-white);
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 500;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(28, 61, 110, 0.2);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(28, 61, 110, 0.3);
}

.section {
  padding: 4rem 0;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}

.section-subtitle {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.bg-light {
  background-color: var(--luminar-blue-dark);
  color: var(--luminar-white);
}

.bg-light h2.section-title,
.bg-light .section-subtitle,
.bg-light h3,
.bg-light p {
  color: var(--luminar-white);
}

.bg-light .card {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.bg-light .card h3,
.bg-light .card p {
  color: var(--luminar-white);
}

.bg-light .location-item {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.bg-light .location-item h3,
.bg-light .location-item p {
  color: var(--luminar-white);
}

.bg-light .location-item i {
  color: var(--luminar-orange);
}

.bg-light .map-placeholder {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.bg-light .map-placeholder i {
  color: var(--luminar-orange);
}

.text-red {
  color: #e53e3e;
}

.text-blue {
  color: var(--luminar-blue);
}

.bg-red-light {
  background-color: #fed7d7;
}

.bg-blue-light {
  background-color: #bee3f8;
}

.bg-orange-light {
  background-color: #feecdc;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  background-color: transparent;
}

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-md);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  padding-top: 5px;
}

.logo-img {
  height: 2.5rem;
  width: auto;
  transition: opacity 0.3s ease;
}

.header.scrolled .logo-img {
  opacity: 1;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--luminar-white);
}

.divider {
  height: 1.5rem;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.3);
  margin: 0 0.75rem;
  display: none;
}

.campaign-text {
  font-size: 0.875rem;
  color: var(--luminar-white);
  font-weight: 500;
  display: none;
}

.desktop-nav {
  display: none;
}

.desktop-nav a {
  margin-left: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--luminar-white);
}

.desktop-nav a:hover {
  color: var(--luminar-orange);
}

.menu-toggle {
  background: none;
  border: none;
  color: var(--luminar-white);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Adicionar estilo para o header quando rolar a página */
.header.scrolled .logo-text,
.header.scrolled .campaign-text,
.header.scrolled .desktop-nav a,
.header.scrolled .menu-toggle {
  color: var(--luminar-blue);
}

.header.scrolled .divider {
  background-color: rgba(74, 85, 104, 0.2);
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--luminar-white);
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  padding-top: 5rem;
}

.mobile-nav.active {
  transform: translateX(0);
}

.close-menu {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: var(--luminar-blue);
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-nav nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
}

.mobile-nav a {
  font-size: 1.125rem;
  font-weight: 500;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 4rem;
  overflow: hidden;
}

.background-elements {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  background-image: url('https://templocomunicacao.com.br/wp-content/uploads/2025/03/campanha-vacina.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 2rem 0;
}

.text-white {
  color: white !important;
}

.hero-text.light p {
  color: rgba(255, 255, 255, 0.9);
}

.stat.light .stat-number {
  color: white;
}

.stat.light .stat-label {
  color: rgba(255, 255, 255, 0.8);
}

.badge {
  background-color: rgba(255, 255, 255, 0.1);
}

.hero-text {
  max-width: 36rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  margin-bottom: 1.5rem;
}

.pulse-dot {
  width: 0.75rem;
  height: 0.75rem;
  background-color: var(--luminar-orange);
  border-radius: 50%;
  margin-right: 0.5rem;
  animation: pulse 2s infinite;
}

.badge span:last-child {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--luminar-orange);
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero h1 .highlight {
  color: var(--luminar-orange);
}

.hero p {
  margin-bottom: 2rem;
  font-size: 1.125rem;
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--luminar-blue);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--luminar-gray);
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.floating-image {
  width: 16rem;
  height: 16rem;
  position: relative;
  animation: float 5s ease-in-out infinite;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  padding: 1rem;
  box-shadow: var(--shadow-lg);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.mascot-img {
  width: 90%;
  height: 90%;
  object-fit: contain;
  border-radius: 5%;
}

.emoji {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: var(--shadow-lg);
}

.mascot-name {
  position: absolute;
  bottom: 2.5rem;
  left: 0;
  right: 0;
  text-align: center;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--luminar-blue);
}

.fade-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4rem;
  background: linear-gradient(to top, white, transparent);
}

/* Card Grid */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.card {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(226, 232, 240, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.icon-container {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.icon-container i {
  font-size: 1.5rem;
  color: var(--luminar-blue);
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.card p {
  margin-bottom: 1.5rem;
}

.feature-list li {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}

.feature-list li i {
  color: var(--luminar-orange);
  margin-right: 0.5rem;
}

/* Symptoms Cards */
.symptom-card {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(226, 232, 240, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.symptom-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.symptom-card .icon-container {
  background-color: rgba(247, 148, 30, 0.1);
  margin-bottom: 1rem;
}

.symptom-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

/* Timeline */
.card-header {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}

.card-header .icon-container {
  margin-right: 1rem;
  margin-bottom: 0;
}

.card-header h3 {
  margin-bottom: 0;
}

.timeline {
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0.5rem;
  width: 4px;
  background-color: var(--luminar-orange);
}

.timeline-item {
  position: relative;
  padding-left: 2rem;
  padding-bottom: 2rem;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 1rem;
  height: 1rem;
  background-color: white;
  border: 3px solid var(--luminar-orange);
  border-radius: 50%;
  z-index: 1;
}

.date {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--luminar-blue);
  margin-bottom: 0.5rem;
}

.timeline-content {
  display: grid;
  gap: 0.5rem;
}

.timeline-content div {
  display: flex;
  align-items: start;
}

.timeline-content i {
  margin-right: 0.5rem;
  color: var(--luminar-gray);
}

/* Numbered List */
.numbered-list {
  display: grid;
  gap: 1.5rem;
}

.numbered-list li {
  display: flex;
  align-items: start;
}

.number {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background-color: rgba(247, 148, 30, 0.2);
  color: var(--luminar-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-right: 0.75rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.content h4 {
  font-weight: 500;
  color: var(--luminar-blue);
  margin-bottom: 0.25rem;
}

/* Locations */
.locations-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.locations-map {
  background-color: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  min-height: 20rem;
}

.map-placeholder {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #e2e8f0;
  padding: 3rem;
}

.map-placeholder i {
  font-size: 4rem;
  color: var(--luminar-blue);
  margin-bottom: 1rem;
}

.locations-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.location-item {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--luminar-orange);
}

.location-item h3 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.location-item p {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}

.location-item i {
  margin-right: 0.5rem;
  color: var(--luminar-orange);
}

/* FAQ Accordion */
.faq-container {
  max-width: 48rem;
  margin: 0 auto;
}

.accordion-item {
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

.accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
}

.accordion-header h3 {
  font-size: 1.125rem;
  font-weight: 500;
  margin: 0;
  transition: color 0.3s ease;
}

.accordion-header:hover h3 {
  color: var(--luminar-orange);
}

.accordion-header .icon {
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header .icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
  max-height: 20rem;
  padding-bottom: 1.25rem;
}

/* Footer */
.footer {
  background-color: var(--luminar-blue);
  color: white;
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.footer-column h3 {
  color: white;
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-column h3::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 3rem;
  height: 3px;
  background-color: var(--luminar-orange);
}

.footer-column p {
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: background-color 0.3s ease;
}

.social-links a:hover {
  background-color: var(--luminar-orange);
}

.contact-list li {
  display: flex;
  align-items: start;
  margin-bottom: 1rem;
  opacity: 0.8;
}

.contact-list i {
  margin-right: 0.75rem;
  margin-top: 0.25rem;
  color: var(--luminar-orange);
}

.quick-links li {
  margin-bottom: 0.75rem;
}

.quick-links a {
  opacity: 0.8;
  transition: opacity 0.3s ease, color 0.3s ease;
}

.quick-links a:hover {
  opacity: 1;
  color: var(--luminar-orange);
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  opacity: 0.8;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  opacity: 0.6;
  font-size: 0.875rem;
}

/* Animations */
@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.7; }
  100% { transform: scale(1); opacity: 1; }
}

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

/* Scroll Reveal Animation */
.scroll-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Animate Hero Items */
.animate-item {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards;
}

.animate-item:nth-child(1) { animation-delay: 0.1s; }
.animate-item:nth-child(2) { animation-delay: 0.3s; }
.animate-item:nth-child(3) { animation-delay: 0.5s; }
.animate-item:nth-child(4) { animation-delay: 0.7s; }
.animate-item:nth-child(5) { animation-delay: 0.9s; }

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

/* Media Queries */
@media (min-width: 640px) {
  .divider, .campaign-text {
    display: block;
  }
  
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero h1 {
    font-size: 3rem;
  }
  
  .locations-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .section {
    padding: 6rem 0;
  }
  
  .desktop-nav {
    display: flex;
    align-items: center;
  }
  
  .menu-toggle {
    display: none;
  }
  
  .hero-content {
    flex-direction: row;
    gap: 4rem;
  }
  
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: 2.5rem;
  }
  
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .locations-container {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Symptom Group Cards */
.symptom-group-card {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(226, 232, 240, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.symptom-group-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.symptom-group-card .icon-container {
  background-color: rgba(28, 61, 110, 0.1);
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
}

.symptom-group-card .icon-container i {
  font-size: 2rem;
}

.symptom-group-card h3 {
  color: var(--luminar-blue);
  margin-bottom: 1rem;
}

.symptom-group-card p {
  color: var(--luminar-gray);
  margin-bottom: 1.5rem;
}

/* Detailed Symptoms Grid */
.symptoms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.symptom-item {
  background-color: white;
  border-radius: var(--border-radius);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(226, 232, 240, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.symptom-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  background-color: var(--luminar-blue);
  color: white;
}

.symptom-item i {
  font-size: 2rem;
  color: var(--luminar-orange);
}

.symptom-item:hover i {
  color: white;
}

.symptom-item span {
  font-weight: 500;
}

@media (max-width: 768px) {
  .symptoms-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
  
  .logo-img {
    height: 2rem;
  }
  
  .floating-image {
    width: 12rem;
    height: 12rem;
    padding: 1rem;
  }
}