/* Reset e estilos gerais*/
    html {
      box-sizing: border-box;
    }
    
    *, *:before, *:after { 
      box-sizing: inherit; 
    }
    
    body {
      font-family: 'Archivo Narrow', Arial, sans-serif;
      background-color: #e6f2ff;
      color: #333;
      line-height: 1.6;
      margin: 0;
      padding: 0;
    }
    
    header {
      background-color: #3399ff;
      color: white;
      padding: 2rem;
      text-align: center;
    }
    
    header h1 {
      font-size: 2.5rem;
      margin-bottom: 0.5rem;
    }
    
    header p {
      font-size: 1.2rem;
      opacity: 0.9;
    }
    
    main {
      max-width: 1200px;
      margin: 0 auto;
      padding: 2rem;
    }
    
    section {
      margin-bottom: 3rem;
      padding: 2rem;
      background: white;
      border-radius: 8px;
      box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    }
    
    h2 {
      color: #0a5c75;
      border-bottom: 2px solid #0b8cb4;
      padding-bottom: 0.5rem;
      margin-bottom: 1.5rem;
    }
    
    /* Seção Sobre - Mantendo seu estilo com melhorias */
    .sobre {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 2rem;
    }
    
    .sobre img {
      max-width: 100%;
      width: 300px;
      border-radius: 10px;
    }
    
    /* Galeria e Carrossel - Integrando suas alterações com melhorias */
    .carousel-3 {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      position: relative;
      margin: 2rem 0;
    }
    
    .carousel-container {
      display: flex;
      gap: 1rem;
      align-items: center;
    }
    
    .carousel-img {
      width: 150px;
      height: 150px;
      object-fit: cover;
      opacity: 0.6;
      transition: transform 0.4s, opacity 0.4s;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }
    
    .carousel-img.destaque {
      width: 250px;
      height: 250px;
      opacity: 1;
      transform: scale(1.1);
      z-index: 2;
    }
    
    .btn {
      background-color: #0a5c75;
      color: white;
      border: none;
      border-radius: 50%;
      width: 40px;
      height: 40px;
      font-size: 1.2rem;
      cursor: pointer;
      transition: background-color 0.3s;
    }
    
    .btn:hover {
      background-color: #0b8cb4;
    }
    
    /* Tabela de Produtos - Mantendo seu estilo com melhorias */
    #produtos {
      overflow-x: auto;
    }
    
    table {
      width: 100%;
      border-collapse: collapse;
      margin: 1rem 0;
    }
    
    th, td {
      padding: 0.75rem;
      text-align: left;
      border: 1px solid black;
    }
    
    th {
      background-color: #3399ff;
      color: white;
      text-align: center;
    }
    
    tr {
      background-color: white;
    }
    
    td {
      text-align: center;
      vertical-align: center;
    }
    
    .nome {
      text-align: left;
      font-weight: bold;
      color: #0a5c75;
    }
    
    /* Seção de Contato - Mantendo seu estilo com melhorias */
    .contato {
      background-color: #cce6ff;
      padding: 1.5rem;
      border-radius: 8px;
      margin-top: 2rem;
    }
    
    .contato p {
      display: flex;
      align-items: center;
      margin: 1rem 0;
    }
    
    .contato img {
      width: 24px;
      height: 24px;
      margin-right: 10px;
    }
    
    /* Rodapé - Mantendo seu estilo */
    footer {
      text-align: center;
      padding: 1rem;
      background-color: #3399ff;
      color: white;
      margin-top: 2rem;
    }
    
    /* Responsividade - Integrando suas alterações com melhorias */
    @media (max-width: 768px) {
      .sobre {
        flex-direction: column;
        text-align: center;
      }
      
      .btn {
        font-size: 1.5rem;
        padding: 0.3rem 0.8rem;
      }
      
      #prev { 
        position: absolute;
        left: -40px; 
      }
      
      #next { 
        position: absolute;
        right: -40px; 
      }
      
      /* Estilo mobile para o carrossel (uma imagem) */
      .carousel-container {
        flex-direction: column;
        gap: 1rem;
      }
      
      .carousel-img {
        display: none;
        width: 100%;
        max-width: 300px;
        opacity: 1;
        transform: none;
      }
      
      .carousel-img.destaque {
        display: block;
        width: 100%;
        max-width: 300px;
        transform: none;
      }
    }
    
    /* Versão desktop (três imagens) */
    @media (min-width: 769px) {
      .carousel-container {
        flex-direction: row;
        justify-content: center;
      }
      
      .carousel-img {
        display: block;
        width: 150px;
        opacity: 0.6;
      }
      
      .carousel-img.destaque {
        width: 250px;
        opacity: 1;
        transform: scale(1.1);
      }
      
      #prev, #next {
        position: static;
      }
    }
