/* Reset e Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 14px;
}

.btn-primary {
  background: white;
  color: #e18b2d;
  border: 2px solid white;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.btn-primary:hover {
  background: #e18b2d;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(225, 139, 45, 0.3);
}

.btn-secondary {
  background: #e18b2d;
  color: white;
  border: 2px solid #e18b2d;
  padding: 12px 24px;
  font-weight: 600;
  text-transform: uppercase;
}

.btn-secondary:hover {
  background: white;
  color: #e18b2d;
  transform: translateY(-2px);
}

.btn-header {
  background: white;
  color: #e18b2d;
  border: 2px solid white;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
}

.btn-header:hover {
  background: #f8f9fa;
  transform: translateY(-1px);
}

.btn-whatsapp-header {
  background: #e18b2d;
  color: white;
  border: 2px solid #e18b2d;
  padding: 12px 20px;
  border-radius: 25px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-whatsapp-header:hover {
  background: #d17a1c;
  transform: translateY(-1px);
}

/* Header Top */
.header-top {
  background: #e18b2d;
  padding: 8px 0;
  color: white;
  font-size: 14px;
}

.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-info {
  display: flex;
  gap: 30px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: white;
  font-size: 14px;
  font-weight: 500;
  transition: opacity 0.3s ease;
}

.contact-item:hover {
  opacity: 0.8;
}

.contact-item .icon {
  font-size: 16px;
}

.header-buttons {
  display: flex;
  gap: 15px;
}

/* Header Navigation */
.header {
  background: white;
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 50px;
  width: auto;
}

.nav-menu {
  display: flex;
  gap: 40px;
  margin: 0;
}

.nav-menu a {
  text-decoration: none;
  color: #666;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.3s ease;
  position: relative;
}

.nav-menu a:hover {
  color: #e18b2d;
}

.whatsapp-header {
  display: flex;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #333;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #e18b2d 0%, #f39c12 100%);
  background-image: url("./images/atendimento-feliz.png");
  background-size: cover;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-text {
  position: relative;
}

.hero-text h1 {
  font-size: 3.5rem;
  color: white;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 40px;
}

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

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}

.dots-pattern {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 80px;
  height: 80px;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.3) 2px,
    transparent 2px
  );
  background-size: 15px 15px;
}

.dots-pattern-right {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background-image: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.3) 2px,
    transparent 2px
  );
  background-size: 15px 15px;
}

.plus-icon {
  position: absolute;
  bottom: -30px;
  left: -30px;
  font-size: 60px;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 300;
}

/* Exames Section */
.exames {
  padding: 80px 0;
  background: #f8f9fa;
}

.exames-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}

.exames-intro {
  background: #e18b2d;
  background-image: url("./images/Grupo-50.png");
  background-size: cover;
  padding: 40px;
  border-radius: 20px;
  color: white;
}

.section-subtitle {
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title {
  font-size: 2.1rem;
  margin-bottom: 20px;
  color: white;
  font-weight: 700;
  line-height: 1.2;
}

.exames-intro p {
  font-size: 1rem;
  margin-bottom: 30px;
  line-height: 1.6;
}

.exames-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.exame-card {
  background: white;
  padding: 30px 20px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.exame-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.exame-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}

.exame-card h4 {
  font-size: 1rem;
  color: #333;
  font-weight: 600;
  line-height: 1.4;
}

/* Sobre Section */
.sobre {
  padding: 80px 0;
  background: white;
}

.sobre-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.sobre-text .section-subtitle {
  color: #e18b2d;
}

.sobre-text .section-title {
  color: #333;
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.sobre-description p {
  color: #666;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

.missao {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin: 40px 0;
  padding: 25px;
  background: #e18b2d;
  border-radius: 15px;
  color: white;
}

.missao-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}

.missao-text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
}

.sobre-image {
  position: relative;
}

.image-container {
  position: relative;
  background: #e18b2d;
  border-radius: 20px;
  padding: 20px;
}

.sobre-image-container {
  position: relative;
}

.sobre-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

/* Unidades Section */
.unidades {
  padding: 80px 0;
  background: #f8f9fa;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .section-subtitle {
  color: #e18b2d;
}

.section-header .section-title {
  color: #333;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.section-header p {
  color: #666;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.unidades-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 40px;
}

.unidade-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.unidade-card:hover {
  transform: translateY(-5px);
}

.unidade-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.unidade-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.unidade-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #e18b2d 0%, #f39c12 100%);
  color: white;
  padding: 20px;
}

