        /* =========================
        ESTILO GLOBAL BÁSICO
        ========================= */
        body {
            margin: 0;                     /* Remove margem padrão do navegador */
            padding: 0;                    /* Remove espaçamento interno padrão */
            
            color: rgb(11, 11, 11);         /* Cor padrão do texto */
            
            font-family: sans-serif;       /* Fonte padrão do site */
        }

        /* =========================
        HERO SECTION (IMAGEM DE FUNDO)
        ========================= */
        .hero-section {

            /* Imagem de fundo */
            background-image: url('./ImageGallery/DSC01225.jpg');
            background-size: cover;        /* Preenche toda a área */
            background-position: center;   /* Centraliza a imagem */
            background-repeat: no-repeat;  /* Evita repetição */

            /* Altura total da tela */
            height: 100vh;

            /* Layout interno */
            display: flex;
            flex-direction: column;        /* Organiza em coluna */
            justify-content: space-between; /* Header no topo / conteúdo abaixo */
        }

        /* NAVEGAÇÃO SUPERIOR */
        .main-header {
            position: fixed;      /* deixa sempre fixa */
            top:0;
            left:0;
            width:100%;
            display:flex;
            justify-content:space-between;
            align-items:center;
            backdrop-filter: blur(8px);   /* efeito vidro (moderno) */
            z-index: 9999;       /* garante que fique acima da imagem */
            padding: 20px 40px;
            /* Para manter a navegação visível no topo ao rolar */
            box-sizing: border-box;
            background-color: rgba(0, 0, 0, 0.4); /* Fundo semi-transparente */
        }
        /* =========================
        LOGO
        ========================= */
        .logo {
            font-size: 24px;     /* Tamanho do texto */
            font-weight: bold;   /* Deixa em negrito */
        }

        /* =========================
        MENU DE NAVEGAÇÃO
        ========================= */
        nav ul {
            list-style: none;    /* Remove as bolinhas da lista */
            display: flex;       /* Deixa os itens na horizontal */
            gap: 25px;           /* Espaço entre os links */
            margin: 0;           /* Remove margem padrão */
            padding: 0;          /* Remove espaçamento interno padrão */
        }
        /* =========================
        LINKS DO MENU
        ========================= */
        nav a {
            color: white;            /* Cor do texto */
            text-decoration: none;   /* Remove sublinhado */
            font-size: 14px;         /* Tamanho do texto */
        }

        /* =========================
        BOTÃO RESERVA
        ========================= */
        .btn-reserva {
            background-color: rgb(215, 226, 214); /* Cor de fundo */
            color: black;                        /* Cor do texto */
            padding: 10px 20px;                  /* Espaçamento interno */
            border-radius: 5px;                  /* Cantos arredondados */
            font-weight: bold;
            font-size: 14px;
            text-decoration: none;

            display: flex;                       /* Permite centralização */
            align-items: center;                 /* Centraliza verticalmente */
            justify-content: center;             /* Centraliza horizontalmente */
            text-align: center;
        }

        /* =========================
        CONTEÚDO CENTRAL (HERO)
        ========================= */
        .main-content {
            text-align: center;

            /* Evita que fique escondido atrás do header fixo */
            margin-top: 150px;

            flex-grow: 1;              /* Ocupa o espaço restante */
            display: flex;
            flex-direction: column;
            justify-content: center;   /* Centraliza verticalmente */
        }

        /* TÍTULO PRINCIPAL */
        .main-content h1 {
            font-size: 80px;           /* Nome principal (ex: NINO) */
            margin: 0;
            color: rgb(253, 252, 252);
            font-family: serif;        /* Estilo elegante */
        }

        /* SUBTÍTULO */
        .main-content p {
            font-size: 24px;
            font-family: cursive;
            margin-top: 10px;
        }

        /* =========================
        BOTÃO FLUTUANTE (WHATSAPP)
        ========================= */
        .whatsapp-float {
            position: fixed;        /* Fica fixo na tela */
            bottom: 20px;           /* Distância da parte inferior */
            right: 20px;            /* Distância da direita */

            display: flex;
            align-items: center;

            background-color: #1fc00a; /* Verde WhatsApp */
            color: white;

            padding: 10px 15px;
            border-radius: 50px;    /* Formato arredondado */
            font-size: 14px;
            text-decoration: none;
        }
        .containervinho {
            display: flex;              /* ativa flexbox */
            justify-content: center;    /* centraliza horizontal */
            align-items: center;        /* centraliza vertical */
            height: 200px;
            text-align: center;         /* defina altura se quiser */
            padding: 0px 0px;
        }

        /* =========================
        COLUNA ESQUERDA
        ========================= */
        .left-columnvinho {
            flex: 1;
            padding: 20px;
            max-width: 500px;
        }

        /* =========================
        COLUNA DIREITA
        ========================= */
        .right-columnvinho {
            flex: 1;
            padding: 0; /* corrigido (00px → 0) */
            background-color: #000000;

            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* =========================
        TÍTULO
        ========================= */
        .titlevinho {
            text-align: center;
            color: #060606;
        }

        /* =========================
        TEXTO
        ========================= */
        .textvinho {
            font-size: 14px;
            line-height: 1.5;
            color: #f9f8f8;
            margin-bottom: 20px;
        }

        /* =========================
        DIVISOR
        ========================= */
        .divider {
            border-bottom: 1px solid #ccc;
            width: 100%;
        }
        .bottle-imagevinho {
            max-width: 100%;
            height: auto;
            /* Placeholder for the image in the right column */
            background-color: #f0f0f0; 
            min-height: 400px; 
        }


        /* ========================================================================================================

         /* CSS reset and base styles for the footer */
        .footer-container {
            background-color: #4a5d4e; /* A dark green color similar to the image */
            color: #e0e0e0;
            font-family: sans-serif;
            padding: 40px 20px 20px;
            display: flex;
            flex-direction: column;
        }

        .footer-content {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            margin-bottom: 50px; /* Space above the copyright text */
        }

        .footer-section {
            margin: 15px;
            /* Ensure alignment for different sections */
            min-width: 150px; 
        }

        .footer-logo {
            font-size: 32px;
            font-weight: bold;
            letter-spacing: 2px;
            
            margin-bottom: 10px;
        }

        .logo-accent {
            display: flex;
            margin-top: 5px;
        }

        .logo-accent-item {
            width: 20px;
            height: 3px;
            margin-right: 3px;
        }

        .green { background-color: #02f493; }
        .white { background-color: #ffffff; }
        .red { background-color: #d62246; }

        .footer-heading {
            font-size: 14px;
            font-weight: bold;
            margin-bottom: 10px;
            text-transform: uppercase;
        }

        .footer-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-list li a {
            color: #e0e0e0;
            text-decoration: none;
            font-size: 14px;
            line-height: 1.5;
            display: block;
            padding: 3px 0;
        }

        .footer-list li a:hover {
            text-decoration: underline;
        }

        .footer-social {
            display: flex;
            align-items: center;
            font-size: 20px;
        }

        .footer-social::before {
            content: '@';
            margin-right: 5px;
            font-size: 16px;
        }

        /* The large text in the background */
        .footer-background-textveneto {
            font-size: 80px; /* Adjust as needed for screen size */           
            text-align: center;
            position: absolute;
            bottom: 60px; /* Position above the copyright text */
            left: 0;
            right: 0;
            pointer-events: none; /* Prevents text from blocking interactions */
            white-space: nowrap;
            overflow: hidden;
            opacity: 0.3;
        }

        .footer-copyright {
            text-align: center;
            font-size: 12px;
            color: rgba(255, 255, 255, 0.6);
            margin-top: auto; /* Push to the bottom */
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .verde {
            background-color: #497c54; 
            color: #497c54; 
        }

        .colorir {
            background-color: rgba(201, 210, 198, 0.7)
        }
       

