/* Estilo base para todas as tabelas */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 4px 0;
  font-size: 16px;
  text-align: left;
  overflow: hidden;
  /* arredondamento nas bordas */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Cabeçalho */
table thead {
  background: linear-gradient(135deg, indigo, purple);
  color: snow;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* Células do cabeçalho */
table thead th {
  padding: 12px 15px;
}

/* Linhas da tabela */
table tbody tr {
  background-color: snow;
  border-bottom: 1px solid #ddd;
  transition: background 0.2s ease;
}

/* Hover nas linhas */
table tbody tr:hover {
  background-color: #fff9ff;
}

/* Células */
table td {
  padding: 12px 15px;
  color: #333;
}

/* Última linha sem borda extra */
table tbody tr:last-child {
  border-bottom: none;
}

/* imagens */

img {
  width: 80px;
  height: 100%;
  /* define altura fixa */
  object-fit: cover;
  /* corta o excesso mantendo proporção */
  border-radius: 10px;
  display: block;
}

@font-face {
  font-family: UrbanJungleDEMO;
  src: url(../fonts/UrbanJungleDEMO.otf);
}

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

body {
  width: 1200px;
  max-width: 100%;
  margin: 0 auto;
  font-family: 'Arial', sans-serif;
  min-height: 100vh;
  background: linear-gradient(135deg, #251a2e, #3d163e);
  color: white;
  display: flex;
  flex-direction: column;
}

/* ==========================
   Main Section
========================== */
.main-section-prime {
  display: flex;
  gap: 10px;
  flex-wrap: wrap; /* permite quebra em telas pequenas */
}

/* Primeira div maior */
.container-div-prime1 {
  flex: 2; /* ocupa mais espaço */
  padding: 10px;
  color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Segunda div menor */
.container-div-prime2 {
  flex: 1; /* ocupa menos espaço */
  padding: 10px;
  color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 400px; /* altura padrão desktop */
}

.container-div-prime2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.overlay-content {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translate(-50%, -80%);
  text-align: center;
}

/* ==========================
   Gatovel Button (Pixel Art Verde)
========================== */
.gatovel-button {
  width: 280px;
  height: 50px;
  background: linear-gradient(45deg, #32cd32, #7fff00, #00ff7f, #adff2f);
  background-size: 400% 400%;
  border: 4px solid #fff;
  border-radius: 0;
  cursor: pointer;
  position: relative;
  image-rendering: pixelated;
  font-family: 'Courier New', monospace;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  text-shadow: 2px 2px 0 #000, 0 0 8px #00ff7f;
  animation:
    glow-green 2s ease-in-out infinite alternate,
    gradient-green 4s ease infinite;
  transition: transform 0.1s ease;
  box-shadow:
    0 0 20px rgba(50, 205, 50, 0.6),
    0 0 40px rgba(0, 255, 127, 0.4),
    inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.gatovel-button:before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #32cd32, #7fff00, #00ff7f, #adff2f);
  background-size: 400% 400%;
  z-index: -1;
  filter: blur(8px);
  animation: gradient-green 4s ease infinite;
}

.gatovel-button:hover {
  transform: scale(1.05);
  box-shadow:
    0 0 30px rgba(50, 205, 50, 0.9),
    0 0 60px rgba(0, 255, 127, 0.7),
    inset 0 0 20px rgba(255, 255, 255, 0.2);
}

.gatovel-button:active {
  transform: scale(0.98);
}

.pixel-text {
  position: relative;
  z-index: 2;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Glow & Gradient Animation */
@keyframes glow-green {
  from {
    box-shadow:
      0 0 20px rgba(50, 205, 50, 0.6),
      0 0 40px rgba(0, 255, 127, 0.4),
      inset 0 0 20px rgba(255, 255, 255, 0.1);
  }
  to {
    box-shadow:
      0 0 30px rgba(50, 205, 50, 0.9),
      0 0 60px rgba(0, 255, 127, 0.7),
      inset 0 0 30px rgba(255, 255, 255, 0.2);
  }
}

@keyframes gradient-green {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* ==========================
   Job Cards (Galeria)
========================== */
.job-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
}

.job-card {
  width: 180px;
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
  text-align: center;
  background-color: aliceblue;
  padding: 4px;
}

.job-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
}

.job-card h3 {
  margin-top: 6px;
  font-size: 14px;
  font-weight: 500;
  color: indigo;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.job-card p {
  font-size: 12px;
  color: #818181;
  line-height: 1.2;
  margin: 4px 0 0 0;
}

/* ==========================
   Responsividade
========================== */
@media screen and (max-width: 768px) {
  .main-section-prime {
    flex-direction: column;
    gap: 10px;
  }

  .container-div-prime1,
  .container-div-prime2 {
    flex: 1 1 100%;
    height: auto;
  }

  .container-div-prime2 img {
    height: 200px;
    object-fit: cover;
  }

  .gatovel-button {
    width: 180px;
    height: 50px;
    font-size: 18px;
  }

  .job-cards {
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
  }

  .job-card img { height: 60px; }
  .job-card h3 { font-size: 12px; }
  .job-card p { font-size: 10px; }
}

@media screen and (max-width: 480px) {
  .container-div-prime2 img { height: 150px; }
  .gatovel-button { width: 150px; height: 45px; font-size: 16px; }

  .job-card { width: 84px; }
  .job-card img { height: 60px; }
  .job-card h3 { font-size: 11px; }
  .job-card p { font-size: 9px; }
}



/* Hero Section */
.publi {
  background: linear-gradient(135deg, #231a2e 0%, #29163e 50%, #420f60 100%);
  color: white;
  padding: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.publi::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.publi-content {
  position: relative;
  z-index: 2;
}

.publi h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, #a8ff3e, #32cd32);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: slideInUp 0.8s ease-out;
}

.publi p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  animation: slideInUp 0.8s ease-out 0.2s both;
}


.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: slideInUp 0.8s ease-out 0.4s both;
}

.btn {
  padding: 5px 10px;
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(45deg, #a8ff3e, #32cd32);
  color: rgb(68, 68, 68);
}

.btn-secondary {
  background: transparent;
  border: 2px solid lime;
  color: lime;
}

.btn:hover {
  transform: translateY(-3px) scale(1.05);
}

/* Publi Section */

/* MAIN inicio */

.containerMain {
  display: flex;
  gap: 4px;
  align-items: flex-start;
  padding: 4px;
}

.contentMainLeft {
  flex: 1;
  background-color: snow;
}

.contentMainRight {
  flex: 1;
  background-color: snow;
}

.contentMainRight>div {
  padding: 5px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.content1 {
  background-color: indigo;
  display: flex;
  gap: 5px;
  justify-content: start;
  align-items: center;
}

.content2 table {
  width: 100%;
}

.content3 {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.content4 {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .containerMain {
    flex-direction: column;
  }

  .contentMainLeft,
  .contentMainRight {
    width: 100%;
  }
}

/* Coluna Esquerda Melhorada */
.contentMainLeft {
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
  padding: 5px;
}

/* Coluna Direita Melhorada */
.contentMainRight {
  background: linear-gradient(145deg, #ffffff, #f8f9fa);
  padding: 5px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* Serviços - Card */
.service-item {
  width: 140px;
  /* pode ajustar o tamanho */
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
  text-align: center;
  /* título centralizado */
  background-color: #f5f5f5;
  /* cor de fundo opcional */
  padding: 8px;
  /* espaço para o título */
}

.service-item img,
.service-item .no-image-placeholder {
  width: 100%;
  height: 80px;
  /* altura da imagem */
  object-fit: cover;
  display: block;
}

.service-title {
  margin-top: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.service-item:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 255, 0, 0.3);
}

/* Galeria de Produtos */
.products-gallery {
  background: linear-gradient(135deg, #ffffff 0%, #f6f6f6 50%, #ededed 100%);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 10px;
  gap: 4px;
}

.product-card {
  width: 180px;
  height: 180px;
  background: linear-gradient(145deg, #ffffff, #f0f0f0);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
  position: relative;
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-5px) scale(1);
  box-shadow: 0 15px 40px rgba(75, 0, 130, 0.25);
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.no-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e0e0e0, #f5f5f5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 14px;
  text-align: center;
  border-radius: 15px;
  position: relative;
}



/* MAIN fim*/


























/* estrutura do container do ABOUT */
.about-header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.about-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.about-logo {
  font-size: 1.8rem;
  font-weight: 700;
  color: #6366f1;
}

.about-nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.about-nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.about-nav-links a:hover {
  color: #6366f1;
}

/* Hero Section */
.about-hero {
  background: linear-gradient(135deg, #391e55 50%, #420f60 100%);
  color: white;
  padding: 8rem 0 4rem;
  text-align: center;
}

.about-hero h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.about-hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.about-cta-button {
  display: inline-block;
  background: white;
  color: #8b5cf6;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.3s;
}

.about-cta-button:hover {
  transform: translateY(-2px);
}

/* Hero Image */
.about-hero-image {
  margin-top: 3rem;
  text-align: center;
}

.about-hero-image img {
  max-width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.about-hero-image-placeholder {
  height: 400px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  border: 2px dashed rgba(255, 255, 255, 0.3);
}

/* About Section */
.about {
  padding: 6rem 0;
  background: #f8fafc;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 2rem;
}

.about-text p {
  font-size: 1.1rem;
  color: #64748b;
  margin-bottom: 1.5rem;
}

.about-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 15px;
}

.about-image-placeholder {
  width: 100%;
  height: 350px;
  background: #e2e8f0;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  border: 2px dashed #cbd5e1;
}

/* Services Section */
.about-services {
  padding: 2rem 0;
  background: white;
}

.about-section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 3rem;
}

.about-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.about-service-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

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

.about-service-image {
  width: 100%;
  height: 200px;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  overflow: hidden;
}

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

.about-service-image-placeholder {
  width: 100%;
  height: 200px;
  background: #f1f5f9;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  border: 2px dashed #cbd5e1;
  margin-bottom: 1.5rem;
}

.about-service-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 1rem;
}

.about-service-card p {
  color: #64748b;
  line-height: 1.6;
}

/* Technologies Section */
.about-technologies {
  padding: 2rem 0;
  background: #1e293b;
  color: white;
}

.about-tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 2rem;
}

.about-tech-item {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  transition: background 0.3s;
}

.about-tech-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.about-tech-icon {
  width: 60px;
  height: 60px;
  background: #6366f1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
}

.about-tech-item h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.about-tech-item p {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Footer */
.about-footer {
  background: #0f172a;
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.about-footer h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.about-footer p {
  font-size: 1.1rem;
  opacity: 0.8;
  margin-bottom: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .about-nav-links {
    display: none;
  }

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

  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-services-grid {
    grid-template-columns: 1fr;
  }

  .about-container {
    padding: 0 1rem;
  }

  .about-hero {
    padding: 6rem 0 3rem;
  }
}

.section-title {
  margin-bottom: 1.5rem;
  position: relative;
}

.content-text {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  text-align: justify;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.content-text:hover {
  opacity: 1;
}

.services-list,
.products-list {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  border-left: 4px solid #FFD700;
}

.services-list ul,
.products-list ul {
  list-style: none;
  padding: 0;
}

.services-list li,
.products-list li {
  padding: 0.8rem 0;
  position: relative;
  padding-left: 2rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.services-list li::before,
.products-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  top: 0.8rem;
  color: #FFD700;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.services-list li:hover,
.products-list li:hover {
  transform: translateX(10px);
  color: #FFD700;
}

.services-list li:hover::before,
.products-list li:hover::before {
  transform: rotate(180deg) scale(1.2);
  color: #FF6B6B;
}

.highlight-text {
  background: rgba(255, 215, 0, 0.1);
  border-radius: 10px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  border-left: 4px solid #4ECDC4;
  font-weight: 600;
  font-style: italic;
}

.synopsis-section {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  padding: 2rem;
  margin: 2rem 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.synopsis-title {
  font-size: 1.5rem;
  color: #4ECDC4;
  margin-bottom: 1rem;
  text-align: center;
  position: relative;
}

.synopsis-title::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, #4ECDC4, #45B7D1);
}

.container {
  padding: 20px;
}

.post-card {
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: 0 20px 40px rgba(79, 70, 229, 0.3);
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.post-header {
  text-align: center;
  margin-bottom: 20px;
}

.post-id {
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-weight: bold;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.post-title {
  color: #312e81;
  margin: 15px 0;
  font-size: 2.2em;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.post-subtitle {
  color: #4f46e5;
  font-size: 1.3em;
  font-weight: 600;
  margin: 20px 0;
  border-left: 4px solid #a3e635;
  padding-left: 15px;
}

.image-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin: 25px 0;
  justify-content: center;
}

.post-image-post {
  width: 300px;
  height: 300px;
  border-radius: 15px;
  object-fit: cover;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.post-image:hover {
  transform: scale(1.05);
}

.no-images {
  text-align: center;
  color: #6b7280;
  font-style: italic;
  padding: 20px;
  background: rgba(163, 230, 53, 0.1);
  border-radius: 10px;
  border: 2px dashed #a3e635;
}

.post-content {
  color: #374151;
  font-size: 1.1em;
  line-height: 1.7;
  margin: 20px 0;
  text-align: justify;
}

.post-date {
  color: #6b7280;
  font-size: 0.9em;
  text-align: right;
  border-top: 1px solid #e5e7eb;
  padding-top: 15px;
  margin-top: 20px;
}

.comment-form {
  background: linear-gradient(135deg, #a3e635, #84cc16);
  border-radius: 20px;
  padding: 30px;
  margin: 30px 0;
  box-shadow: 0 15px 35px rgba(163, 230, 53, 0.3);
}

.comment-form h3 {
  color: #365314;
  margin-top: 0;
  margin-bottom: 25px;
  font-size: 1.5em;
  text-align: center;
  font-weight: 700;
}

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

.form-input,
.form-textarea {
  width: 100%;
  padding: 15px 20px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  background: white;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  font-family: inherit;
}

.submit-btn {
  background: linear-gradient(135deg, #312e81, #4f46e5);
  color: white;
  padding: 15px 40px;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 6px 15px rgba(79, 70, 229, 0.4);
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(79, 70, 229, 0.5);
}

.comments-section {
  margin-top: 40px;
}

.comments-title {
  color: #312e81;
  font-size: 1.8em;
  margin-bottom: 25px;
  text-align: center;
  position: relative;
}

.comments-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(135deg, #a3e635, #84cc16);
  border-radius: 2px;
}

.comment-item {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px rgba(79, 70, 229, 0.1);
  border-left: 5px solid #a3e635;
  transition: transform 0.2s ease;
}

.comment-item:hover {
  transform: translateX(5px);
}

.comment-author {
  color: #4f46e5;
  font-weight: 700;
  font-size: 1.1em;
  margin-bottom: 5px;
}

.comment-date {
  color: #6b7280;
  font-size: 0.85em;
  margin-bottom: 15px;
}

.comment-text {
  color: #374151;
  line-height: 1.6;
  font-size: 1em;
}

.no-comments {
  text-align: center;
  color: #6b7280;
  font-style: italic;
  padding: 40px;
  background: rgba(79, 70, 229, 0.1);
  border-radius: 15px;
  border: 2px dashed #4f46e5;
}

.divider {
  border: none;
  height: 2px;
  background: linear-gradient(135deg, #4f46e5, #a3e635);
  margin: 40px 0;
  border-radius: 1px;
}

@media (max-width: 768px) {
  .container {
    padding: 10px;
  }

  .post-card,
  .comment-form {
    padding: 20px;
    margin-bottom: 20px;
  }

  .post-image {
    width: 250px;
    height: 250px;
  }

  .post-title {
    font-size: 1.8em;
  }
}

/* Container específico para o produto */
.produto-wrapper {
  background-color: transparent;
  padding: 20px;
  min-height: auto;
}

.produto-card-custom {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin: 0 auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.produto-card-custom:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.produto-header-custom {
  background: linear-gradient(135deg, #4B0082, #663399);
  color: #FFFAFA;
  text-align: center;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.produto-header-custom::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: rotate(45deg);
  animation: produto-shimmer 3s infinite;
}

.produto-header-custom h3 {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
  margin: 0;
}

.produto-content-custom {
  padding: 30px;
}

.produto-image-container-custom {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-bottom: 25px;
}

.produto-image-custom {
  width: 300px;
  height: 300px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.produto-image-custom:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.produto-no-image-custom {
  background: #f8f9fa;
  border: 2px dashed #dee2e6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6c757d;
  font-style: italic;
  border-radius: 12px;
  width: 280px;
  height: 280px;
}

.produto-info-custom {
  text-align: center;
  margin-bottom: 25px;
}

.produto-title-custom {
  font-size: 2.2rem;
  color: #2c3e50;
  margin-bottom: 10px;
  font-weight: 700;
  line-height: 1.3;
}

.produto-subtitle-custom {
  font-size: 1.2rem;
  color: #7f8c8d;
  font-weight: 400;
  margin-bottom: 0;
}

.produto-description-custom {
  background: #f8f9fa;
  border-radius: 10px;
  padding: 10px;
}

.produto-description-custom p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #34495e;
  text-align: justify;
  margin: 0;
}

/* Responsividade */
@media (max-width: 768px) {
  .produto-wrapper {
    padding: 15px;
  }

  .produto-card-custom {
    margin: 0;
  }

  .produto-header-custom {
    padding: 15px;
  }

  .produto-header-custom h3 {
    font-size: 1.5rem;
  }

  .produto-content-custom {
    padding: 20px;
  }

  .produto-image-custom {
    width: 100%;
    max-width: 300px;
    height: 250px;
  }

  .produto-no-image-custom {
    width: 100%;
    max-width: 300px;
    height: 250px;
  }

  .produto-title-custom {
    font-size: 1.8rem;
  }

  .produto-subtitle-custom {
    font-size: 1.1rem;
  }

  .produto-description-custom {
    padding: 20px;
  }

  .produto-description-custom p {
    font-size: 1rem;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .produto-wrapper {
    padding: 10px;
  }

  .produto-header-custom h3 {
    font-size: 1.3rem;
  }

  .produto-content-custom {
    padding: 15px;
  }

  .produto-title-custom {
    font-size: 1.6rem;
  }

  .produto-subtitle-custom {
    font-size: 1rem;
  }

  .produto-description-custom {
    padding: 15px;
  }

  .produto-image-custom {
    height: 200px;
  }

  .produto-no-image-custom {
    height: 200px;
    font-size: 0.9rem;
  }
}

/* Serviços*/
/* Container específico para o serviço */
.servico-wrapper {
  background-color: transparent;
  padding: 20px;
  min-height: auto;
}

.servico-card-custom {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin: 0 auto;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.servico-card-custom:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.servico-header-custom {
  background: linear-gradient(135deg, #4B0082, #663399);
  color: #FFFAFA;
  text-align: center;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.servico-header-custom::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: rotate(45deg);
  animation: servico-shimmer 3s infinite;
}

.servico-header-custom h2 {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
  margin: 0;
}

@keyframes servico-shimmer {
  0% {
    transform: translateX(-100%) rotate(45deg);
  }

  100% {
    transform: translateX(100%) rotate(45deg);
  }
}

.servico-content-custom {
  padding: 30px;
}

.servico-image-container-custom {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-bottom: 25px;
}

.servico-image-custom {
  width: 300px;
  height: 300px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.servico-image-custom:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.servico-no-image-custom {
  background: #f8f9fa;
  border: 2px dashed #dee2e6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6c757d;
  font-style: italic;
  border-radius: 12px;
  width: 280px;
  height: 280px;
}

.servico-info-custom {
  text-align: center;
  margin-bottom: 25px;
}

.servico-subtitle-custom {
  font-size: 1.2rem;
  color: #7f8c8d;
  font-weight: 400;
  margin-bottom: 10px;
}

.servico-description-custom {
  flex-basis: 100%;
  /* quebra linha após info */
  background: #f8f9fa;
  border-radius: 10px;
  padding: 10px;
}

.servico-description-custom p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #34495e;
  text-align: justify;
  margin: 0;
}




@media (max-width: 768px) {

  .containerMain {
    padding: 15px;
    gap: 15px;
  }

  .products-gallery {
    gap: 10px;
  }

  .product-card {
    width: 120px;
    height: 240px;
  }

  .section-title h3 {
    font-size: 1.4em;
  }

  .posts-table th,
  .posts-table td {
    padding: 10px 8px;
    font-size: 0.9em;
  }

  .post-image {
    width: 60px;
    height: 60px;
  }

  /* Adicionando/ajustando service-item */
  .service-item {
    width: 90px;
    height: auto;
    /* permite o título expandir a altura */
  }

  .service-item img,
  .service-item .no-image-placeholder {
    height: 70px;
  }

  .service-title {
    font-size: 12px;
  }

  .news-item {
    width: 40px;
    height: 40px;
  }

  .action-btn {
    padding: 10px 16px;
    font-size: 0.8em;
  }
}

@media (max-width: 480px) {

  .containerMain {
    padding: 10px;
  }

  .contentMainLeft,
  .contentMainRight {
    padding: 15px;
  }

  .product-card {
    width: 100px;
    height: 200px;
  }

  .posts-table {
    font-size: 0.8em;
  }

  .content1,
  .content3,
  .content4 {
    gap: 6px;
  }

  /* Adicionando/ajustando service-item */
  .service-item {
    width: 80px;
    height: auto;
  }

  .service-item img,
  .service-item .no-image-placeholder {
    height: 60px;
  }

  .service-title {
    font-size: 11px;
  }
}


/* Loading Animation */
.loading {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: lime;
  animation: spin 1s ease-in-out infinite;
}

/* estrutura do container do main site FINAL*/