.unidade-overlay h3 {
  font-size: 1.3rem;
  margin-bottom: 5px;
  font-weight: 700;
}

.unidade-overlay p {
  font-size: 0.9rem;
  opacity: 0.9;
}

.unidade-info {
  padding: 30px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.info-item:last-of-type {
  border-bottom: none;
  margin-bottom: 30px;
}

.info-item img {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.info-item .icon {
  font-size: 24px;
  width: 40px;
  text-align: center;
  flex-shrink: 0;
}

.info-item h4 {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 5px;
  font-weight: 600;
}

.info-item p {
  color: #666;
  line-height: 1.5;
}

/* Footer */
.footer {
  background: #e18b2d;
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h4 {
  color: white;
  margin-bottom: 20px;
  font-size: 1.1rem;
  font-weight: 600;
}

.footer-section p {
  color: white;
  line-height: 1.6;
  margin-bottom: 15px;
  font-size: 0.9rem;
}

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 0.8;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  transition: opacity 0.3s ease;
}

.footer-contact a:hover {
  opacity: 0.8;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-size: 0.9rem;
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.whatsapp-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
}

.whatsapp-float a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-icon {
  font-size: 24px;
  color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header-top {
    padding: 10px 0;
  }

  .header-top .container {
    flex-direction: column;
    gap: 10px;
  }

  .contact-info {
    gap: 15px;
  }

  .header-buttons {
    gap: 10px;
  }

  .header .container {
    flex-wrap: wrap;
  }

  .nav-menu {
    display: none;
    width: 100%;
    flex-direction: column;
    background: white;
    position: absolute;
    top: 100%;
    left: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    gap: 20px;
  }

  .nav-menu.active {
    display: flex;
  }

  .whatsapp-header {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }

  .hero {
    padding: 60px 0;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .exames-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .exames-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .sobre-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .unidades-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .container {
    padding: 0 15px;
  }

  section {
    padding: 60px 0;
  }

  .missao {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 2rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .exames-grid {
    grid-template-columns: 1fr;
  }

  .exame-card {
    padding: 25px 15px;
  }

  .exames-intro {
    padding: 30px 20px;
  }

  .whatsapp-float {
    bottom: 15px;
    right: 15px;
  }

  .whatsapp-float a {
    width: 50px;
    height: 50px;
  }

  .whatsapp-icon {
    font-size: 20px;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

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

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

/* Focus styles for accessibility */
.btn:focus,
.nav-menu a:focus,
.contact-item:focus {
  outline: 2px solid #e18b2d;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .header-top,
  .whatsapp-float,
  .btn {
    display: none;
  }

  .hero {
    background: none;
    color: #333;
    padding: 40px 0;
  }

  section {
    padding: 20px 0;
  }
}

/* Estilos para páginas internas */
.page-header {
  background: linear-gradient(135deg, #e18b2d 0%, #f39c12 100%);
  padding: 100px 0 60px;
  text-align: center;
  color: white;
}

.page-header h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.page-header p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
}

.nav-menu a.active {
  color: #e18b2d;
  font-weight: 600;
}

/* Estilos para página de Convênios */
.convenios {
  padding: 80px 0;
  background: #f8f9fa;
}

.convenios-intro {
  text-align: center;
  margin-bottom: 60px;
}

.convenios-intro h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 20px;
  font-weight: 700;
}

.convenios-intro p {
  font-size: 1.1rem;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.convenios-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 60px;
}

.convenio-card {
  background: white;
  padding: 20px 15px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border-left: 4px solid #e18b2d;
}

.convenio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.convenio-card h3 {
  font-size: 1rem;
  color: #333;
  margin-bottom: 10px;
  font-weight: 600;
}

.convenio-card img {
  height: 100px;
}

.convenio-card p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.5;
}

.convenios-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 60px;
}

.info-box,
.contact-box {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.info-box h3,
.contact-box h3 {
  color: #e18b2d;
  font-size: 1.4rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.info-box ul {
  list-style: none;
  padding: 0;
}

.info-box li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  color: #666;
  position: relative;
  padding-left: 25px;
}

.info-box li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #e18b2d;
  font-weight: bold;
}

.info-box li:last-child {
  border-bottom: none;
}

.contact-box p {
  color: #666;
  margin-bottom: 25px;
  line-height: 1.6;
}

.contact-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.contact-buttons .btn {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 140px;
  justify-content: center;
}

/* Estilos para página de Contato */
.contato {
  padding: 80px 0;
  background: white;
}

.contato-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.contato-info h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 20px;
  font-weight: 700;
}

.contato-info > p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 40px;
  line-height: 1.8;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: #f8f9fa;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.contact-method:hover {
  background: #e18b2d;
  color: white;
  transform: translateY(-2px);
}

.contact-method:hover .method-info h3,
.contact-method:hover .method-info p {
  color: white;
}

.method-icon {
  font-size: 2rem;
  width: 60px;
  height: 60px;
  background: #e18b2d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-method:hover .method-icon {
  background: white;
}

.method-info h3 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 5px;
  font-weight: 600;
}

