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

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #000000;
  background-color: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

ul,
ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3rem;
}
@media (min-width: 768px) {
  h1 {
    font-size: 4.5rem;
  }
}

h2 {
  font-size: 2.25rem;
}
@media (min-width: 768px) {
  h2 {
    font-size: 3rem;
  }
}

h3 {
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  h3 {
    font-size: 1.875rem;
  }
}

h4 {
  font-size: 1.25rem;
}
@media (min-width: 768px) {
  h4 {
    font-size: 1.5rem;
  }
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

a {
  transition: color 300ms ease-in-out;
}
a:hover {
  color: #1F4FD8;
}

strong {
  font-weight: 600;
}

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

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 500;
  text-align: center;
  border-radius: 0.75rem;
  transition: all 300ms ease-in-out;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transform: translateY(0);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.btn:focus-visible {
  outline: 2px solid #1F4FD8;
  outline-offset: 2px;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.btn:active {
  transform: translateY(0);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.btn.btn-primary {
  background-color: #1F4FD8;
  color: #FFFFFF;
}
.btn.btn-primary:hover {
  background-color: #1845b8;
  transform: translateY(-2px) scale(1.02);
}
.btn.btn-secondary {
  background-color: #FFFFFF;
  color: #000000;
}
.btn.btn-secondary:hover {
  background-color: #F5F5F5;
  transform: translateY(-2px) scale(1.02);
}
.btn.btn-dark {
  background-color: #000000;
  color: #FFFFFF;
}
.btn.btn-dark:hover {
  background-color: black;
  transform: translateY(-2px) scale(1.02);
}
.btn.btn-full {
  width: 100%;
}

.site-header {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  z-index: 1030;
}
.site-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.site-header .site-branding .logo-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 300ms ease-in-out;
}
.site-header .site-branding .logo-link:hover {
  transform: scale(1.05);
}
.site-header .site-branding .logo-img {
  height: auto;
  width: auto;
  max-width: 100%;
  transition: transform 300ms ease-in-out;
}
@media (min-width: 768px) {
  .site-header .site-branding .logo-img {
    max-width: 300px;
  }
}
.site-header .site-branding .logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000000;
  transition: color 300ms ease-in-out;
}
.site-header .main-navigation {
  display: none;
}
@media (min-width: 768px) {
  .site-header .main-navigation {
    display: block;
  }
}
.site-header .main-navigation .nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.site-header .main-navigation .nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: #000000;
  position: relative;
  transition: all 300ms ease-in-out;
}
.site-header .main-navigation .nav-link:hover {
  color: #1F4FD8;
  transform: translateY(-2px);
}
.nav-item.active .site-header .main-navigation .nav-link {
  color: #1F4FD8;
}
.nav-item.active .site-header .main-navigation .nav-link::after {
  content: "";
  position: absolute;
  bottom: -24px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: #1F4FD8;
  animation: slideIn 0.3s ease-in-out;
}
.site-header .header-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.site-header .header-actions .btn {
  display: none;
}
@media (min-width: 768px) {
  .site-header .header-actions .btn {
    display: inline-block;
  }
}
.site-header .header-actions .mobile-menu-toggle {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  display: block;
  padding: 0.5rem;
  position: relative;
  width: 32px;
  height: 32px;
  color: #1F4FD8;
}
@media (min-width: 768px) {
  .site-header .header-actions .mobile-menu-toggle {
    display: none;
  }
}
.site-header .header-actions .mobile-menu-toggle .menu-icon {
  display: block;
  width: 24px;
  height: 2px;
  position: relative;
  background-color: #1F4FD8;
  transition: all 300ms ease-in-out;
}
.site-header .header-actions .mobile-menu-toggle .menu-icon::before, .site-header .header-actions .mobile-menu-toggle .menu-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #1F4FD8;
  transition: all 300ms ease-in-out;
}
.site-header .header-actions .mobile-menu-toggle .menu-icon::before {
  top: -8px;
}
.site-header .header-actions .mobile-menu-toggle .menu-icon::after {
  bottom: -8px;
}
.site-header .header-actions .mobile-menu-toggle:hover .menu-icon {
  background-color: #1845b8;
}
.site-header .header-actions .mobile-menu-toggle:hover .menu-icon::before, .site-header .header-actions .mobile-menu-toggle:hover .menu-icon::after {
  background-color: #1845b8;
}
.site-header .mobile-menu {
  display: none;
  padding: 1rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.site-header .mobile-menu.active {
  display: block;
}
@media (min-width: 768px) {
  .site-header .mobile-menu {
    display: none !important;
  }
}
.site-header .mobile-menu .mobile-nav-link {
  display: block;
  padding: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #000000;
  border-radius: 0.75rem;
  transition: all 300ms ease-in-out;
}
.site-header .mobile-menu .mobile-nav-link:hover {
  background-color: #F5F5F5;
  color: #1F4FD8;
  transform: translateX(8px);
}
.site-header .mobile-menu .mobile-contact-btn {
  margin-top: 1rem;
  width: 100%;
}

@keyframes slideIn {
  from {
    width: 0;
    opacity: 0;
  }
  to {
    width: 100%;
    opacity: 1;
  }
}
.site-footer {
  background-color: #000000;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  padding-top: 5rem;
  padding-bottom: 2rem;
}
.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .site-footer .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.site-footer .footer-column .footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.site-footer .footer-column .footer-logo .footer-logo-img {
  height: auto;
  max-width: 300px;
  width: auto;
  filter: brightness(0) invert(1);
}
.site-footer .footer-column .footer-tagline {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  margin-bottom: 1.5rem;
}
.site-footer .footer-column .footer-description {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  line-height: 1.6;
}
.site-footer .footer-column .footer-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.site-footer .footer-column .footer-menu li {
  margin-bottom: 1rem;
}
.site-footer .footer-column .footer-menu li a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}
.site-footer .footer-column .footer-menu li a:hover {
  color: #FFFFFF;
}
.site-footer .footer-column .footer-contact .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.site-footer .footer-column .footer-contact .contact-item .icon {
  width: 20px;
  height: 20px;
  color: #1F4FD8;
  flex-shrink: 0;
  margin-top: 2px;
}
.site-footer .footer-column .footer-contact .contact-item a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}
.site-footer .footer-column .footer-contact .contact-item a:hover {
  color: #FFFFFF;
}
.site-footer .footer-column .footer-contact .contact-item div {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}
.site-footer .footer-newsletter-prr {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .site-footer .footer-newsletter-prr {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}
.site-footer .footer-newsletter {
  flex: 1;
  max-width: 32rem;
  width: 100%;
}
@media (min-width: 768px) {
  .site-footer .footer-newsletter {
    max-width: none;
  }
}
.site-footer .footer-newsletter h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-align: left;
}
.site-footer .footer-newsletter .newsletter-form,
.site-footer .footer-newsletter .newsletter-form-wrapper {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  max-width: 100%;
}
.site-footer .footer-newsletter .newsletter-form div.tnp-subscription, .site-footer .footer-newsletter .newsletter-form form.tnp-subscription, .site-footer .footer-newsletter .newsletter-form form.tnp-profile,
.site-footer .footer-newsletter .newsletter-form-wrapper div.tnp-subscription,
.site-footer .footer-newsletter .newsletter-form-wrapper form.tnp-subscription,
.site-footer .footer-newsletter .newsletter-form-wrapper form.tnp-profile {
  margin: 1rem 0;
}
.site-footer .footer-newsletter .newsletter-form input,
.site-footer .footer-newsletter .newsletter-form-wrapper input {
  flex: 1;
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.75rem;
  color: #FFFFFF;
}
.site-footer .footer-newsletter .newsletter-form input::placeholder,
.site-footer .footer-newsletter .newsletter-form-wrapper input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.site-footer .footer-newsletter .newsletter-form input:focus,
.site-footer .footer-newsletter .newsletter-form-wrapper input:focus {
  outline: none;
  border-color: #1F4FD8;
}
.site-footer .footer-newsletter .newsletter-form form,
.site-footer .footer-newsletter .newsletter-form-wrapper form {
  display: flex;
  gap: 1rem;
  width: 100%;
}
.site-footer .footer-newsletter .newsletter-form form label,
.site-footer .footer-newsletter .newsletter-form-wrapper form label {
  display: none !important;
}
.site-footer .footer-newsletter .newsletter-form form input[type=email],
.site-footer .footer-newsletter .newsletter-form form input[type=text],
.site-footer .footer-newsletter .newsletter-form-wrapper form input[type=email],
.site-footer .footer-newsletter .newsletter-form-wrapper form input[type=text] {
  flex: 1;
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.75rem;
  color: #FFFFFF;
}
.site-footer .footer-newsletter .newsletter-form form input[type=email]::placeholder,
.site-footer .footer-newsletter .newsletter-form form input[type=text]::placeholder,
.site-footer .footer-newsletter .newsletter-form-wrapper form input[type=email]::placeholder,
.site-footer .footer-newsletter .newsletter-form-wrapper form input[type=text]::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.site-footer .footer-newsletter .newsletter-form form input[type=email]:focus,
.site-footer .footer-newsletter .newsletter-form form input[type=text]:focus,
.site-footer .footer-newsletter .newsletter-form-wrapper form input[type=email]:focus,
.site-footer .footer-newsletter .newsletter-form-wrapper form input[type=text]:focus {
  outline: none;
  border-color: #1F4FD8;
}
.site-footer .footer-newsletter .newsletter-form form button,
.site-footer .footer-newsletter .newsletter-form form input[type=submit],
.site-footer .footer-newsletter .newsletter-form form .btn,
.site-footer .footer-newsletter .newsletter-form-wrapper form button,
.site-footer .footer-newsletter .newsletter-form-wrapper form input[type=submit],
.site-footer .footer-newsletter .newsletter-form-wrapper form .btn {
  white-space: nowrap;
}
.site-footer .footer-newsletter .newsletter-privacy {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 1rem;
}
.site-footer .footer-newsletter .newsletter-privacy a {
  color: #1F4FD8;
}
.site-footer .footer-prr {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .site-footer .footer-prr {
    justify-content: flex-end;
  }
}
.site-footer .footer-prr .prr-logo {
  padding: 1rem 2rem;
  border-radius: 0.75rem;
}
.site-footer .footer-prr .prr-logo .prr-logo-img {
  height: auto;
  max-height: 60px;
  width: auto;
  display: block;
}
.site-footer .footer-prr .prr-logo .prr-text {
  color: #003366;
  font-weight: 700;
  font-size: 0.875rem;
}
.site-footer .footer-prr .prr-logo .prr-text .prr-subtitle {
  font-size: 0.75rem;
}
.site-footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {
  .site-footer .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.site-footer .footer-bottom .copyright {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}
.site-footer .footer-bottom .social-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.site-footer .footer-bottom .social-links a {
  width: 56px;
  height: 56px;
  background-color: white;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  transition: all 300ms ease-in-out;
}
.site-footer .footer-bottom .social-links a:hover {
  background-color: #1845b8;
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.site-footer .footer-bottom .social-links a .social-icon {
  width: 24px;
  height: 24px;
  transition: transform 300ms ease-in-out;
}
.site-footer .footer-bottom .social-links a .social-icon-img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  transition: transform 300ms ease-in-out;
}
.site-footer .footer-bottom .social-links a:hover .social-icon, .site-footer .footer-bottom .social-links a:hover .social-icon-img {
  transform: scale(1.1) rotate(5deg);
}
.site-footer .footer-bottom .footer-links {
  display: flex;
  gap: 2rem;
}
.site-footer .footer-bottom .footer-links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  transition: all 300ms ease-in-out;
}
.site-footer .footer-bottom .footer-links a:hover {
  color: #FFFFFF;
  transform: translateY(-2px);
  text-decoration: underline;
}

