/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
  }
  
  /* Top Header */
  .top-header {
    background-color: #f8f9fa;
    padding: 5px 20px;
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #666;
  }
  
  .top-header a {
    color: #666;
    text-decoration: none;
    margin: 0 10px;
  }
  
  .top-header a:hover {
    text-decoration: underline;
  }
  
  /* Main Header */
  .main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #fff;
    border-bottom: 1px solid #ddd;
  }
  
  .main-header img {
    height: 40px;
  }
  
  .main-header nav a {
    margin: 0 15px;
    color: #333;
    text-decoration: none;
    font-weight: bold;
  }
  
  .main-header nav a:hover {
    color: #007bff;
  }
  
  .header-right {
    display: flex;
    align-items: center;
  }
  
  .header-right a {
    margin: 0 10px;
    color: #333;
    text-decoration: none;
  }
  
  .header-right a:hover {
    text-decoration: underline;
  }
  
  .cart-icon {
    position: relative;
  }
  
  .cart-icon span {
    position: absolute;
    top: -5px;
    right: -10px;
    background-color: #ff0000;
    color: white;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 50%;
  }
  
  /* Slideshow */
  .slideshow-container {
    width: 100%;
    max-height: 500px;
    position: relative;
    overflow: hidden;
  }
  
  .slides {
    display: none;
    width: 100%;
    height: auto;
  }
  
  .active {
    display: block;
  }
  
  .slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .fade {
    animation: fadeEffect 1.5s;
  }
  
  @keyframes fadeEffect {
    from {opacity: 0.4}
    to {opacity: 1}
  }
  
  /* Nova Seção Sobre */

/* Tornar a seção clicável */
.about-link {
  text-decoration: none;
}

.about-link:hover .about-section {
  background-color: #f0f0f0; /* Cor de fundo ao passar o mouse */
  cursor: pointer;
}

.about-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 10px;
  background-color: #f9f9f9;
  border-top: 2px solid #ddd;
  border-bottom: 2px solid #ddd;
}

.about-container {
  display: flex;
  flex-direction: row;
  max-width: 1000px;
  gap: 20px;
  align-items: center;
}

.about-text {
  flex: 1;
  text-align: justify;
}

.about-text h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 15px;
}

.about-text p {
  font-size: 1rem;
  color: #666;
}

.about-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Responsividade */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-image img {
    max-width: 100%;
  }
}


  /* Cards Section */
  .services-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 20px;
    background-color: #f9f9f9;
  }
  
  .service-card {
    background-color: white;
    width: 22%;
    margin: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    text-align: center;
  }
  
  .service-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
  }
  
  .service-card h3 {
    font-size: 18px;
    color: #333;
    margin: 15px 0;
  }
  
  .service-card p {
    font-size: 14px;
    color: #666;
    margin: 0 15px 15px;
  }
  
  .service-card .btn {
    display: inline-block;
    margin: 10px 5px 15px;
    padding: 10px 15px;
    text-decoration: none;
    color: white;
    background-color: #007bff;
    border-radius: 5px;
    font-size: 14px;
  }
  
  .service-card .btn:hover {
    background-color: #0056b3;
  }
  
  /* Footer */
  .contact-section {
    background-color: #1215F7;
    color: white;
    padding: 40px 20px;
    text-align: center;
  }
  
  .contact-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
  }
  
  .contact-item {
    text-align: center;
    max-width: 200px;
  }
  
  .contact-item img {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
    filter: invert(1);
  }
  
  .contact-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .contact-item p {
    font-size: 14px;
    color: #cccccc;
    margin-bottom: 5px;
  }
  
  .contact-item a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
  }
  
  .contact-item a:hover {
    text-decoration: underline;
  }
  
  /* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  a:hover {
    text-decoration: underline;
  }
  
  /* Top Header */
  .top-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f8f9fa;
    padding: 5px 20px;
    font-size: 14px;
    color: #666;
  }
  
  .top-header .services a {
    margin-right: 15px;
    color: #666;
  }
  
  .top-header .top-right {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .language-selector {
    display: flex;
    align-items: center;
    gap: 5px;
  }
  
  .language-selector img {
    width: 20px;
    height: auto;
  }
  
  /* Main Header */
  .main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #ffffff;
    border-bottom: 1px solid #ddd;
  }
  
  .main-header .logo {
    height: 40px;
  }
  
  .main-nav {
    display: flex;
    gap: 20px;
  }
  
  .main-nav a {
    color: #333;
    font-weight: bold;
  }
  
  .main-nav a:hover {
    color: #007bff;
  }
  
  .header-right {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  
  .header-right img {
    width: 20px;
    height: auto;
  }
  
  .cart-icon {
    position: relative;
  }
  
  .cart-icon .cart-count {
    position: absolute;
    top: -5px;
    right: -10px;
    background-color: #ff0000;
    color: white;
    font-size: 12px;
    padding: 2px 6px;
    border-radius: 50%;
  }
  
  /* Slideshow Container */
  .slideshow-container {
    position: relative;
    max-width: 100%;
    margin: auto;
    overflow: hidden;
  }

  /* Slides */
  .slide {
    display: none; /* Oculta os slides inicialmente */
  }

  /* Fade Animation */
  .fade {
    animation: fadeEffect 1.5s ease-in-out;
  }

  @keyframes fadeEffect {
    from {
      opacity: 0.4;
    }
    to {
      opacity: 1;
    }
  }

  
  /* Navigation Dots */
  .dots-container {
    text-align: center;
    position: absolute;
    bottom: 10px;
    width: 100%;
  }
  
  .dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
  }
  
  .dot.active,
  .dot:hover {
    background-color: #717171;
  }
  
  /* Fade Animation */
  .fade {
    animation: fadeEffect 1.5s;
  }

  @keyframes fadeEffect {
    from { opacity: 0.4; }
    to { opacity: 1; }
  }



  /* Serviços Container */