.method-info p {
  color: #666;
  margin-bottom: 15px;
  font-size: 1rem;
}

.unidades-contato h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 40px;
  font-weight: 700;
}

.unidade-contato {
  background: #f8f9fa;
  padding: 40px;
  border-radius: 15px;
  margin-bottom: 30px;
}

.unidade-contato h3 {
  color: #e18b2d;
  font-size: 1.4rem;
  margin-bottom: 25px;
  font-weight: 600;
}

.unidade-details {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.detail-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.detail-icon {
  font-size: 1.5rem;
  width: 40px;
  flex-shrink: 0;
  text-align: center;
}

.detail-item strong {
  color: #333;
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
}

.detail-item p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.agendamento-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.info-card {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border-top: 4px solid #e18b2d;
}

.info-card h3 {
  color: #e18b2d;
  font-size: 1.3rem;
  margin-bottom: 20px;
  font-weight: 600;
}

.info-card ol,
.info-card ul {
  padding-left: 20px;
}

.info-card li {
  color: #666;
  margin-bottom: 8px;
  line-height: 1.6;
}

.faq-item {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.faq-item strong {
  color: #333;
  display: block;
  margin-bottom: 8px;
  font-size: 1rem;
}

.faq-item p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

/* Responsive para páginas internas */
@media (max-width: 768px) {
  .page-header {
    padding: 80px 0 40px;
  }

  .page-header h1 {
    font-size: 2.5rem;
  }

  .convenios-grid {
    grid-template-columns: 1fr;
  }

  .convenios-info {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .contact-buttons {
    flex-direction: column;
  }

  .contact-buttons .btn {
    flex: none;
  }

  .contato-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-method {
    flex-direction: column;
    text-align: center;
  }

  .agendamento-info {
    grid-template-columns: 1fr;
  }

  .info-box,
  .contact-box,
  .info-card {
    padding: 30px 20px;
  }

  .unidade-contato {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .page-header h1 {
    font-size: 2rem;
  }

  .convenios-intro h2,
  .contato-info h2,
  .unidades-contato h2 {
    font-size: 2rem;
  }

  .convenio-card {
    padding: 25px 20px;
  }

  .contact-method {
    padding: 20px;
  }

  .method-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}

/* Estilos para página de Ouvidoria */
.ouvidoria {
  padding: 80px 0;
  background: white;
}

.ouvidoria-intro {
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.ouvidoria-intro h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 20px;
  font-weight: 700;
}

.ouvidoria-intro p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 15px;
}

.ouvidoria-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.ouvidoria-form-section h3 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 30px;
  font-weight: 600;
}

.ouvidoria-form {
  background: #f8f9fa;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 25px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #e18b2d;
  box-shadow: 0 0 0 3px rgba(225, 139, 45, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.95rem;
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin: 0;
}

.checkbox-label a {
  color: #e18b2d;
  text-decoration: none;
}

.checkbox-label a:hover {
  text-decoration: underline;
}

.ouvidoria-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.step-number {
  background: #e18b2d;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.step-content h4 {
  color: #333;
  margin-bottom: 5px;
  font-size: 1.1rem;
  font-weight: 600;
}

.step-content p {
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.manifestacao-tipo {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.manifestacao-tipo:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.manifestacao-tipo h4 {
  color: #333;
  margin-bottom: 5px;
  font-size: 1rem;
  font-weight: 600;
}

.manifestacao-tipo p {
  color: #666;
  line-height: 1.5;
  margin: 0;
  font-size: 0.9rem;
}

.info-card ul {
  list-style: none;
  padding: 0;
}

.info-card li {
  color: #666;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.contato-ouvidoria .contato-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
}

.contato-ouvidoria .icon {
  font-size: 1.2rem;
  width: 30px;
  flex-shrink: 0;
}

.contato-ouvidoria strong {
  color: #333;
  display: block;
  margin-bottom: 3px;
  font-size: 0.95rem;
}

.contato-ouvidoria p {
  color: #666;
  margin: 0;
  font-size: 0.9rem;
}

/* Atualizar navegação para incluir Ouvidoria */
.nav-menu a[href="ouvidoria.html"],
.nav-menu a[href="index.html#ouvidoria"] {
  color: #666;
}

.nav-menu a[href="ouvidoria.html"]:hover,
.nav-menu a[href="index.html#ouvidoria"]:hover {
  color: #e18b2d;
}

/* Responsive para página de Ouvidoria */
@media (max-width: 768px) {
  .ouvidoria-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .ouvidoria-form {
    padding: 30px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .ouvidoria-intro h2 {
    font-size: 2rem;
  }

  .ouvidoria-form-section h3 {
    font-size: 1.5rem;
  }

  .step {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .step-number {
    align-self: center;
  }
}

@media (max-width: 480px) {
  .ouvidoria {
    padding: 60px 0;
  }

  .ouvidoria-intro {
    margin-bottom: 40px;
  }

  .ouvidoria-intro h2 {
    font-size: 1.8rem;
  }

  .ouvidoria-form {
    padding: 25px 15px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 10px 12px;
  }

  .info-card {
    padding: 25px 20px;
  }
}

/* Animações para formulário */
.form-group input:valid,
.form-group select:valid,
.form-group textarea:valid {
  border-color: #28a745;
}

.form-group input:invalid:not(:placeholder-shown),
.form-group select:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) {
  border-color: #dc3545;
}

/* Estilo para campos obrigatórios */
.form-group label::after {
  content: "";
}

.form-group label:has(+ input[required])::after,
.form-group label:has(+ select[required])::after,
.form-group label:has(+ textarea[required])::after {
  content: " *";
  color: #dc3545;
}

/* Melhorias de acessibilidade */
.ouvidoria-form input:focus,
.ouvidoria-form select:focus,
.ouvidoria-form textarea:focus {
  outline: 2px solid #e18b2d;
  outline-offset: 2px;
}

.checkbox-label:focus-within {
  outline: 2px solid #e18b2d;
  outline-offset: 2px;
  border-radius: 4px;
}
