:root {
  --primary: #004a99;
  --primary-dark: #003366;
  --accent: #e31d1a;
  --accent-dark: #b91512;
  --bg-light: #f5f7f8;
  --bg-white: #ffffff;
  --bg-dark: #0f1923;
  --bg-dark-surface: #1a2732;
  --text-dark: #1e293b;
  --text-gray: #64748b;
  --text-light: #f1f5f9;
  --border-color: #e2e8f0;
  --success: #22c55e;
  --font-main: "Inter", sans-serif;
  --container-width: 1280px;
}

/* Material Icons e Symbols - Fix */
.material-icons,
.material-icons-round,
.material-icons-outlined,
.material-icons-sharp,
.material-symbols-outlined {
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  -moz-osx-font-smoothing: grayscale;
}

.material-icons {
  font-family: 'Material Icons' !important;
  font-feature-settings: 'liga';
}

.material-icons-round {
  font-family: 'Material Icons Round' !important;
  font-feature-settings: 'liga';
}

.material-icons-outlined {
  font-family: 'Material Icons Outlined' !important;
  font-feature-settings: 'liga';
}

.material-icons-sharp {
  font-family: 'Material Icons Sharp' !important;
  font-feature-settings: 'liga';
}

.material-symbols-outlined {
  font-family: 'Material Symbols Outlined' !important;
}

/* Botão Flutuante WhatsApp */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  z-index: 1000;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-float:hover {
  background-color: #20bd5a;
  transform: scale(1.1) translateY(-5px);
  color: white;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: currentColor;
}

@media (max-width: 767px) {
  .whatsapp-float {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
  }
  
  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 578px) {
  .container { padding: 0 1.5rem; }
}

@media (min-width: 992px) {
  .container { padding: 0 2rem; }
}

@media (min-width: 1200px) {
  .container { max-width: 1280px; }
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--primary);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-dark);
}

.btn-accent {
  background-color: var(--accent);
  color: white;
}

.btn-accent:hover {
  background-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-white {
  background-color: white;
  color: var(--primary);
}

.btn-white:hover {
  background-color: #f8fafc;
}

.top-bar {
  background-color: #0f172a;
  color: #cbd5e1;
  font-size: 0.75rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid #1e293b;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-info {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  .top-bar-info {
    justify-content: center;
    width: 100%;
    margin-bottom: 0.5rem;
  }
  .top-bar .container {
    flex-direction: column;
  }
}

@media (max-width: 320px) {
  .top-bar-info { gap: 0.75rem; }
  .top-bar-item { font-size: 0.7rem; }
}

.top-bar-item {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.top-bar-item a {
  color: inherit;
  text-decoration: none;
}

.top-bar-item a:hover {
  color: white;
}

.top-bar-item:hover {
  color: white;
}

.top-nav {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.top-nav a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: inherit;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.6rem;
  border-radius: 9999px;
}

.top-nav a:hover {
  background-color: rgba(255, 255, 255, 0.08);
  color: white;
}

.top-nav a:not(:first-child) {
  border-left: 1px solid rgba(30, 41, 59, 0.9);
  padding-left: 0.75rem;
}

.top-nav-icon {
  font-size: 1rem;
  color: #cbd5e1;
}

.top-nav-text {
  white-space: nowrap;
}

.top-bar-item .material-icons {
  font-size: 0.875rem;
  margin-right: 0.25rem;
}

.main-header {
  background-color: var(--bg-white);
  padding: 0.75rem 0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 50;
}

.main-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .main-header .container {
    gap: 1rem;
    flex-direction: column;
    text-align: center;
  }
  .search-area {
    order: 3;
    max-width: 100%;
    width: 100%;
  }
  .header-actions {
    width: 100%;
    justify-content: center;
    gap: 2rem;
  }
}

@media (max-width: 320px) {
  .header-actions { gap: 1rem; }
  .action-label { font-size: 0.65rem; }
}

.logo-area {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.main-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.logo-text h1 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.025em;
}

.logo-text span {
  font-size: 0.75rem;
  color: var(--text-gray);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.search-area {
  flex: 1;
  max-width: 600px;
  position: relative;
}

.search-input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 3rem;
  border-radius: 9999px;
  border: 1px solid #cbd5e1;
  background-color: #f8fafc;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s;
}

.search-input:focus {
  background-color: white;
  border-color: var(--primary);
}

.search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
}

.header-actions {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.action-btn {
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  color: var(--text-gray);
  transition: color 0.2s;
}

.action-btn:hover {
  color: var(--primary);
}

.action-icon-wrapper {
  position: relative;
}

.badge-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background-color: var(--accent);
  color: white;
  font-size: 0.625rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.action-label {
  font-size: 0.75rem;
  font-weight: 500;
  margin-top: 0.25rem;
}

.main-nav {
  background-color: var(--primary);
  color: white;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 40;
}

.mobile-nav-header {
  display: none;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
}

.mobile-menu-title {
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: white;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: white;
  padding: 0.5rem;
  transition: opacity 0.2s;
  position: relative;
  z-index: 110;
}

.mobile-menu-toggle:hover {
  opacity: 0.8;
}

.mobile-menu-toggle .material-icons {
  font-size: 2rem;
}

.nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  padding: 1rem 1.25rem;
  font-weight: 500;
  transition: background-color 0.2s;
}