.services-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 20px;
    background-color: #f9f9f9;
  }
  
  /* Serviços Container */
  .services-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 20px;
    background-color: #f9f9f9;
  }

  /* Cartão de Serviço */
  .service-card {
    background-color: white;
    width: 300px; /* Largura fixa do cartão */
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin: 10px;
  }

  .service-card img {
    width: 300px; /* Largura fixa */
    height: 300px; /* Altura fixa */
    object-fit: contain; /* Garante que a imagem inteira apareça sem cortes */
    background-color: #f0f0f0; /* Cor de fundo para o espaço vazio */
    border-bottom: 1px solid #ddd;
  }
  

  .service-card h3 {
    font-size: 18px;
    margin: 15px 0;
    color: #333;
  }

  .service-card .buttons {
    margin: 15px 0;
  }

  .service-card .btn {
    display: inline-block;
    padding: 10px 15px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
  }

  .service-card .btn:hover {
    background-color: #0056b3;
  }

  
  /* Seção de Vídeo */
  .video-section {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
  }

  .video-container {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .video-container iframe {
    width: 100%;
    height: 100%;
    display: block;
  }

  .video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    text-align: center;
    padding: 20px;
  }

  .video-overlay h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }

  .video-overlay p {
    font-size: 1.2rem;
    max-width: 600px;
  }

  /* Seção do Formulário */
  .quote-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    background-color: #f9f9f9;
  }

  .quote-container {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 1100px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    overflow: hidden;
  }

  /* Coluna da Imagem */
  .quote-image {
    flex: 1;
    display: flex;
  }

  .quote-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  /* Coluna do Formulário */
  .quote-form {
    flex: 1;
    padding: 40px;
  }

  .quote-form h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
  }

  .form-group {
    margin-bottom: 15px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
  }

  .form-group textarea {
    resize: none;
  }

  .submit-btn {
    display: inline-block;
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
  }

  .submit-btn:hover {
    background-color: #0056b3;
  }

  /* Botão de Envio Desabilitado */
  .submit-btn:disabled {
    background-color: #ccc;
    cursor: not-allowed;
  }

  .submit-btn {
    display: inline-block;
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
  }

  .submit-btn:hover:not(:disabled) {
    background-color: #0056b3;
  }



  .submit-btn {
    display: inline-block;
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s;
  }

  .submit-btn:hover:not(:disabled) {
    background-color: #0056b3;
  }

  
  /* Seção de Banner */
  .banner-section {
    position: relative;
    width: 100%;
    height: 500px; /* Altura fixa */
    overflow: hidden;
  }

  .banner-container {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Garante que a imagem se ajuste sem distorcer */
  }

  .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: rgba(0, 0, 0, 0.3); /* Fundo escuro transparente */
    color: white;
    padding: 20px;
  }

  .banner-overlay h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }

  .banner-overlay p {
    font-size: 1.2rem;
    margin-top: 0;
  }


/* Seção de Contatos - Fundo Branco e Texto Azul */
.contact-section {
    background-color: #ffffff; /* Fundo branco */
    padding: 40px 20px;
    text-align: center;
  }
  
  .contact-item h3 {
    color: #007bff; /* Azul para os títulos */
  }
  
  .contact-item p {
    color: #007bff; /* Azul para os parágrafos */
  }
  
  .contact-item a {
    color: #007bff; /* Azul para os links */
    text-decoration: none;
  }
  
  .contact-item a:hover {
    text-decoration: underline;
    color: #0056b3; /* Azul mais escuro no hover */
  }
  
  .contact-item img {
    width: 50px; /* Mantém o tamanho dos ícones */
    height: 50px;
    margin-bottom: 15px;
    filter: none; /* Garante que os ícones mantenham as cores originais */
  }
  
  /* Ajustes gerais para dispositivos móveis */
@media (max-width: 768px) {
  .quote-container {
    flex-direction: column; /* Organiza os elementos verticalmente */
  }

  .quote-image {
    height: 200px; /* Define uma altura para a imagem */
    flex: none;
  }

  .quote-image img {
    width: 100%; /* Imagem ocupa a largura total */
    height: 100%; /* Mantém altura ajustada */
    object-fit: cover; /* Evita distorção */
  }

  .quote-form {
    padding: 20px; /* Reduz o padding do formulário */
  }

  .quote-form h2 {
    font-size: 1.8rem; /* Reduz o tamanho do título */
  }

  .form-group input,
  .form-group textarea,
  .form-group button {
    font-size: 1rem; /* Ajusta o tamanho dos campos e botões */
    padding: 8px; /* Reduz padding */
  }

  .submit-btn {
    font-size: 1rem;
  }
}

  /* Ajustes para telas pequenas (celulares) */
  @media (max-width: 480px) {
    .quote-form h2 {
      font-size: 1.5rem; /* Título menor */
    }

    .form-group input,
    .form-group textarea,
    .form-group button {
      font-size: 0.9rem; /* Campos e botões menores */
      padding: 6px;
    }

    .quote-form {
      padding: 15px; /* Padding ainda menor */
    }

    .submit-btn {
      font-size: 0.9rem; /* Botão menor */
    }
  }

  /* Página do Artigo */
.article-page {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #f8f9fa;
  margin: 0;
  padding: 20px;
  box-sizing: border-box;
}


  
  