        html, body {
            margin: 0;
            padding: 0;
            height: 100%;
            overflow: hidden;
            font-family: 'Arial', sans-serif;
        }
        
        .fullscreen-gallery {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }
        
        .gallery {
            position: relative;
            width: 100%;
            height: 100%;
            background-color: rgba(255, 255, 255, 0.9);
            box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.3);
        }
        
        .gallery-slider {
            display: flex;
            height: 100%;
            transition: transform 0.5s ease;
        }
        
        .gallery-slide {
            min-width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0.85; /* Transparência na imagem */
        }
        
        .item1
        {
            background-image: url('../assets/img/img1.jpeg')
        }
          .item2
        {
            background-image: url('../assets/img/img2.jpeg')

        }

        .item3
        {
            background-image: url('../assets/img/img3.jpeg')

        }
        .item4
        {
            background-image: url('../assets/img/img4.jpeg')

        }
        .item5
        {
            background-image: url('../assets/img/img5.jpeg')

        }
        .content-center {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            z-index: 30;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            width: 90%;
            max-width: 600px;
        }
            
        .site-subtitle {
            font-size: 1.5rem;
            color: white;
            text-shadow: 0.5px 0.5px 1px rgba(0, 0, 0, 0.8);
            margin-bottom: 1.5rem;
        }
        
        .social-icons {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
        }
     
        
        
        .social-icons a {
            align-items: center;
            justify-content: center;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 1.5rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
        }
        
        .whatsapp-icon {
            display: inline-flex;
            background-color: #25D366;
            color: white;
        }
        
        .instagram-icon {
            display: inline-flex;
            background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
            color: white;
        }
        
        .phone-icon {
            background-color: #0088cc;
            color: white;
            display: none ; /* Escondido por padrão */
        }
        .social
        {
            display: inline-block;
            color: white;
            text-shadow: 0.5px 0.5px 0.5px rgba(0, 0, 0, 0.8);
        }

        .social:nth-of-type(3)
        {
            display: none;
        }
        .social p
        {
            font-size: 1rem;
        }
      
        /* Mostrar ícone de telefone apenas em telas de celular */
        @media only screen and (max-width: 768px) {
            .phone-icon {
                display: inline-flex;
            }
            .social:nth-of-type(3)
            {
                display: inline-block;
            }
            .gallery-slide
            {
                background-position: center center;
                background-size: cover;

            }
        }
        
        .social-icons a:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
        }
     
        
        
        .gallery-controls {
            display: flex;
            justify-content: space-between;
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            transform: translateY(-50%);
            padding: 0 2rem;
            z-index: 10;
        }
        
        .gallery-btn {
            background-color: rgba(0, 0, 0, 0.6);
            color: white;
            border: none;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .gallery-btn:hover {
            background-color: rgba(0, 0, 0, 0.8);
            transform: scale(1.1);
        }
        
        .gallery-indicators {
            position: absolute;
            bottom: 2rem;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            z-index: 10;
        }
        
        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .indicator.active {
            background-color: white;
            transform: scale(1.2);
        }
        
        /* Overlay escuro para melhor contraste com o texto */
        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.4);
            z-index: 5;
        }

        .site-logo
        {
            margin-bottom: 15px;
        }