.nav-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.nav-item.active .nav-link {
  background-color: rgba(255, 255, 255, 0.1);
  border-bottom: 2px solid var(--accent);
}

@media (max-width: 991px) {
  .mobile-nav-header {
    display: flex;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .main-header .container {
    flex-direction: row;
    justify-content: space-between;
    padding-bottom: 1rem;
  }

  .logo-area { order: 1; }
  .header-actions { order: 2; width: auto; gap: 1.5rem; }
  .search-area { order: 3; width: 100%; margin-top: 0.5rem; }

  .main-nav {
    display: block !important;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 100;
  }

  .main-nav .container {
    padding: 0 1rem;
  }

  .nav-list {
    display: none;
    flex-direction: column;
    padding: 0.5rem 0 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .main-nav.mobile-open .nav-list {
    display: flex;
  }

  .nav-item {
    width: 100%;
    text-align: center;
  }

  .nav-link {
    width: 100%;
    justify-content: center;
    padding: 1.25rem;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav-item:last-child .nav-link {
    border-bottom: none;
  }
  
  .nav-item.active .nav-link {
    border-bottom: none;
    background-color: rgba(255, 255, 255, 0.15);
  }
}

@media (max-width: 320px) {
  .header-actions { gap: 0.75rem; }
  .action-label { display: none; }
  .mobile-menu-toggle .material-icons { font-size: 1.75rem; }
  .mobile-menu-title { font-size: 0.8rem; }
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  width: 250px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 0.5rem 0.5rem;
  display: none;
  border-top: 1px solid #e2e8f0;
  overflow: hidden;
  z-index: 50;
}

.nav-item:hover .dropdown-menu {
  display: block;
}

.dropdown-link {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--text-dark);
  font-weight: 500;
}

.dropdown-link:hover {
  background-color: #f8fafc;
  color: var(--primary);
}

.nav-promo {
  margin-left: auto;
}

.nav-promo a {
  background-color: var(--accent);
}

.nav-promo a:hover {
  background-color: var(--accent-dark);
}

.main-footer {
  background-color: white;
  border-top: 1px solid var(--border-color);
  padding: 2.5rem 0 1.5rem;
  font-size: 0.875rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  font-size: 1.25rem;
}

.footer-logo-box {
  width: 2rem;
  height: 2rem;
  background-color: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.25rem;
}

.footer-desc {
  color: var(--text-gray);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.footer-logo-img {
  max-height: 48px;
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 2rem;
  height: 2rem;
  background-color: #f1f5f9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #475569;
  transition: all 0.2s;
}

.social-icon i {
  font-size: 1rem;
  line-height: 1;
}

.social-icon:hover {
  background-color: var(--primary);
  color: white;
}

.footer-col h4 {
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--text-gray);
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  color: var(--text-gray);
}

.footer-contact a {
  color: inherit;
  text-decoration: none;
}

.footer-contact a:hover {
  color: var(--primary);
}

.footer-contact .material-icons {
  font-size: 1rem;
  color: var(--primary);
  margin-right: 0.5rem;
  margin-top: 0.125rem;
}

.footer-hours {
  margin-top: 1.5rem;
  background-color: #f8fafc;
  padding: 1rem;
  border-radius: 0.25rem;
  border: 1px solid #e2e8f0;
  text-align: center;
}

.footer-hours p:first-child {
  font-size: 0.75rem;
  color: var(--text-gray);
  font-weight: 500;
}

.footer-hours p:last-child {
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 0.25rem;
  color: var(--text-dark);
}

.sub-footer {
  border-top: 1px solid #f1f5f9;
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  color: #94a3b8;
  font-size: 0.75rem;
  gap: 1rem;
}

@media (min-width: 768px) {
  .sub-footer {
    flex-direction: row;
  }
}

.legal-links {
  display: flex;
  gap: 1rem;
}

.developer-link {
  text-decoration: none;
  color: inherit;
}

.developer-link:hover {
  color: inherit !important;
  text-decoration: none !important;
}

.legal-links a:not(.developer-link):hover {
  color: var(--primary);
}

.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-gray);
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 0.75rem;
  border-radius: 0.25rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--primary);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-submit {
  width: 100%;
  background-color: var(--primary);
  color: white;
  padding: 0.75rem;
  border: none;
  border-radius: 0.25rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s;
}

.form-submit:hover {
  background-color: var(--primary-dark);
}

.action-btn .material-icons {
  font-size: 1.5rem;
}

.nav-link .material-icons.icon-expand {
  font-size: 1rem;
  margin-left: 0.25rem;
}

.social-icon .material-icons {
  font-size: 1rem;
}

.social-icon .material-icons {
  font-size: 1rem;
}


