* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background: #f9fafb;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* HERO */

.hero {
  background: linear-gradient(135deg, #0A1E5E, #132E8A);
  color: white;
  padding: 90px 0;
}

.hero-grid {
  display: flex;
  gap: 50px;
  align-items: center;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

.tag {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 2px;
  color: #F5A623;
  display: inline-block;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 42px;
  font-weight: 900;
  line-height: 1.2;
}

.highlight {
  color: #F5A623;
}

.hero p {
  margin-top: 20px;
  color: #ddd;
  max-width: 500px;
}

.hero ul {
  margin-top: 20px;
  list-style: none;
}

.hero ul li {
  margin-bottom: 10px;
  font-size: 14px;
}

.hero-buttons {
  margin-top: 30px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  padding: 6px 10px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}



.outline {
  border: 2px solid rgba(255,255,255,0.3);
  color: white;
}

.outline:hover {
  border-color: white;
}

.hero-categories {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.category-card {
  background: rgba(255,255,255,0.1);
  padding: 20px;
  border-radius: 16px;
  transition: 0.3s;
  cursor: pointer;
}

.category-card:hover {
  background: rgba(255,255,255,0.2);
}

/* FEATURES */

.features {
  background: white;
  padding: 60px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.feature-card {
  display: flex;
  gap: 15px;
}

.feature-card h3 {
  font-size: 14px;
  color: #0A1E5E;
}

.feature-card p {
  font-size: 12px;
  color: #666;
  margin-top: 4px;
}

/* FEATURED PRODUCTS */

.featured {
  padding: 80px 0;
}

.section-header {
  margin-bottom: 40px;
}

.section-tag {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: bold;
  color: #F5A623;
}

.section-header h2 {
  font-size: 28px;
  color: #0A1E5E;
  margin-top: 5px;
}

.view-all {
  font-weight: bold;
  color: #0A1E5E;
  text-decoration: none;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}


.product-content {
  padding: 20px;
  flex: 1;
}

.product-content h3 {
  font-size: 16px;
  color: #0A1E5E;
  margin: 10px 0;
}

.product-content p {
  font-size: 13px;
  color: #666;
}

.product-buttons {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* CTA */

.cta {
  padding: 60px 0;
  background: white;
}

.cta-box {
  background: linear-gradient(90deg, #0A1E5E, #132E7A);
  border-radius: 20px;
  padding: 40px;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.whatsapp {
  background: #25D366;
  color: white;
}

.outline-light {
  border: 2px solid rgba(255,255,255,0.3);
  color: white;
}


/* FOOTER */

.footer {
  background: #0A1E5E;
  color: white;
  padding: 70px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
}

.footer-logo {
  height: 40px;
  margin-bottom: 15px;
  filter: brightness(0) invert(1);
}

.footer-about p {
  color: #bfc5d4;
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.footer-title {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 2px;
  color: #F5A623;
  margin-bottom: 20px;
}

.footer-links,
.footer-contact {
  list-style: none;
  font-size: 14px;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 10px;
}

.footer-links a,
.footer-contact a {
  color: #bfc5d4;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #F5A623;
}

.footer-bottom {
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  font-size: 12px;
  color: #9ca3af;
}

/* RESPONSIVO */

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* HEADER */

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: white;
}

/* TOPBAR */

.topbar {
  background: #0A1E5E;
  color: white;
  font-size: 12px;
  padding: 8px 0;
}

.topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-phone {
  color: #F5A623;
  text-decoration: none;
  font-weight: bold;
}

/* MAIN HEADER */

.main-header {
  border-bottom: 1px solid #eee;
  background: white;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 20px;
}

.logo img {
  height: 42px;
}

.search-bar {
  flex: 1;
  max-width: 500px;
  background: #f3f4f6;
  padding: 10px 15px;
  border-radius: 12px;
  text-decoration: none;
  color: #888;
  font-size: 14px;
  display: none;
}

.search-bar:hover {
  background: #e5e7eb;
}

/* NAV DESKTOP */

.nav-desktop {
  display: none;
  gap: 10px;
}

.nav-desktop a {
  padding: 8px 12px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: #666;
  border-radius: 8px;
  transition: 0.3s;
}

.nav-desktop a:hover {
  background: #f9fafb;
  color: #0A1E5E;
}

/* ACTIONS */

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  font-size: 22px;
  background: none;
  border: none;
  cursor: pointer;
}

.desktop-only {
  display: none;
}

/* MOBILE MENU */

.mobile-menu {
  display: none;
  background: white;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  overflow: hidden;
  animation: slideDown 0.3s ease forwards;
}

.mobile-search {
  padding: 15px;
  border-bottom: 1px solid #eee;
}

.mobile-search a {
  display: block;
  background: #f3f4f6;
  padding: 10px;
  border-radius: 10px;
  text-decoration: none;
  color: #888;
  font-size: 14px;
}

.mobile-nav {
  padding: 10px 15px 20px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.mobile-nav a {
  padding: 12px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  color: #0A1E5E;
}

.mobile-nav a:hover {
  background: #f9fafb;
  color: #F5A623;
}

.mobile-cta {
  background: #F5A623;
  text-align: center;
  color: #0A1E5E !important;
  margin-top: 10px;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVO */

@media (min-width: 768px) {
  .search-bar {
    display: block;
  }
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }

  .menu-toggle {
    display: none;
  }

  .desktop-only {
    display: inline-block;
  }

  .mobile-menu {
    display: none !important;
  }
}

@media (max-width: 640px) {
  .topbar {
    display: none;
  }
}


.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}


/* SERVICES */
.services {
  padding: 100px 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.icon {
  font-size: 40px;
  margin-bottom: 20px;
}

.card h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #0A1E5E;
}

.card p {
  font-size: 15px;
  margin-bottom: 20px;
  line-height: 1.6;
  color: #666;
}

.btn-link {
  font-size: 14px;
  font-weight: bold;
  color: #0A1E5E;
  text-decoration: none;
  transition: 0.3s;
}

.btn-link:hover {
  color: #F5A623;
}

/* CTA */
.cta {
  background: #0A1E5E;
  color: #fff;
  padding: 100px 0;
  text-align: center;
}

.cta h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.cta p {
  max-width: 600px;
  margin: auto;
  margin-bottom: 30px;
  opacity: 0.85;
}

.btn-primary {
  background: #F5A623;
  color: #0A1E5E;
}

.btn.secondary {
  background: #F5A623;
  color: #0A1E5E;
}

.btn-primary:hover {
  background: #e09515;
}



/* HEADER */

.page-header {
  background: linear-gradient(135deg, #0A1E5E, #132E7A);
  color: white;
  padding: 80px 0;
}

.page-header h1 {
  font-size: 40px;
  font-weight: 900;
}

.page-header p {
  margin-top: 15px;
  color: #ddd;
}

/* SEARCH */

.search-box {
  margin: 40px 0;
}

.search-box input {
  width: 100%;
  max-width: 400px;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid #ddd;
  font-size: 14px;
}

/* LAYOUT */

.products-layout {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* SIDEBAR */

.sidebar {
  width: 260px;
}

.sidebar-title {
  font-size: 13px;
  text-transform: uppercase;
  font-weight: bold;
  color: #999;
  margin-bottom: 20px;
}

.category {
  margin-bottom: 10px;
}

.category-main {
  padding: 14px;
  border-radius: 8px;
  border: 1px solid #eee;
  background: white;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.category.active .category-main {
  background: #0A1E5E;
  color: white;
  border-color: #0A1E5E;
}

.category-main:hover {
  border-color: #F5A623;
}

.subcategory-list a {
  border-left: 2px solid rgba(245,166,35,0.3);
  padding: 10px 15px;
  display: block;
  width: 100%;
  margin: 5px 0;
  color: #000;
  text-decoration: none;
}

.subcategory {
  padding: 8px;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
}

.subcategory:hover {
  background: #f3f4f6;
}

.subcategory.active {
  background: rgba(245,166,35,0.1);
  color: #F5A623;
  font-weight: bold;
}

/* CONTENT */

.content {
  flex: 1;
}

/* BREADCRUMB */

.breadcrumb {
  display: flex;
  gap: 8px;
  font-size: 14px;
  color: #999;
  margin-bottom: 30px;
}

.breadcrumb .active {
  color: #F5A623;
  font-weight: bold;
}

/* PRODUCTS */

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.product-card {
  background: white;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #eee;
  transition: 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.07);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info {
  padding: 20px;
}

.product-code {
  font-size: 12px;
  font-weight: bold;
  color: #F5A623;
}

.product-info h3 {
  margin-top: 6px;
  font-size: 16px;
  color: #0A1E5E;
}

.product-info p {
  margin-top: 10px;
  font-size: 14px;
  color: #666;
}

/* RESPONSIVO */

@media (max-width: 992px) {
  .products-layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
  }
}

.category-main {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-weight: 600;
  cursor: pointer;
  padding: 10px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #dfdfdf;
}

.submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.category.active .submenu {display: flex;flex-direction: column;align-items: flex-start;max-height: 1000px !important;!i;!;}

.arrow {
  width: 8px;
  height: 8px;
  border-right: 2px solid #f5a623;
  border-bottom: 2px solid #f5a623;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.category.active .arrow {
  transform: rotate(-135deg);
}

.products-section {
    margin-bottom: 40px;
}



/* HEADER */
.contact-header {
  background: #0A1E5E;
  color: #fff;
  padding: 60px 0;
}

.contact-header h1 {
  font-size: 36px;
  font-weight: 800;
}

.contact-header p {
  margin-top: 10px;
  color: #ccc;
}

/* GRID */
.contact-section {
  padding: 60px 0;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
}

/* INFO */
.contact-info .info-box {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 20px;
}

.contact-info h3 {
  margin-bottom: 10px;
  color: #0A1E5E;
}

.contact-info ul {
  list-style: none;
}

.contact-info li {
  font-size: 14px;
  margin-bottom: 6px;
  display: flex;
  justify-content: space-between;
}

.contact-info span {
  font-size: 12px;
  color: #999;
}

/* WHATSAPP */
.whatsapp-btn {
  display: block;
  text-align: center;
  background: #25D366;
  color: #fff;
  padding: 14px;
  border-radius: 12px;
  font-weight: bold;
  text-decoration: none;
  margin-top: 20px;
  transition: 0.3s;
}

.whatsapp-btn:hover {
  background: #1ebe5d;
}

/* FORM */
.contact-form {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
}

.contact-form h2 {
  color: #0A1E5E;
  margin-bottom: 5px;
}

.contact-form p {
  font-size: 14px;
  color: #777;
  margin-bottom: 25px;
}

form label {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 5px;
  display: block;
}

input, textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 10px;
  margin-bottom: 20px;
  font-size: 14px;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

button {
  width: 100%;
  background: #F5A623;
  border: none;
  padding: 16px;
  border-radius: 12px;
  font-weight: bold;
  color: #0A1E5E;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background: #e09515;
}

/* MAP */
.map {
  margin-top: 60px;
  height: 350px;
  border-radius: 16px;
  overflow: hidden;
}

.map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* RESPONSIVO */
@media (max-width: 992px) {
  .grid {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}



/* HEADER */
.catalog-header {
  background: #0A1E5E;
  color: #fff;
  padding: 60px 0;
}

.catalog-header h1 {
  font-size: 36px;
  font-weight: 800;
}

.catalog-header p {
  margin-top: 10px;
  color: #ccc;
  max-width: 600px;
}

/* SECTION */
.catalog-section {
  padding: 60px 0;
}

/* GRID */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.catalog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #eee;
  transition: 0.3s;
}

.catalog-card:hover {
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

/* IMAGE */
.catalog-image {
  height: 220px;
  background: linear-gradient(135deg, #0A1E5E, #132E7A);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.catalog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

.catalog-card:hover img {
  transform: scale(1.05);
}

.no-image {
  color: rgba(255,255,255,0.4);
  font-size: 50px;
  flex-direction: column;
}

.pdf-placeholder span {
  display: block;
  font-size: 12px;
  margin-top: 8px;
  letter-spacing: 2px;
}

/* CONTENT */
.catalog-content {
  padding: 20px;
}

.catalog-content h3 {
  color: #0A1E5E;
  font-size: 18px;
  margin-bottom: 8px;
}

.catalog-content p {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

/* BUTTONS */
.catalog-actions {
  display: flex;
  gap: 10px;
}



/* RESPONSIVO */
@media (max-width: 992px) {
  .catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .catalog-grid {
    grid-template-columns: 1fr;
  }
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* HERO */
.about-hero {
  position: relative;
  background: #0A1E5E;
  color: white;
  padding: 100px 0;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  top: -150px;
  right: -150px;
}

.about-hero h1 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
}

.about-hero h1 span {
  color: #F5A623;
}

.about-hero p {
  margin-top: 20px;
  color: #ddd;
  max-width: 600px;
  line-height: 1.6;
}

/* MISSÃO E VISÃO */
.mission-vision {
  padding: 80px 0;
  background: #f5f6fa;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.box {
  background: white;
  padding: 40px;
  border-radius: 20px;
  border: 1px solid #eee;
}

.box .icon {
  font-size: 28px;
  margin-bottom: 15px;
}

.highlight {
  color: #F5A623;
}

.box h2 {
  margin-bottom: 15px;
  color: #0A1E5E;
}

.box p {
  color: #666;
  line-height: 1.6;
}

/* VALORES */
.values {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title span {
  color: #F5A623;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 2px;
}

.section-title h2 {
  font-size: 32px;
  color: #0A1E5E;
  margin-top: 10px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.value-card {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  border: 1px solid #eee;
  transition: 0.3s;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.value-card .icon {
  font-size: 24px;
  margin-bottom: 10px;
}

.value-card h3 {
  color: #0A1E5E;
  margin-bottom: 8px;
}

.value-card p {
  font-size: 14px;
  color: #666;
}

/* CTA */
.cta {
  padding: 80px 0;
  background: #f5f6fa;
  text-align: center;
}

.cta h2 {
  font-size: 30px;
  color: #0A1E5E;
}

.cta p {
  margin: 15px 0 30px;
  color: #666;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}



.primary {
  background: #0A1E5E;
  color: white;
}

.primary:hover {
  background: #0D2670;
}

.outline {
  border: 2px solid #0A1E5E;
  color: #0A1E5E;
}

.outline:hover {
  background: #0A1E5E;
  color: white;
}

/* RESPONSIVO */
@media (max-width: 992px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .about-hero h1 {
    font-size: 32px;
  }
}


.pagination-area {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

.page-numbers {
    color: #fff;
    background: #0a1e5e;
    text-decoration: none;
    padding: 5px 9px;
    display: block;
    margin: 3px;
    border-radius: 3px;
}

.representatives {
  background: #0A1E5E;
  padding: 80px 20px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-badge {
  color: #F5A623;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}


.section-header p {
  color: #ccc;
  margin-top: 15px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* GRID */
.rep-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

/* CARD */
.rep-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 25px;
  transition: 0.3s ease;
}

.rep-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

/* HEADER */
.rep-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.rep-avatar {
  width: 65px;
  height: 65px;
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid rgba(245, 166, 35, 0.4);
  flex-shrink: 0;
}

.rep-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rep-info h3 {
  color: #fff;
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.rep-phone {
  color: #F5A623;
  font-size: 14px;
  text-decoration: none;
}

.rep-phone:hover {
  text-decoration: underline;
}

/* REGIONS */
.rep-regions {
  color: #ccc;
  font-size: 14px;
  margin-bottom: 20px;
  line-height: 1.5;
}

/* BUTTONS */
.rep-actions {
  display: flex;
  gap: 10px;
}

.btn {
  flex: 1;
}

.whatsapp {
  background: #25D366;
  color: #fff;
}

.whatsapp:hover {
  background: #1ebe5d;
}

.email {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

.email:hover {
  border-color: #F5A623;
  color: #F5A623;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 28px;
  }
}

.text-white{
  color: #fff !important;
}

.hero-content {
    max-width: 600px;
}

/* Breadcrumb */
.breadcrumb {
  font-size: 14px;
  margin-bottom: 30px;
  color: #888;
}

.breadcrumb a {
  color: #0A1E5E;
  text-decoration: none;
  font-weight: bold;
}

.breadcrumb span::before {
  content: "›";
  margin: 0 8px;
  color: #ccc;
}

/* Grid */
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

/* Galeria */
.main-image {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.thumbs {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.thumbs img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
  border: 2px solid #eee;
  transition: 0.3s;
}

.thumbs img:hover {
  border-color: #F5A623;
}

/* Info */
.product-code {
  font-weight: bold;
  color: #F5A623;
  font-size: 14px;
}

.product-info h1 {
  font-size: 32px;
  color: #0A1E5E;
  margin: 10px 0 20px;
}

.description {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

/* Specs */
.specifications {
  margin-top: 30px;
}

.specifications h3 {
  font-size: 13px;
  text-transform: uppercase;
  color: #999;
  margin-bottom: 10px;
}

.spec-box {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
  border: 1px solid #eee;
}

/* CTA */
.quote-box {
  margin-top: 40px;
  background: linear-gradient(90deg, #0A1E5E, #132E7A);
  padding: 30px;
  border-radius: 20px;
  color: #fff;
}

.quote-box h3 {
  margin-top: 0;
}

.quote-actions {
  margin-top: 20px;
  display: flex;
  gap: 15px;
}


.primary {
  background: #F5A623;
  color: #0A1E5E;
}

.primary:hover {
  background: #e09515;
}

.quote-box .outline {
  border: 1px solid #fff;
  color: #fff;
}

.quote-box .outline:hover {
  background: rgba(255,255,255,0.1);
}

/* Relacionados */
.related {
  margin-top: 80px;
}

.related h2 {
  font-size: 24px;
  color: #0A1E5E;
  margin-bottom: 30px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.related-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  transition: 0.3s;
  border: 1px solid #eee;
}

.related-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.related-card h3 {
  padding: 20px;
  margin: 0;
  color: #0A1E5E;
}

.related-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Responsivo */
@media (max-width: 992px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

.product-page {
    padding: 60px 0;
}