.hero-section {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media (min-width: 768px) {
  .hero-section {
    min-height: 90vh;
  }
}
.hero-section .hero-background {
  position: absolute;
  inset: 0;
}
.hero-section .hero-background .hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: zoomIn 20s ease-in-out infinite alternate;
}
.hero-section .hero-background .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 100%);
}
@keyframes zoomIn {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
.hero-section .hero-content {
  position: relative;
  z-index: 10;
  color: #FFFFFF;
  text-align: center;
  padding: 2rem 1rem;
  width: 100%;
}
@media (min-width: 768px) {
  .hero-section .hero-content {
    text-align: left;
    padding: 0;
  }
}
.hero-section .hero-content .hero-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}
@media (min-width: 640px) {
  .hero-section .hero-content .hero-title {
    font-size: 2.25rem;
  }
}
@media (min-width: 768px) {
  .hero-section .hero-content .hero-title {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
  }
}
.hero-section .hero-content .hero-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
@media (min-width: 640px) {
  .hero-section .hero-content .hero-subtitle {
    font-size: 1.125rem;
  }
}
@media (min-width: 768px) {
  .hero-section .hero-content .hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
}
.hero-section .hero-content .hero-ctas {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  width: 100%;
}
.hero-section .hero-content .hero-ctas .btn {
  width: 100%;
  font-size: 0.875rem;
  padding: 1rem 1.5rem;
}
@media (min-width: 640px) {
  .hero-section .hero-content .hero-ctas .btn {
    width: auto;
    font-size: 1rem;
  }
}
@media (min-width: 640px) {
  .hero-section .hero-content .hero-ctas {
    flex-direction: row;
    gap: 1rem;
    justify-content: center;
  }
}
@media (min-width: 768px) {
  .hero-section .hero-content .hero-ctas {
    justify-content: flex-start;
    margin-bottom: 2rem;
  }
}
.hero-section .hero-content .hero-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: #FFFFFF;
  justify-content: center;
  font-size: 0.875rem;
}
@media (min-width: 640px) {
  .hero-section .hero-content .hero-info {
    flex-direction: row;
    gap: 2rem;
    font-size: 1rem;
  }
}
@media (min-width: 768px) {
  .hero-section .hero-content .hero-info {
    justify-content: flex-start;
    gap: 3rem;
  }
}
.hero-section .hero-content .hero-info .info-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
@media (min-width: 768px) {
  .hero-section .hero-content .hero-info .info-item {
    justify-content: flex-start;
  }
}
.hero-section .hero-content .hero-info .info-item .info-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .hero-section .hero-content .hero-info .info-item .info-icon {
    width: 20px;
    height: 20px;
  }
}
.hero-section .hero-content .hero-info .info-item span {
  line-height: 1.4;
}
.hero-section .scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 40px;
  border: 2px solid #FFFFFF;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
}
.hero-section .scroll-indicator::after {
  content: "";
  width: 6px;
  height: 6px;
  background-color: #FFFFFF;
  border-radius: 9999px;
  animation: scroll-bounce 1.5s infinite;
}

