* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: #f8f8f8;
  color: #333333;
  line-height: 1.6;
  overflow-x: hidden;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.product-hero {
  padding: 120px 0 80px 0;
  background: url('../../imgs/Banner\ Produtos.jpg') center center/cover no-repeat;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.product-hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}
.product-badge-container {
  margin-bottom: 20px;
}
.product-badge {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.product-badge.gold {
  background: linear-gradient(139deg, #ffd700 0%, #ffb347 100%);
  color: #333333;
  border-color: #ffd700;
}
.product-badge.premium {
  background: linear-gradient(139deg, #ff6b6b 0%, #ee5a52 100%);
  border-color: #ff6b6b;
}
.product-badge.classic {
  background: linear-gradient(139deg, #4ecdc4 0%, #44a08d 100%);
  border-color: #4ecdc4;
}
.product-badge.modern {
  background: linear-gradient(139deg, #667eea 0%, #764ba2 100%);
  border-color: #667eea;
}

.product-badge.exclusive {
  background: linear-gradient(139deg, #f093fb 0%, #f5576c 100%);
  border-color: #f093fb;
}
.product-badge.protection {
  background: linear-gradient(139deg, #2ecc71 0%, #27ae60 100%);
  border-color: #2ecc71;
}
.product-badge.entrance {
  background: linear-gradient(139deg, #e74c3c 0%, #c0392b 100%);
  border-color: #e74c3c;
}

.product-badge.structural {
  background: linear-gradient(139deg, #8e44ad 0%, #9b59b6 100%);
  border-color: #8e44ad;
}

.hero-title {
  font-family: "Inter", Sans-serif;
  font-size: 64px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 30px;
  line-height: 1.1;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-family: "Inter", Sans-serif;
  font-size: 22px;
  font-weight: 300;
  color: #ffffff;
  line-height: 1.6;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}

.product-details {
  padding: 100px 0;
  background: #f8f8f8;
}

.product-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.product-info {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.product-description h2,
.product-features h2,
.product-specs h2 {
  font-family: 'Inter', sans-serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 25px;
  background: linear-gradient(139deg, #000059 0%, #223E70 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.product-description p {
  font-size: 18px;
  color: #666666;
  line-height: 1.7;
  margin-bottom: 20px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.feature-item i {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(139deg, #000059 0%, #223E70 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
}

.feature-item span {
  font-size: 16px;
  color: #333333;
  font-weight: 500;
}

.product-specs {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.specs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 25px;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #f8f8f8;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.spec-item:hover {
  background: #f0f0f0;
  transform: translateX(5px);
}

.spec-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #ffffff;
  background: linear-gradient(139deg, #000059 0%, #223E70 100%);
  flex-shrink: 0;
}

.spec-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: #333333;
  margin-bottom: 5px;
}

.spec-content p {
  font-size: 14px;
  color: #666666;
  font-weight: 500;
}

.product-image-container {
  position: sticky;
  top: 100px;
}

.product-main-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.product-main-image:hover {
  transform: scale(1.02);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}

.product-main-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.tipologias-section {
  padding: 100px 0;
  background: #ffffff;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-family: 'Inter', sans-serif;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  background: linear-gradient(139deg, #000059 0%, #223E70 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(139deg, #000059 0%, #223E70 100%);
  margin: 0 auto;
  border-radius: 2px;
}

.tipologias-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.tipologia-item {
  background: #f8f8f8;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.tipologia-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  border-color: #000059;
}

.tipologia-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
  color: #fff;
  background: linear-gradient(139deg, #000059 0%, #223E70 100%);
  transition: all 0.3s ease;
}

.tipologia-item:hover .tipologia-icon {
  transform: scale(1.1) rotate(5deg);
}

.tipologia-name {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #333333;
  margin-bottom: 10px;
}

.tipologia-description {
  font-size: 14px;
  color: #666666;
  line-height: 1.5;
}

.gallery-section {
  padding: 100px 0;
  background: #f8f8f8;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  cursor: pointer;
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 89, 0.8) 0%, rgba(34, 62, 112, 0.8) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  color: #ffffff;
  font-size: 32px;
}

.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #000059 0%, #223E70 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('../imgs/banner.jpg') center center/cover no-repeat;
  opacity: 0.1;
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-family: 'Inter', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.cta-description {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 40px;
  opacity: 0.9;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 40px;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 200px;
}

.cta-btn.primary {
  background: #ffffff;
  color: #000059;
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.cta-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
  text-decoration: none;
  color: #000059;
}

.cta-btn.secondary {
  background: #25D366;
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.cta-btn.secondary:hover {
  transform: translateY(-3px);
  background: #20b85a;
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  color: #ffffff;
}

.cta-btn i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

.cta-btn:hover i {
  transform: translateX(5px);
}

.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}

.floating-whatsapp a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  text-decoration: none;
  font-size: 24px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
}

.floating-whatsapp a:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.pulse-infinite {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@media (max-width: 1024px) {
  .hero-title {
    font-size: 56px;
  }
  
  .product-content-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .product-image-container {
    position: static;
    order: -1;
  }
  
  .product-main-image img {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .product-hero {
    padding: 100px 0 60px 0;
  }
  
  .hero-title {
    font-size: 48px;
  }
  
  .hero-subtitle {
    font-size: 20px;
  }
  
  .product-details {
    padding: 80px 0;
  }
  
  .product-content-grid {
    gap: 40px;
  }
  
  .product-info {
    gap: 40px;
  }
  
  .product-description h2,
  .product-features h2,
  .product-specs h2 {
    font-size: 28px;
  }
  
  .section-title {
    font-size: 36px;
  }
  
  .tipologias-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .cta-section {
    padding: 80px 0;
  }
  
  .cta-title {
    font-size: 36px;
  }
  
  .cta-description {
    font-size: 18px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .product-hero {
    padding: 80px 0 40px 0;
  }
  
  .hero-title {
    font-size: 40px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .product-details {
    padding: 60px 0;
  }
  
  .product-description p {
    font-size: 16px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .product-specs {
    padding: 30px 20px;
  }
  
  .section-title {
    font-size: 32px;
  }
  
  .tipologias-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-section {
    padding: 60px 0;
  }
  
  .cta-title {
    font-size: 28px;
  }
  
  .cta-description {
    font-size: 16px;
  }
  
  .floating-whatsapp {
    bottom: 25px;
    right: 25px;
  }
  
  .floating-whatsapp a {
    width: 55px;
    height: 55px;
    font-size: 22px;
  }
}
.zoom-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 10004;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
  overflow: visible !important;
}

.zoom-modal.active {
  display: flex;
  overflow: visible !important;
}

.zoom-modal-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  overflow: visible !important;
}

.zoom-modal-image {
  width: 85vw;
  height: 85vh;
  max-width: 1200px;
  max-height: 900px;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.zoom-modal-close {
  position: fixed;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.25);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  z-index: 10005;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.zoom-modal-close:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.zoom-modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  z-index: 10001;
  pointer-events: auto;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0.3);
}

.zoom-modal-nav:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.1);
}

.zoom-modal-nav:active {
  background: rgba(255, 255, 255, 0.4);
  transform: translateY(-50%) scale(0.95);
}

.zoom-modal-prev {
  left: -70px;
}

.zoom-modal-next {
  right: -70px;
}

.zoom-modal-counter {
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  background: rgba(0, 0, 0, 0.5);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  backdrop-filter: blur(10px);
}
@media (max-width: 768px) {
  .zoom-modal {
    padding: 10px;
  }

  .zoom-modal-image {
    width: 90vw;
    height: 80vh;
    max-width: 100%;
    max-height: 100%;
  }

  .zoom-modal {
    z-index: 10004 !important;
  }
  
  .zoom-modal-close {
    position: fixed !important;
    top: 80px !important;
    right: 15px !important;
    width: 52px !important;
    height: 52px !important;
    font-size: 24px !important;
    background: #ffffff !important;
    color: #000000 !important;
    min-width: 52px !important;
    min-height: 52px !important;
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    border: 2px solid rgba(0, 0, 0, 0.2) !important;
    z-index: 10005 !important;
    pointer-events: auto !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5) !important;
  }
  
  .zoom-modal-close i {
    font-size: 24px !important;
    color: #000000 !important;
    display: block !important;
  }

  .zoom-modal-nav {
    width: 50px;
    height: 50px;
    font-size: 18px;
    min-width: 50px;
    min-height: 50px;
    background: rgba(255, 255, 255, 0.9) !important;
    color: #000000 !important;
    z-index: 10003 !important;
    border: 2px solid rgba(0, 0, 0, 0.15);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
  }
  
  .zoom-modal-nav i {
    color: #000000 !important;
    font-size: 18px !important;
  }

  .zoom-modal-prev {
    left: 10px;
  }

  .zoom-modal-next {
    right: 10px;
  }

  .zoom-modal-counter {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    padding: 8px 14px;
  }
}

@media (max-width: 480px) {
  .zoom-modal-image {
    width: 95vw;
    height: 75vh;
  }

  .zoom-modal {
    z-index: 10004 !important;
  }
  
  .zoom-modal-close {
    position: fixed !important;
    top: 75px !important;
    right: 12px !important;
    width: 50px !important;
    height: 50px !important;
    font-size: 22px !important;
    background: #ffffff !important;
    color: #000000 !important;
    min-width: 50px !important;
    min-height: 50px !important;
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    border: 2px solid rgba(0, 0, 0, 0.25) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6) !important;
    z-index: 10005 !important;
    pointer-events: auto !important;
  }
  
  .zoom-modal-close i {
    font-size: 22px !important;
    color: #000000 !important;
    display: block !important;
  }

  .zoom-modal-nav {
    width: 48px;
    height: 48px;
    font-size: 16px;
    min-width: 48px;
    min-height: 48px;
    background: rgba(255, 255, 255, 0.95) !important;
    color: #000000 !important;
    z-index: 10003 !important;
    border: 2px solid rgba(0, 0, 0, 0.2);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.5);
  }
  
  .zoom-modal-nav i {
    color: #000000 !important;
    font-size: 16px !important;
  }

  .zoom-modal-prev {
    left: 10px;
  }

  .zoom-modal-next {
    right: 10px;
  }

  .zoom-modal-counter {
    bottom: 15px;
    font-size: 11px;
    padding: 6px 12px;
  }
}