 /* Estilo da fonte Inter */
        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');
        body {
            background-image: url('v870-tang-36.jpg'); /* Correto! */
            background-size: cover;
            background-repeat: no-repeat;
            background-position: center center;
            background-attachment: fixed;
            font-family: 'Inter', sans-serif;
            background-color: #f8f8f8; /* Cor de fundo clara para combinar com a imagem */
            margin: 0; /* Remove margem padrão do corpo */
            padding: 0; /* Remove padding padrão do corpo */
            overflow-x: hidden; /* Evita rolagem horizontal */
        }
        .container {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            padding: 0; /* Remove padding do container para maximizar a largura dos filhos */
        }
        .header {
            text-align: center;
            padding: 20px; /* Adiciona padding ao cabeçalho para espaçamento interno */
            font-size: 1.5rem;
            font-weight: 600;
            color: #333;
            letter-spacing: 0.2em;
            text-transform: uppercase;
            margin-bottom: 20px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
            width: 100%; /* Garante que o cabeçalho ocupe toda a largura */
            box-sizing: border-box; /* Inclui padding na largura total */
        }
        .image-gallery {
            position: relative;
            width: 100%; /* Garante que ocupe 100% da largura disponível */
            max-width: 900px; /* Largura máxima para a galeria de imagens em ecrãs maiores */
            height: auto; /* Altura se ajusta automaticamente ao conteúdo */
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 0 10px; /* Pequeno padding horizontal para evitar que a imagem toque as bordas */
            box-sizing: border-box; /* Inclui padding na largura total */
            /* Removidas as propriedades min-height e max-height para maior flexibilidade */
            /* Removido overflow: hidden para evitar cortes na imagem */
        }
        .gallery-image {
            width: 100%; /* A imagem preencherá 100% da largura do seu contentor */
            height: auto; /* Mantém a proporção da imagem */
            object-fit: contain; /* Garante que a imagem inteira seja visível, sem ser cortada */
            border-radius: 12px; /* Cantos arredondados */
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Sombra suave */
        }
        .nav-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(255, 255, 255, 0.7);
            border: 1px solid #ccc;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.5rem;
            color: #333;
            cursor: pointer;
            transition: background-color 0.3s ease, color 0.3s ease;
            user-select: none;
            z-index: 10;
        }
        .nav-arrow:hover {
            background-color: rgba(255, 255, 255, 0.9);
            color: #000;
        }
        .nav-arrow.left {
            left: 10px;
        }
        .nav-arrow.right {
            right: 10px;
        }

        /* Responsividade */
        @media (min-width: 768px) {
            .header {
                font-size: 2.2rem;
            }
            .nav-arrow {
                width: 50px;
                height: 50px;
                font-size: 2rem;
            }
            .nav-arrow.left {
                left: -60px;
            }
            .nav-arrow.right {
                right: -60px;
            }
            .image-gallery {
                padding: 0 70px; /* Espaço para as setas laterais em telas maiores */
            }
        }
        @media (max-width: 767px) {
            .nav-arrow {
                width: 30px;
                height: 30px;
                font-size: 1.2rem;
            }
            .nav-arrow.left {
                left: 5px;
            }
            .nav-arrow.right {
                right: 5px;
            }
        }

        .whatsapp-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 12px;
            border-radius: 8px;
            background-color: #25D366;
            color: white;
            text-decoration: none;
            font-weight: bold;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            transition: transform 0.2s ease;
            font-size: 0.9rem;
        }

        .whatsapp-btn:hover {
            transform: scale(1.05);
        }

        .health-tip-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 12px;
            border-radius: 8px;
            background-color: #007bff;
            color: white;
            text-decoration: none;
            font-weight: bold;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            transition: transform 0.2s ease;
            font-size: 0.9rem;
            cursor: pointer;
            border: none;
        }

        .health-tip-btn:hover {
            transform: scale(1.05);
            background-color: #0056b3;
        }

        .health-tip-display {
            margin-top: 20px;
            padding: 15px;
            background-color: rgba(255, 255, 255, 0.8);
            border-radius: 8px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            color: #333;
            font-size: 1rem;
            text-align: center;
            max-width: 600px;
            width: 100%;
            min-height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease-in-out;
            word-wrap: break-word;
        }