@keyframes scroll-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(12px);
  }
}
.categories-section {
  padding: 80px 0;
}

.page-hero {
  position: relative;
  padding: 6rem 0;
  min-height: 400px;
  display: flex;
  align-items: center;
  background-color: #F5F5F5;
  text-align: center;
  overflow: hidden;
}
@media (min-width: 768px) {
  .page-hero {
    min-height: 500px;
    padding: 8rem 0;
  }
}
.page-hero .page-hero-background {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}
.page-hero .page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}
.page-hero .container {
  position: relative;
  z-index: 3;
}
.page-hero h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #000000;
}
@media (min-width: 768px) {
  .page-hero h1 {
    font-size: 3.75rem;
  }
}
.page-hero p {
  font-size: 1.25rem;
  color: #8E8E8E;
  max-width: 32rem;
  margin: 0 auto;
}
.page-hero:has(.page-hero-background) h1 {
  color: #FFFFFF;
}
.page-hero:has(.page-hero-background) p {
  color: rgba(255, 255, 255, 0.9);
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}
.section-header h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .section-header h2 {
    font-size: 3rem;
  }
}
.section-header p {
  font-size: 1.25rem;
  color: #8E8E8E;
  max-width: 48rem;
  margin: 0 auto;
}

.section-footer {
  text-align: center;
  margin-top: 4rem;
}

.brands-section {
  padding: 5rem 0;
  background-color: #F5F5F5;
}
.brands-section .brands-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: center;
}
@media (min-width: 768px) {
  .brands-section .brands-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}
.brands-section .brands-grid .brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  transition: transform 300ms ease-in-out;
}
.brands-section .brands-grid .brand-item:hover {
  transform: scale(1.1);
}
.brands-section .brands-grid .brand-item:hover .brand-image {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}
.brands-section .brands-grid .brand-item .brand-image {
  max-width: 100%;
  height: auto;
  max-height: 80px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 300ms ease-in-out;
}
.brands-section .brands-grid .brand-item:not(:has(.brand-image)) {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000000;
}

