* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    width: 100%;
    height: 100%;
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    overflow-x: hidden;
    overflow: auto;
    background-color: #000; 
}

/* Scroll invisível */
body::-webkit-scrollbar { display: none; }
body { scrollbar-width: none; -ms-overflow-style: none; }

.top-slogan {
    width: 100%;
    background-color: #1a1a1a;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: aparecer 0.5s ease-out;
}

.header {
    width: 100%;
    padding: 20px 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #311414;
    height: 70px;
    animation: aparecer 0.5s ease-out;
}

.header img {
    position: relative;
    width: 8rem;
    height: 10rem;
    animation: aparecer 0.5s ease-out;
}

.titulo {
    color: white;
    font-size: 1.7rem;
    letter-spacing: 1px;
    margin-top: 1%;
    display: flex;
}

.landing {
    width: 100%;
    min-height: calc(100vh - 110px);
    background-image: linear-gradient(#31141400, rgba(49, 20, 20, 1)), url('./img/hangar.webp');
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 50px;
}

.content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    width: 100%;
    max-width: 1200px;
}

.texto-diladinho {
    flex: 1;
    color: white;
    animation: aparecer 0.8s ease-out;
}

.texto-diladinho h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.texto-diladinho p {
    font-size: 1.1rem;
    opacity: 0.8;
}

.img-container {
  position: relative;
    flex: 1.2;
    height: 450px;
    overflow: hidden;
    border: 1px solid #311414; 
    border-radius: 10px;
}

.sede-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;                
  align-items: center;
  justify-content: center;    
  background: rgba(0, 0, 0, 0);
  text-decoration: none;        
  z-index: 10;                  
  transition: background 0.5s ease;
}
.img-overlay a{
  text-decoration: none;
  display: block;
  color: #fff;
}
.hover-msg {
    color: white;
    font-weight: bold;
    border: 2px solid white;
    padding: 15px 25px;
    opacity: 0;
    transition: 0.5s ease;
    pointer-events: none; 
}


.img-container:hover .img-overlay {
    background: rgba(0, 0, 0, 1); 
}

.img-container:hover .hover-msg {
    opacity: 1;
}

.img-container:hover .sede-img {
    transform: scale(1.05);
}

@keyframes aparecer {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}