/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
  }
  
  body {
    background-color: #bfdbf8;
    color: #333;
    line-height: 1.6;
  }
  
  header {
    background: #111;
    padding: 1rem;
    color: white;
    position: relative;
  }
  
  nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
  }
  
  .menu-toggle span {
    height: 3px;
    width: 25px;
    background: white;
    margin: 4px 0;
    transition: 0.3s;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 1rem;
  }
  
  .nav-links a {
    text-decoration: none;
    color: white;
    transition: color 0.3s;
  }
  
  .nav-links a:hover {
    color: #ff6600;
  }
  
  .logo {
    font-size: 1.5rem;
    font-weight: bold;
  }
  
  /* Hero Section */
  .hero {
    background: url('background-hero.png') center/cover no-repeat;
    padding: 6rem 2rem;
    text-align: center;
    color: white;
    position: relative;
  }
  
  .hero-content {
    background-color: rgba(0, 0, 0, 0.4);
    padding: 2rem;
    border-radius: 12px;
    display: inline-block;
    animation: fadeIn 2s ease;
  }
  
  .animated-text {
    opacity: 0;
    animation: slideUp 1s ease forwards;
  }
  
  .animated-text:nth-child(2) {
    animation-delay: 0.5s;
  }
  
  @keyframes slideUp {
    0% { transform: translateY(30px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
  }
  
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }
  
  /* Produits + Aside */
  .produits-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
  }
  
  .produits h2 {
    margin-bottom: 1rem;
  }
  
  .product-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
  }
  
  .product-card {
    background-color: #f9f9f9;
    padding: 1rem;
    border-radius: 8px;
    width: 250px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
  }
  
  .product-card img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    margin-bottom: 0.5rem;
  }
  
  .product-card button {
    background: #ff6600;
    border: none;
    padding: 0.5rem 1rem;
    color: white;
    cursor: pointer;
    margin-top: 0.5rem;
    border-radius: 5px;
    transition: background 0.3s;
  }
  
  .product-card button:hover {
    background: #e05500;
  }
  
  /* Novo bloco de layout com aside + contact lado a lado */
  .contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 2rem;
    justify-content: center;
    align-items: flex-start;
  }
  
  .contact-wrapper .contact,
  .contact-wrapper .info-flottante {
    flex: 1 1 300px;
    max-width: 500px;
  }
  
  .info-flottante {
    background-color: white;
    padding: 1rem;
    border-left: 4px solid #000;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  }
  
  /* Galerie */
  .gallery {
    padding: 2rem;
    text-align: center;
  }
  
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
  }
  
  .gallery-grid img {
    width: 100%;
    border-radius: 8px;
  }
  
  /* Contact */
  .contact {
    background: #f4f4f4;
    padding: 2rem;
    border-radius: 8px;
  }
  
  .contact form {
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .contact input,
  .contact textarea {
    padding: 0.75rem;
    border-radius: 4px;
    border: 1px solid #ccc;
    width: 100%;
  }
  
  .contact button {
    background: #111;
    color: white;
    border: none;
    padding: 0.75rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .contact button:hover {
    background: #333;
  }
  
  /* Footer */
  footer {
    text-align: center;
    padding: 1rem;
    background: #111;
    color: white;
  }
  
  /* Popup */
  .popup {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
  }
  
  .popup.hidden {
    display: none;
  }
  
  .popup-content {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    position: relative;
    max-width: 400px;
    text-align: center;
  }
  
  .popup .close {
    position: absolute;
    top: 0.5rem;
    right: 0.75rem;
    cursor: pointer;
    font-size: 1.5rem;
    font-weight: bold;
  }
  
  /* Responsivo */
  @media (max-width: 768px) {
    .produits-wrapper,
    .contact-wrapper {
      flex-direction: column;
      align-items: center;
    }
  
    .info-flottante {
      border-left: none;
      border-top: 4px solid #000;
    }
  
    .product-card {
      width: 100%;
      max-width: 400px;
    }
  
    .menu-toggle {
      display: flex;
    }
  
    .nav-links {
      display: none;
      width: 100%;
      flex-direction: column;
      gap: 0;
      background-color: #111;
    }
  
    .nav-links.active {
      display: flex;
    }
  
    .nav-links a {
      padding: 1rem;
      border-top: 1px solid #333;
    }
  }
  