.services-section {
  padding: 5rem 0;
  background-color: #F5F5F5;
}
.services-section .services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .services-section .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .services-section .services-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
.services-section .services-grid .service-item {
  text-align: center;
  transition: transform 300ms ease-in-out;
  padding: 1rem;
  border-radius: 0.75rem;
}
.services-section .services-grid .service-item:hover {
  transform: translateY(-8px);
}
.services-section .services-grid .service-item:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  background-color: #1F4FD8;
}
.services-section .services-grid .service-item:hover .service-icon svg {
  color: #FFFFFF;
  transform: scale(1.1);
}
.services-section .services-grid .service-item:hover h3 {
  color: #1F4FD8;
  transform: scale(1.05);
}
.services-section .services-grid .service-item .service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem;
  background-color: #FFFFFF;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 300ms ease-in-out;
}
.services-section .services-grid .service-item .service-icon svg {
  color: #1F4FD8;
  transition: all 300ms ease-in-out;
}
.services-section .services-grid .service-item h3 {
  font-size: 1.125rem;
  font-weight: 600;
  transition: all 300ms ease-in-out;
}

.cta-section {
  padding: 5rem 0;
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
}
.cta-section h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #FFFFFF;
}
@media (min-width: 768px) {
  .cta-section h2 {
    font-size: 3rem;
  }
}
.cta-section p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}
.cta-section .cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}
@media (min-width: 640px) {
  .cta-section .cta-buttons {
    flex-direction: row;
  }
}

.site-main {
  min-height: calc(100vh - 80px);
}

.page-template-default .site-main {
  padding: 80px 0;
}

.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  height: 400px;
  cursor: pointer;
  transition: transform 300ms ease-in-out, box-shadow 300ms ease-in-out;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.category-card .category-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease-in-out;
}
.category-card .category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
  transition: opacity 300ms ease-in-out;
}
.category-card .category-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  color: #FFFFFF;
  transform: translateY(0);
  transition: transform 300ms ease-in-out;
}
.category-card .category-content .category-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  color: #1F4FD8;
  transition: transform 300ms ease-in-out;
}
.category-card .category-content .category-icon svg {
  width: 100%;
  height: 100%;
}
.category-card .category-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #FFFFFF;
  transition: transform 300ms ease-in-out;
}
.category-card .category-content p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  transition: opacity 300ms ease-in-out;
}
.category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.category-card:hover .category-image {
  transform: scale(1.15);
}
.category-card:hover .category-overlay {
  opacity: 0.9;
}
.category-card:hover .category-content {
  transform: translateY(-4px);
}
.category-card:hover .category-content .category-icon {
  transform: scale(1.1) rotate(5deg);
}
.category-card:hover .category-content h3 {
  transform: translateX(4px);
}
.category-card:hover .category-content p {
  opacity: 1;
}

.categories-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .categories-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.news-card {
  background-color: #FFFFFF;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 300ms ease-in-out;
  transform: translateY(0);
}
.news-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: translateY(-6px);
}
.news-card:hover .news-image {
  transform: scale(1.1);
}
.news-card:hover .news-content h3 {
  color: #1F4FD8;
  transform: translateX(4px);
}
.news-card:hover .news-content .news-link {
  gap: 1rem;
}
.news-card:hover .news-content .news-link .arrow-icon {
  transform: translateX(4px);
}
.news-card .news-image {
  width: 100%;
  height: 192px;
  object-fit: cover;
  transition: transform 500ms ease-in-out;
}
.news-card .news-content {
  padding: 1.5rem;
}
.news-card .news-content .news-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}
.news-card .news-content .news-meta .news-category {
  font-size: 0.75rem;
  font-weight: 600;
  color: #1F4FD8;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: transform 300ms ease-in-out;
}
.news-card .news-content .news-meta .news-category .meta-icon {
  width: 14px;
  height: 14px;
  transition: transform 300ms ease-in-out;
}
.news-card .news-content .news-meta .news-date {
  font-size: 0.75rem;
  color: #8E8E8E;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.news-card .news-content .news-meta .news-date .meta-icon {
  width: 14px;
  height: 14px;
}
.news-card .news-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  transition: all 300ms ease-in-out;
}
.news-card .news-content .news-link {
  color: #1F4FD8;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 300ms ease-in-out;
}
.news-card .news-content .news-link .arrow-icon {
  width: 16px;
  height: 16px;
  transition: transform 300ms ease-in-out;
}

.news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .news-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.value-card {
  background-color: #FFFFFF;
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: all 300ms ease-in-out;
  transform: translateY(0);
}
.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}
.value-card:hover .value-icon {
  transform: scale(1.1) rotate(5deg);
  background-color: #1845b8;
}
.value-card:hover h3 {
  color: #1F4FD8;
  transform: scale(1.05);
}
.value-card .value-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  background-color: #1F4FD8;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 300ms ease-in-out;
}
.value-card .value-icon svg {
  color: #FFFFFF;
  transition: transform 300ms ease-in-out;
}
.value-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  transition: all 300ms ease-in-out;
}
.value-card p {
  color: #8E8E8E;
  transition: color 300ms ease-in-out;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.contact-card {
  background-color: #F5F5F5;
  padding: 2rem;
  border-radius: 1.5rem;
  text-align: center;
  transition: all 300ms ease-in-out;
  transform: translateY(0);
}
.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  background-color: #FFFFFF;
}
.contact-card:hover .contact-icon {
  transform: scale(1.1) rotate(5deg);
  background-color: #1845b8;
}
.contact-card:hover h3 {
  color: #1F4FD8;
}
.contact-card .contact-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  background-color: #1F4FD8;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 300ms ease-in-out;
}
.contact-card .contact-icon .contact-icon {
  width: 32px;
  height: 32px;
  color: #FFFFFF;
}
.contact-card .contact-icon svg {
  fill: white;
  transition: transform 300ms ease-in-out;
}
.contact-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
  transition: color 300ms ease-in-out;
}
.contact-card .contact-link {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1F4FD8;
  transition: all 300ms ease-in-out;
}
.contact-card .contact-link:hover {
  text-decoration: underline;
  transform: scale(1.05);
}
.contact-card .contact-emails {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.contact-card .contact-emails a {
  font-size: 0.875rem;
  color: #8E8E8E;
  transition: all 300ms ease-in-out;
}
.contact-card .contact-emails a:hover {
  color: #1F4FD8;
  text-decoration: underline;
  transform: translateX(4px);
}
.contact-card .contact-address,
.contact-card .contact-hours {
  font-size: 0.875rem;
  color: #8E8E8E;
}

.contacts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 5rem;
}
@media (min-width: 768px) {
  .contacts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .contacts-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.contact-form .form-group,
.newsletter-form .form-group {
  margin-bottom: 1.5rem;
}
.contact-form .form-group label,
.newsletter-form .form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.contact-form .form-group input,
.contact-form .form-group textarea,
.newsletter-form .form-group input,
.newsletter-form .form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.75rem;
  font-size: 1rem;
  transition: border-color 300ms ease-in-out;
}
.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus,
.newsletter-form .form-group input:focus,
.newsletter-form .form-group textarea:focus {
  outline: none;
  border-color: #1F4FD8;
}
.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder,
.newsletter-form .form-group input::placeholder,
.newsletter-form .form-group textarea::placeholder {
  color: #8E8E8E;
}
.contact-form .form-group textarea,
.newsletter-form .form-group textarea {
  resize: none;
}

