	
        body {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
		
		.rotate:hover
{
        -webkit-transform: rotateZ(-10deg);
        -ms-transform: rotateZ(-10deg);
        transform: rotateZ(-10deg);
}
.grow:hover
{
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1);
}

.aumenta img:hover {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.linha {
  display: table;
  width: 100%;
}
.coluna {
  display: table-cell;
  vertical-align: middle;

}


        html, body {
            width: 100%;
            max-width: 100%;
            overflow-x: hidden;
			color:#FFF;
            background-color: #000; /* Mesma cor do banner para evitar contraste */
        }

        body {
            font-family: "Arimo", sans-serif;
            font-weight: 500;
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

#logo {
    border-radius: 20px !important; /* Força o arredondamento */
    overflow: hidden; /* Garante que a imagem respeite a borda */
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3); /* Sombra opcional pra destacar */
    transition: all 0.3s ease;
}

#logo:hover {
    border-radius: 30px !important; /* Efeito legal no hover */
    transform: scale(1.02);
}


/* Versão simplificada - apenas substitua as alturas fixas por estas: */

.banner-container,
.slides {
    width: 100%;
    height: 650px; /* Desktop */
}

/* Tablet */
@media screen and (max-width: 1024px) {
    .banner-container,
    .slides {
        height: 450px;
    }
}

/* Celular */
@media screen and (max-width: 768px) {
    .banner-container,
    .slides {
        height: 350px;
    }
}

/* Celular pequeno */
@media screen and (max-width: 480px) {
    .banner-container,
    .slides {
        height: 280px;
    }
}

        @media screen and (max-width: 480px) {
            .slides {
                min-height: 200px;
                max-height: 80vh;
            }
        }

        /* Restante do CSS permanece IGUAL ao anterior */
        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .slide.active {
            opacity: 1;
            visibility: visible;
        }

        .slide::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.3) 100%);
            z-index: 1;
        }

        .slide-content {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: #FFF;
            z-index: 2;
            width: 90%;
            max-width: 1200px;
            padding: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
            animation: fadeInUp 1s ease-out;
        }

        .primary-text {
            font-size: clamp(1.5rem, 5vw, 3.5rem);
            font-weight: 700;
            margin-bottom: 0.5rem;
            letter-spacing: -0.02em;
            line-height: 1.2;
        }

        .secondary-text {
            font-size: clamp(1rem, 3vw, 1.8rem);
            font-weight: 500;
            opacity: 0.95;
            line-height: 1.4;
        }

        /* Botões de navegação */
        .nav-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: rgba(255,255,255,0.2);
            border: 2px solid rgba(255,255,255,0.5);
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            z-index: 10;
            transition: all 0.3s ease;
            backdrop-filter: blur(5px);
        }

        .nav-button:hover {
            background: rgba(255,255,255,0.3);
            border-color: white;
            transform: translateY(-50%) scale(1.1);
        }

        .nav-button.prev {
            left: 20px;
        }

        .nav-button.next {
            right: 20px;
        }

        /* Indicadores */
        .indicators {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 10;
            flex-wrap: wrap;
            justify-content: center;
            padding: 0 10px;
        }

        .indicator {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .indicator.active {
            background: white;
            transform: scale(1.2);
            border-color: rgba(255,255,255,0.3);
        }

        .indicator:hover {
            background: white;
            transform: scale(1.1);
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translate(-50%, -30%);
            }
            to {
                opacity: 1;
                transform: translate(-50%, -50%);
            }
        }

        /* Media Queries para ajustes finos */
        @media screen and (max-width: 768px) {
			
			   .primary-text {
				   margin: 0 auto;
            text-align: center;
			width: 80%;
        }

        .secondary-text {
				   margin: 0 auto;
            text-align: center;
			width: 80%;
        }
			
            .nav-button {
                width: 40px;
                height: 40px;
                font-size: 18px;
            }
            .nav-button.prev {
                left: 10px;
            }
            .nav-button.next {
                right: 10px;
            }
            .indicators {
                bottom: 15px;
                gap: 8px;
            }
            .indicator {
                width: 10px;
                height: 10px;
            }
        }

        @media screen and (max-width: 480px) {
            .nav-button {
                width: 35px;
                height: 35px;
                font-size: 16px;
            }
            .indicators {
                bottom: 10px;
                gap: 6px;
            }
            .slide-content {
                padding: 10px;
            }
        }
	

