* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    html {
      scroll-behavior: smooth;
    }


    :root {
      --background: #0f0f0f;
      --secondary: #171717;
      --gold: #c6a46b;
      --text: #f5f5f5;
      --text-secondary: #c5c5c5;
      --border: rgba(255,255,255,.08);
    }

    body {
      background: var(--background);
      color: var(--text);
      font-family: 'Inter', sans-serif;
      overflow-x: hidden;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    .container {
      width: 90%;
      max-width: 1300px;
      margin: 0 auto;
    }

    header {
      position: fixed;
      width: 100%;
      top: 0;
      left: 0;
      z-index: 1000;
      backdrop-filter: blur(14px);
      background: rgba(10,10,10,.45);
      border-bottom: 1px solid rgba(255,255,255,.06);
    }

    .navbar {
      height: 85px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo {
      font-family: 'Playfair Display', serif;
      font-size: 2rem;
      letter-spacing: 2px;
      color: var(--gold);
      font-weight: 700;
    }

    nav {
      display: flex;
      gap: 2rem;
    }

    nav a {
      font-size: .95rem;
      position: relative;
      transition: .3s;
    }

    nav a::after {
      content: '';
      position: absolute;
      bottom: -6px;
      left: 0;
      width: 0;
      height: 1px;
      background: var(--gold);
      transition: .3s;
    }

    nav a:hover::after {
      width: 100%;
    }

    .hero {
      height: 100vh;
      position: relative;
      display: flex;
      align-items: center;
      background-color: #0b0b0b;
    }

    .hero-content {
      max-width: 720px;
    }

    .hero span {
      color: var(--gold);
      letter-spacing: 4px;
      font-size: .9rem;
      text-transform: uppercase;
    }

    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: 5rem;
      line-height: 1.05;
      margin: 1rem 0 1.5rem;
    }

    .hero p {
      color: var(--text-secondary);
      line-height: 1.8;
      font-size: 1.05rem;
      max-width: 620px;
    }

    .buttons {
      margin-top: 2rem;
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .btn {
      padding: 14px 28px;
      border-radius: 999px;
      font-size: .95rem;
      transition: .3s ease;
      border: 1px solid transparent;
    }

    .btn-primary {
      background: var(--gold);
      color: #111;
      font-weight: 600;
    }

    .btn-primary:hover {
      transform: translateY(-2px);
    }

    .btn-secondary {
      border: 1px solid rgba(255,255,255,.2);
      color: white;
    }

    .btn-secondary:hover {
      background: rgba(255,255,255,.06);
    }

    section {
      padding: 120px 0;
    }

    .section-title {
      text-align: center;
      margin-bottom: 70px;
    }

    .section-title span {
      color: var(--gold);
      letter-spacing: 3px;
      text-transform: uppercase;
      font-size: .85rem;
    }

    .section-title h2 {
      font-size: 3rem;
      margin-top: 1rem;
      font-family: 'Playfair Display', serif;
    }

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

    .card {
      background: var(--secondary);
      border: 1px solid var(--border);
      overflow: hidden;
      transition: .4s ease;
    }

    .card:hover {
      transform: translateY(-8px);
      border-color: rgba(198,164,107,.35);
    }

    /* Garante que botões que envolvem imagens ocupem todo o espaço */
    .card button {
      width: 100%;
      background: none;
      border: none;
      padding: 0;
      cursor: pointer;
      display: block;
    }

    .card img {
      width: 100%;
      height: 360px;
      object-fit: cover; /* Preenche o espaço mantendo a proporção */
      object-position: center; /* Centraliza o conteúdo da imagem */
      display: block;
    }

    .card-content {
      padding: 2rem;
    }

    .card-content h3 {
      font-size: 1.5rem;
      margin-bottom: 1rem;
      font-family: 'Playfair Display', serif;
    }

    .card-content p {
      color: var(--text-secondary);
      line-height: 1.7;
    }

    .showcase {
      background: #141414;
    }

    .showcase-wrapper {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1.5rem;
    }

    .showcase-wrapper img {
      width: 100%;
      height: 420px;
      object-fit: cover;
      transition: .4s;
    }

    .showcase-wrapper img:hover {
      transform: scale(1.02);
    }

    .cta {
      text-align: center;
      background-color: #0b0b0b;
    }

    .cta h2 {
      font-size: 3.2rem;
      font-family: 'Playfair Display', serif;
      max-width: 800px;
      margin: 0 auto 1.5rem;
    }

    .cta p {
      max-width: 700px;
      margin: 0 auto;
      line-height: 1.8;
      color: var(--text-secondary);
    }

    footer {
      border-top: 1px solid rgba(255,255,255,.08);
      padding: 40px 0;
      background-color: #0b0b0b;
    }

    .footer-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 2rem;
      flex-wrap: wrap;
    }

    .social {
      display: flex;
      gap: 1rem;
    }

    .social a {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      border: 1px solid rgba(255,255,255,.12);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: .3s;
    }

    .social a:hover {
      background: var(--gold);
      color: #111;
    }

    /* Mobile Menu Styles */
    .menu-btn {
      display: none;
      color: var(--gold);
      font-size: 26px;
      cursor: pointer;
      transition: 0.3s;
    }

    .mobile-menu {
      position: fixed;
      top: 0;
      right: -100%;
      width: 100%;
      height: 100vh;
      background: rgba(10, 10, 10, 0.98);
      backdrop-filter: blur(15px);
      z-index: 10000;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      transition: 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    }

    .mobile-menu.active {
      right: 0;
    }

    .mobile-menu .close-btn {
      position: absolute;
      top: 30px;
      right: 7%;
      color: var(--gold);
      font-size: 35px;
      cursor: pointer;
    }

    .mobile-nav-links {
      display: flex;
      flex-direction: column;
      gap: 30px;
      text-align: center;
    }

    .mobile-nav-links a {
      color: var(--text);
      text-decoration: none;
      font-size: 24px;
      font-weight: 500;
      transition: 0.3s;
      font-family: 'Playfair Display', serif;
    }

    .mobile-nav-links a:hover {
      color: var(--gold);
    }

    /* Estilo para o botão "Voltar" na seção Hero */
    .hero-content .back-to-portfolio-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--text-secondary);
      text-decoration: none;
      font-size: 1rem;
      font-weight: 500;
      transition: 0.3s;
      padding-top: 60px;
      margin-bottom: 15px; /* Espaçamento entre o botão e o título */
    }
    .hero-content .back-to-portfolio-btn:hover {
      color: var(--gold);
      transform: translateX(-5px);
    }
    @media(max-width: 900px) {
      nav {
        display: none;
      }

      .menu-btn {
        display: block;
      }

      .hero h1 {
        font-size: 3.5rem;
      }

      .section-title h2,
      .cta h2 {
        font-size: 2.4rem;
      }
    }

    @media(max-width: 600px) {
      .hero h1 {
        font-size: 2.7rem;
      }

      .buttons {
        flex-direction: column;
      }

      .btn {
        width: 100%;
        text-align: center;
      }
    }

    .whatsapp-btn{
        background:#25d366;
        color:#fff;
        text-decoration:none;
        padding:12px 20px;
        border-radius:8px;
        display:flex;
        align-items:center;
        justify-content: center;
        gap:8px;
        transition:.3s;
        font-size:14px;
        font-weight:600;
    }

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

    /* Estilização do Modal de Galeria */
    .modal {
        display: none;
        position: fixed;
        inset: 0;
        z-index: 2000;
        align-items: center;
        justify-content: center;
        padding: 20px;
    }

    .adega-modal-overlay {
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.92);
        backdrop-filter: blur(10px);
    }

    .adega-modal-content {
        position: relative;
        background: #fff;
        width: 100%;
        max-width: 1100px;
        max-height: 100vh;
        border-radius: 20px;
        padding: 40px;
        z-index: 2001;
        display: flex;
        flex-direction: column;
        box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    }

    .close-modal {
        position: absolute;
        top: 20px;
        left: 20px;
        background: none;
        border: none;
        font-size: 18px;
        font-weight: 600;
        color: #333;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 10px;
        transition: 0.3s;
        z-index: 10;
    }

    .close-modal:hover {
        color: var(--gold);
    }

    .adega-main-image {
        width: 100%;
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 0;
        overflow: hidden; /* Garante que a imagem não saia do container ao ampliar */
    }

    .swiper-img {
        max-width: 100%;
        max-height: 75vh;
        object-fit: contain;
        border-radius: 10px;
        transition: transform 0.3s ease, cursor 0.2s;
        cursor: zoom-in;
    }

    /* Estilização dos Controles de Zoom */
    .zoom-controls {
        display: flex;
        justify-content: center;
        gap: 1rem;
        margin-top: 15px;
    }

    .zoom-btn {
        background: #f8f8f8;
        border: 1px solid #ddd;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: 0.3s;
        color: #333;
        font-size: 14px;
    }

    .zoom-btn:hover {
        background: var(--gold);
        color: #fff;
        border-color: var(--gold);
        transform: scale(1.1);
    }

    @media (max-width: 768px) {
        .adega-modal-content {
            padding: 60px 20px 20px;
            width: 95%;
        }
        .close-modal {
            top: 15px;
            left: 20px;
        }
    }