.wpcf7-form br {
  display: none;
}
.wpcf7-form .form-group {
  margin-bottom: 1.5rem;
}
.wpcf7-form .form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.wpcf7-form .form-group input[type=text],
.wpcf7-form .form-group input[type=email],
.wpcf7-form .form-group input[type=tel],
.wpcf7-form .form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.75rem;
  font-size: 1rem;
  transition: border-color 300ms ease-in-out;
}
.wpcf7-form .form-group input[type=text]:focus,
.wpcf7-form .form-group input[type=email]:focus,
.wpcf7-form .form-group input[type=tel]:focus,
.wpcf7-form .form-group textarea:focus {
  outline: none;
  border-color: #1F4FD8;
}
.wpcf7-form .form-group input[type=text]::placeholder,
.wpcf7-form .form-group input[type=email]::placeholder,
.wpcf7-form .form-group input[type=tel]::placeholder,
.wpcf7-form .form-group textarea::placeholder {
  color: #8E8E8E;
}
.wpcf7-form .form-group textarea {
  resize: none;
}
.wpcf7-form input[type=submit] {
  width: 100%;
}
.wpcf7-form .wpcf7-response-output {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 0.75rem;
}
.wpcf7-form .wpcf7-mail-sent-ok {
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
}
.wpcf7-form .wpcf7-mail-sent-ng,
.wpcf7-form .wpcf7-aborted,
.wpcf7-form .wpcf7-spam,
.wpcf7-form .wpcf7-validation-errors {
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  color: #721c24;
}
.wpcf7-form .wpcf7-not-valid-tip {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}
.wpcf7-form span.wpcf7-not-valid {
  border-color: #dc3545;
}

.contact-form br,
.form-container br {
  display: none;
}

.newsletter-form,
.newsletter-form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 42rem;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .newsletter-form,
  .newsletter-form-wrapper {
    flex-direction: row;
  }
}
.newsletter-form input,
.newsletter-form-wrapper input {
  flex: 1;
}
.newsletter-form form,
.newsletter-form-wrapper form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}
@media (min-width: 640px) {
  .newsletter-form form,
  .newsletter-form-wrapper form {
    flex-direction: row;
  }
}
.newsletter-form form label,
.newsletter-form-wrapper form label {
  display: none !important;
}
.newsletter-form form input[type=email],
.newsletter-form form input[type=text],
.newsletter-form-wrapper form input[type=email],
.newsletter-form-wrapper form input[type=text] {
  flex: 1;
  padding: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.75rem;
  font-size: 1rem;
  transition: border-color 300ms ease-in-out;
}
.newsletter-form form input[type=email]:focus,
.newsletter-form form input[type=text]:focus,
.newsletter-form-wrapper form input[type=email]:focus,
.newsletter-form-wrapper form input[type=text]:focus {
  outline: none;
  border-color: #1F4FD8;
}
.newsletter-form form input[type=email]::placeholder,
.newsletter-form form input[type=text]::placeholder,
.newsletter-form-wrapper form input[type=email]::placeholder,
.newsletter-form-wrapper form input[type=text]::placeholder {
  color: #8E8E8E;
}
.newsletter-form form button,
.newsletter-form form input[type=submit],
.newsletter-form form .btn,
.newsletter-form-wrapper form button,
.newsletter-form-wrapper form input[type=submit],
.newsletter-form-wrapper form .btn {
  white-space: nowrap;
}

.store-section {
  padding: 5rem 0;
}
.store-section .store-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .store-section .store-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.store-section .store-grid .store-content h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .store-section .store-grid .store-content h2 {
    font-size: 3rem;
  }
}
.store-section .store-grid .store-content .store-text {
  font-size: 1.125rem;
  color: #8E8E8E;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.store-section .store-grid .store-content .store-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.store-section .store-grid .store-content .store-details .detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.store-section .store-grid .store-content .store-details .detail-item .detail-icon {
  width: 24px;
  height: 24px;
  color: #1F4FD8;
  flex-shrink: 0;
  margin-top: 4px;
}
.store-section .store-grid .store-content .store-details .detail-item .detail-label {
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.store-section .store-grid .store-content .store-details .detail-item p {
  color: #8E8E8E;
  margin-bottom: 0.25rem;
}
.store-section .store-grid .store-image {
  position: relative;
  height: 500px;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transition: transform 300ms ease-in-out, box-shadow 300ms ease-in-out;
}
.store-section .store-grid .store-image:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.store-section .store-grid .store-image:hover .store-img {
  transform: scale(1.05);
}
.store-section .store-grid .store-image .store-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease-in-out;
}

