*{
    font-family: 'Poppins', sans-serif;

}


.banner-fullscreen {
            position: relative;
            width: 100%;
            height: calc(100vh - 80px);
            min-height: 600px;
            max-height: 900px;
            overflow: hidden;
            isolation: isolate;
        }

        .banner-slides {
            display: flex;
            width: 100%;
            height: 100%;
            transition: transform 0.6s ease-in-out;
            will-change: transform;
        }

        .slide {
            min-width: 100%;
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: 1fr auto;
            grid-template-areas: 
                "content image"
                "button image";
            align-items: center;
            position: relative;
            padding: 2rem 5%;
            gap: 3rem;
        }

        .slide:nth-child(even) {
            grid-template-areas: 
                "image content"
                "image button";
        }

        /* Gradiente de fundo */
        .slide::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(38, 103, 138, 0.9), rgba(244, 159, 182, 0.8));
            z-index: 1;
        }

        .slide:nth-child(even)::before {
            background: linear-gradient(135deg, rgba(244, 159, 182, 0.8), rgba(38, 103, 138, 0.9));
        }

        /* Conteúdo textual */
        .slide-content {
            grid-area: content;
            color: #ffffff;
            position: relative;
            z-index: 2;
            max-width: 100%;
            animation: fadeInUp 0.8s ease-out;
        }

        .slide:nth-child(even) .slide-content {
            text-align: right;
        }

        .slide-title {
            font-size: clamp(2rem, 4vw, 3.5rem);
            font-weight: 700;
            margin-bottom: 1rem;
            line-height: 1.2;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
        }

        .slide-desc {
            font-size: clamp(1rem, 1.5vw, 1.25rem);
            line-height: 1.6;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
            margin-bottom: 0;
        }

        /* Botão */
        .slide-btn-container {
            grid-area: button;
            position: relative;
            z-index: 2;
            align-self: start;
            margin-bottom:150px;
        }

        .slide:nth-child(even) .slide-btn-container {
            text-align: right;
        }

        .slide-btn {
            display: inline-block;
            background: #ffffff;
            color: #26678a;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            text-decoration: none;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            cursor: pointer;
            border: 2px solid transparent;
            font-size: clamp(0.85rem, 1.2vw, 1rem);
        }

        .slide-btn:hover,
        .slide-btn:focus {
            background: #f49fb6;
            color: #ffffff;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
            transform: translateY(-3px);
            border-color: #ffffff;
            outline: none;
        }

        /* Imagem */
        .slide-image {
            grid-area: image;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            z-index: 2;
            animation: fadeIn 0.8s ease-out;
        }

        .slide-image img {
            max-height: 70vh;
            max-width: 100%;
            width: auto;
            border-radius: 15px;
            border: 8px solid #ffffff;
            object-fit: contain;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        /* Navegação */
        .nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.9);
            color: #26678a;
            border: none;
            font-size: 1.2rem;
            cursor: pointer;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            user-select: none;
        }

        .nav-btn:hover,
        .nav-btn:focus {
            background: #f49fb6;
            color: #ffffff;
            transform: translateY(-50%) scale(1.1);
            outline: none;
        }

        #prevBtn {
            left: 25px;
        }

        #nextBtn {
            right: 25px;
        }

        .circular-nav {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 10;
        }

        .nav-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            padding: 0;
        }

        .nav-dot.active {
            background: #ffffff;
            transform: scale(1.3);
            box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
        }

        .nav-dot:hover,
        .nav-dot:focus {
            transform: scale(1.2);
            background: #ffffff;
            outline: none;
        }

        /* Animações */
        @keyframes fadeIn {
            from { opacity: 0; transform: scale(0.95); }
            to { opacity: 1; transform: scale(1); }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* RESPONSIVIDADE */
        @media (max-width: 1024px) {
            .slide {
                gap: 2rem;
                padding: 2rem 3%;
            }
            
            .slide-image img {
                max-height: 60vh;
            }
        }

        @media (max-width: 768px) {
            .banner-fullscreen {
                height: 130vh;
                min-height: 100vh;
                max-height: none;
                padding-top: 155px; 
                margin-bottom: -25px;
            }

            .slide {
                display: flex;
                flex-direction: column;
                padding: 2rem 1.5rem;
                gap: 1.5rem;
                justify-content: center;
                align-items: center;
                text-align: center;
                grid-template-areas: none;
                grid-template-columns: none;
                grid-template-rows: none;
            }
            .foto1{
                 background-image: url('../imagens/morango\ e\ nata\ foto.jpg');
                background-position: center;
                background-size: cover;
            }
            .foto2{
                 background-image: url('../imagens/cone-principal.jpg');
                background-position: center;
                background-size: cover;
            }
            .foto3{
                 background-image: url('../imagens/brownie-banner.jpg');
                background-position: center;
                background-size: cover;
            }
            .foto4{
                 background-image: url('../imagens/torta-banner.jpg');
                background-position: center;
                background-size: cover;
            }
            
            .slide-content {
                text-align: center;
                order: 1;
                color: #ffffff !important;
                position: relative;
                z-index: 2;
                width: 100%;
                min-height: auto;
                overflow: visible;
            }
            .slide::before {
        background: linear-gradient(135deg, rgba(38, 103, 138, 0.6), rgba(244, 159, 182, 0.4));
    }

    .slide:nth-child(even)::before {
        background: linear-gradient(135deg, rgba(244, 159, 182, 0.5), rgba(38, 103, 138, 0.5));
    }
            
            .slide:nth-child(even) .slide-content {
                text-align: center;
                order: 1;
            }
            
            .slide-title {
                font-size: clamp(2rem, 5vw, 2.5rem);
                margin-bottom: 1rem;
            }
            
            .slide-desc {
                font-size: clamp(1.1rem, 3vw, 1.1rem);
                margin-bottom: 0;
                line-height: 30px;
            }
            
            .slide-image {
                width: 1000px;
                order: 2;
            }
            .slide-image img {
              display: none;
            }
            
            
            .slide-btn-container {
                order: 3;
                text-align: center;
                width: 100%;
                margin-bottom: 2rem;
            }
            
            .slide:nth-child(even) .slide-btn-container {
                text-align: center;
                order: 3;
            }
            
            .slide-btn {
                padding: 0.8rem 2rem;
                font-size: 0.9rem;
            }
            
            .nav-btn {
                top: 60%;
                width: 40px;
                height: 40px;
                font-size: 1rem;
            }

            #prevBtn {
                left: 15px;
            }

            #nextBtn {
                right: 15px;
            }

            .circular-nav {
                bottom: 20px;
                gap: 10px;
            }

            .nav-dot {
                width: 10px;
                height: 10px;
            }
        }

        @media (max-width: 480px) {
            .slide {
                padding: 1.5rem 1rem;
                gap: 1rem;
            }

            .slide-image img {
                max-height: 60vh;
                max-width: 100%;
                border-width: 4px;
            }

            .slide-btn {
                padding: 0.7rem 1.5rem;
                font-size: 0.85rem;
            }
            
        }