.news-section {
  padding: 5rem 0;
  background-color: #F5F5F5;
}

.sobre-page .history-section {
  padding: 5rem 0;
}
.sobre-page .history-section .history-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .sobre-page .history-section .history-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.sobre-page .history-section .history-grid .history-content h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.sobre-page .history-section .history-grid .history-content .history-text {
  font-size: 1.125rem;
  color: #8E8E8E;
  line-height: 1.6;
}
.sobre-page .history-section .history-grid .history-content .history-text p {
  margin-bottom: 1rem;
}
.sobre-page .history-section .history-grid .history-image {
  position: relative;
  height: 500px;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.sobre-page .history-section .history-grid .history-image .history-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sobre-page .values-section {
  padding: 5rem 0;
  background-color: #F5F5F5;
}
.sobre-page .store-section {
  padding: 5rem 0;
}
.sobre-page .store-section .store-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .sobre-page .store-section .store-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.sobre-page .store-section .store-grid .store-image {
  position: relative;
  height: 500px;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.sobre-page .store-section .store-grid .store-image .store-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sobre-page .store-section .store-grid .store-content h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.sobre-page .store-section .store-grid .store-content p {
  font-size: 1.125rem;
  color: #8E8E8E;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.sobre-page .store-section .store-grid .store-content .store-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 640px) {
  .sobre-page .store-section .store-grid .store-content .store-buttons {
    flex-direction: row;
  }
}
.sobre-page .differentials-section {
  padding: 5rem 0;
  background-color: #F5F5F5;
}
.sobre-page .differentials-section .differentials-list {
  max-width: 48rem;
  margin: 0 auto;
  list-style: disc;
  padding-left: 2rem;
}
.sobre-page .differentials-section .differentials-list .differential-item {
  font-size: 1.125rem;
  font-weight: 500;
  padding: 0.5rem 0;
  line-height: 1.6;
}
.sobre-page .local-section {
  padding: 5rem 0;
}
.sobre-page .local-section .local-content {
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
}
.sobre-page .local-section .local-content .local-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  color: #1F4FD8;
}
.sobre-page .local-section .local-content h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.sobre-page .local-section .local-content p {
  font-size: 1.25rem;
  color: #8E8E8E;
  line-height: 1.6;
}

.produtos-page .categories-section {
  padding: 5rem 0;
}
.produtos-page .categories-section .category-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}
@media (min-width: 1024px) {
  .produtos-page .categories-section .category-detail {
    grid-template-columns: repeat(2, 1fr);
  }
  .produtos-page .categories-section .category-detail.reverse .category-content {
    order: 2;
  }
  .produtos-page .categories-section .category-detail.reverse .category-image {
    order: 1;
  }
}
.produtos-page .categories-section .category-detail .category-content .category-icon-large {
  width: 64px;
  height: 64px;
  margin-bottom: 1.5rem;
  background-color: #1F4FD8;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 300ms ease-in-out;
}
.produtos-page .categories-section .category-detail .category-content .category-icon-large:hover {
  transform: scale(1.1) rotate(5deg);
  background-color: #1845b8;
}
.produtos-page .categories-section .category-detail .category-content .category-icon-large svg {
  color: #FFFFFF;
  transition: transform 300ms ease-in-out;
}
.produtos-page .categories-section .category-detail .category-content h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.produtos-page .categories-section .category-detail .category-content p {
  font-size: 1.125rem;
  color: #8E8E8E;
  margin-bottom: 1.5rem;
}
.produtos-page .categories-section .category-detail .category-content .category-examples {
  margin-bottom: 2rem;
}
.produtos-page .categories-section .category-detail .category-content .category-examples h3 {
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.125rem;
}
.produtos-page .categories-section .category-detail .category-content .category-examples ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.produtos-page .categories-section .category-detail .category-content .category-examples ul li {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.produtos-page .categories-section .category-detail .category-content .category-examples ul li .example-bullet {
  width: 8px;
  height: 8px;
  background-color: #1F4FD8;
  border-radius: 9999px;
  flex-shrink: 0;
}
.produtos-page .categories-section .category-detail .category-image {
  position: relative;
  height: 500px;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transition: transform 300ms ease-in-out, box-shadow 300ms ease-in-out;
}
.produtos-page .categories-section .category-detail .category-image:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.produtos-page .categories-section .category-detail .category-image:hover .category-img {
  transform: scale(1.05);
}
.produtos-page .categories-section .category-detail .category-image .category-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease-in-out;
}
.produtos-page .brands-section {
  padding: 5rem 0;
  background-color: #F5F5F5;
}
.produtos-page .support-section {
  padding: 5rem 0;
}
.produtos-page .support-section .support-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 80rem;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .produtos-page .support-section .support-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .produtos-page .support-section .support-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.produtos-page .support-section .support-grid .support-item {
  background-color: #F5F5F5;
  padding: 1.5rem;
  border-radius: 1rem;
  text-align: center;
  transition: all 300ms ease-in-out;
  transform: translateY(0);
}
.produtos-page .support-section .support-grid .support-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  background-color: #FFFFFF;
}
.produtos-page .support-section .support-grid .support-item:hover .support-bullet {
  transform: scale(1.3);
  background-color: #1845b8;
}
.produtos-page .support-section .support-grid .support-item:hover p {
  color: #1F4FD8;
}
.produtos-page .support-section .support-grid .support-item .support-bullet {
  width: 12px;
  height: 12px;
  background-color: #1F4FD8;
  border-radius: 9999px;
  margin: 0 auto 1rem;
  transition: all 300ms ease-in-out;
}
.produtos-page .support-section .support-grid .support-item p {
  font-weight: 600;
  margin: 0;
  transition: color 300ms ease-in-out;
}

.novidades-page .filters-section {
  padding: 2rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.novidades-page .filters-section .filters-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.novidades-page .filters-section .filters-list .filter-btn {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
  padding: 10px 1.5rem;
  border-radius: 9999px;
  transition: background-color 300ms ease-in-out, color 300ms ease-in-out;
  background-color: #F5F5F5;
  color: #8E8E8E;
  font-size: 0.875rem;
}
.novidades-page .filters-section .filters-list .filter-btn:hover {
  background-color: rgb(232.25, 232.25, 232.25);
}
.novidades-page .filters-section .filters-list .filter-btn.active {
  background-color: #1F4FD8;
  color: #FFFFFF;
}
.novidades-page .articles-section {
  padding: 5rem 0;
}
.novidades-page .articles-section .articles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .novidades-page .articles-section .articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .novidades-page .articles-section .articles-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.novidades-page .articles-section .article-card {
  background-color: #FFFFFF;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: all 300ms ease-in-out;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.novidades-page .articles-section .article-card:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}
.novidades-page .articles-section .article-card:hover .article-image .article-img {
  transform: scale(1.05);
}
.novidades-page .articles-section .article-card:hover .article-link {
  color: #1F4FD8;
}
.novidades-page .articles-section .article-card .article-image {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  background-color: #F5F5F5;
}
.novidades-page .articles-section .article-card .article-image .article-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease-in-out;
}
.novidades-page .articles-section .article-card .article-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.novidades-page .articles-section .article-card .article-content .article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.novidades-page .articles-section .article-card .article-content .article-meta .article-category {
  font-size: 0.75rem;
  font-weight: 600;
  color: #1F4FD8;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.novidades-page .articles-section .article-card .article-content .article-meta .article-category .meta-icon {
  width: 14px;
  height: 14px;
}
.novidades-page .articles-section .article-card .article-content .article-meta .article-date {
  font-size: 0.75rem;
  color: #8E8E8E;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.novidades-page .articles-section .article-card .article-content .article-meta .article-date .meta-icon {
  width: 14px;
  height: 14px;
}
.novidades-page .articles-section .article-card .article-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
  transition: color 300ms ease-in-out;
}
.novidades-page .articles-section .article-card .article-content .article-excerpt {
  font-size: 0.875rem;
  color: #8E8E8E;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.novidades-page .articles-section .article-card .article-content .article-link {
  color: #1F4FD8;
  font-weight: 600;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: all 300ms ease-in-out;
  margin-top: auto;
}
.novidades-page .articles-section .article-card .article-content .article-link .arrow-icon {
  width: 16px;
  height: 16px;
  transition: transform 300ms ease-in-out;
}
.novidades-page .articles-section .article-card .article-content .article-link:hover {
  gap: 0.5rem;
  transform: translateX(4px);
}
.novidades-page .articles-section .article-card .article-content .article-link:hover .arrow-icon {
  transform: translateX(4px);
}
.novidades-page .articles-section .pagination {
  margin-top: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
.novidades-page .articles-section .pagination .page-numbers {
  display: flex;
  gap: 0.25rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.novidades-page .articles-section .pagination .page-numbers li {
  margin: 0;
}
.novidades-page .articles-section .pagination .page-numbers a,
.novidades-page .articles-section .pagination .page-numbers span {
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  text-decoration: none;
  color: #8E8E8E;
  font-size: 0.875rem;
  transition: all 300ms ease-in-out;
}
.novidades-page .articles-section .pagination .page-numbers a:hover,
.novidades-page .articles-section .pagination .page-numbers span:hover {
  background-color: #F5F5F5;
  color: #1F4FD8;
}
.novidades-page .articles-section .pagination .page-numbers a.current,
.novidades-page .articles-section .pagination .page-numbers span.current {
  background-color: #1F4FD8;
  color: #FFFFFF;
}
.novidades-page .newsletter-section {
  padding: 5rem 0;
  background-color: #F5F5F5;
  text-align: center;
}
.novidades-page .newsletter-section h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.novidades-page .newsletter-section p {
  font-size: 1.125rem;
  color: #8E8E8E;
  margin-bottom: 2rem;
}
.novidades-page .newsletter-section .newsletter-form-wrapper form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 42rem;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .novidades-page .newsletter-section .newsletter-form-wrapper form {
    flex-direction: row;
  }
}
.novidades-page .newsletter-section .newsletter-form-wrapper form label {
  display: none !important;
}
.novidades-page .newsletter-section .newsletter-form-wrapper form input[type=email],
.novidades-page .newsletter-section .newsletter-form-wrapper form input[type=text] {
  flex: 1;
  padding: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.75rem;
  font-size: 1rem;
  transition: border-color 300ms ease-in-out;
}
.novidades-page .newsletter-section .newsletter-form-wrapper form input[type=email]:focus,
.novidades-page .newsletter-section .newsletter-form-wrapper form input[type=text]:focus {
  outline: none;
  border-color: #1F4FD8;
}
.novidades-page .newsletter-section .newsletter-form-wrapper form input[type=email]::placeholder,
.novidades-page .newsletter-section .newsletter-form-wrapper form input[type=text]::placeholder {
  color: #8E8E8E;
}
.novidades-page .newsletter-section .newsletter-form-wrapper form button,
.novidades-page .newsletter-section .newsletter-form-wrapper form input[type=submit],
.novidades-page .newsletter-section .newsletter-form-wrapper form .btn {
  white-space: nowrap;
}
.novidades-page .newsletter-section .newsletter-privacy {
  font-size: 0.875rem;
  color: #8E8E8E;
  margin-top: 1rem;
}
.novidades-page .newsletter-section .newsletter-privacy a {
  color: #1F4FD8;
}

.contactos-page .contacts-section {
  padding: 5rem 0;
}
.contactos-page .contacts-section .contacts-note {
  text-align: center;
  margin-top: 5rem;
}
.contactos-page .contacts-section .contacts-note p {
  font-size: 1.125rem;
  color: #8E8E8E;
  max-width: 32rem;
  margin: 0 auto;
}
.contactos-page .map-form-section {
  padding: 5rem 0;
  background-color: #F5F5F5;
}
.contactos-page .map-form-section .map-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}
@media (min-width: 1024px) {
  .contactos-page .map-form-section .map-form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.contactos-page .map-form-section .map-form-grid .map-container {
  height: 500px;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transition: transform 300ms ease-in-out, box-shadow 300ms ease-in-out;
}
.contactos-page .map-form-section .map-form-grid .map-container:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.contactos-page .map-form-section .map-form-grid .map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.contactos-page .map-form-section .map-form-grid .form-container {
  background-color: #FFFFFF;
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  transition: transform 300ms ease-in-out, box-shadow 300ms ease-in-out;
}
.contactos-page .map-form-section .map-form-grid .form-container:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}
.contactos-page .map-form-section .map-form-grid .form-container h2 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.contactos-page .map-form-section .map-form-grid .form-container p {
  color: #8E8E8E;
  margin-bottom: 2rem;
}
.contactos-page .social-section {
  padding: 5rem 0;
  text-align: center;
}
.contactos-page .social-section h2 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.contactos-page .social-section p {
  font-size: 1.125rem;
  color: #8E8E8E;
  margin-bottom: 2rem;
}
.contactos-page .social-section .social-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
}
.contactos-page .social-section .social-links .social-link {
  width: 56px;
  height: 56px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  transition: all 300ms ease-in-out;
}
.contactos-page .social-section .social-links .social-link:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}
.contactos-page .social-section .social-links .social-link .social-icon-img {
  transition: transform 300ms ease-in-out;
}
.contactos-page .social-section .social-links .social-link:hover .social-icon-img {
  transform: scale(1.1) rotate(5deg);
}

.blog-single-page .article-hero {
  padding: 5rem 0;
  text-align: center;
  background-color: #F5F5F5;
}
.blog-single-page .article-hero .article-header {
  max-width: 48rem;
  margin: 0 auto;
}
.blog-single-page .article-hero .article-header .article-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .blog-single-page .article-hero .article-header .article-title {
    font-size: 3.75rem;
  }
}
.blog-single-page .article-hero .article-header .article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  font-size: 0.875rem;
  color: #8E8E8E;
}
.blog-single-page .article-hero .article-header .article-meta .article-category,
.blog-single-page .article-hero .article-header .article-meta .article-date {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.blog-single-page .article-hero .article-header .article-meta .article-category .meta-icon,
.blog-single-page .article-hero .article-header .article-meta .article-date .meta-icon {
  width: 16px;
  height: 16px;
}
.blog-single-page .article-featured-image {
  padding: 0;
}
.blog-single-page .article-featured-image .container {
  padding: 0;
}
.blog-single-page .article-featured-image .featured-img {
  width: 100%;
  height: auto;
  display: block;
}
.blog-single-page .article-content-section {
  padding: 5rem 0;
}
.blog-single-page .article-content-section .article-content-wrapper {
  max-width: 48rem;
  margin: 0 auto;
}
.blog-single-page .article-content-section .article-content-wrapper .article-content {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #000000;
}
.blog-single-page .article-content-section .article-content-wrapper .article-content h2 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-top: 4rem;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}
.blog-single-page .article-content-section .article-content-wrapper .article-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 3rem;
  margin-bottom: 1rem;
  line-height: 1.4;
}
.blog-single-page .article-content-section .article-content-wrapper .article-content h4 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.blog-single-page .article-content-section .article-content-wrapper .article-content p {
  margin-bottom: 1.5rem;
}
.blog-single-page .article-content-section .article-content-wrapper .article-content ul,
.blog-single-page .article-content-section .article-content-wrapper .article-content ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}
.blog-single-page .article-content-section .article-content-wrapper .article-content ul li,
.blog-single-page .article-content-section .article-content-wrapper .article-content ol li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}
.blog-single-page .article-content-section .article-content-wrapper .article-content img {
  width: 100%;
  height: auto;
  margin: 2rem 0;
  border-radius: 0.75rem;
}
.blog-single-page .article-content-section .article-content-wrapper .article-content blockquote {
  border-left: 4px solid #1F4FD8;
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: #8E8E8E;
}
.blog-single-page .article-content-section .article-content-wrapper .article-content a {
  color: #1F4FD8;
  text-decoration: underline;
}
.blog-single-page .article-content-section .article-content-wrapper .article-content a:hover {
  color: #1845b8;
}
.blog-single-page .article-back-section {
  padding: 4rem 0;
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.blog-single-page .article-back-section .container {
  max-width: 48rem;
  margin: 0 auto;
}
.blog-single-page .article-cta-section {
  padding: 5rem 0;
  background-color: #F5F5F5;
}
.blog-single-page .article-cta-section .article-cta {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}
.blog-single-page .article-cta-section .article-cta h2 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .blog-single-page .article-cta-section .article-cta h2 {
    font-size: 2.25rem;
  }
}
.blog-single-page .article-cta-section .article-cta p {
  font-size: 1.125rem;
  color: #8E8E8E;
  margin-bottom: 2rem;
}
.blog-single-page .article-cta-section .article-cta .article-cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}
@media (min-width: 640px) {
  .blog-single-page .article-cta-section .article-cta .article-cta-buttons {
    flex-direction: row;
  }
}

/*# sourceMappingURL=main.css.map */
