@font-face {
  font-family: 'NeoSansStdBold';
  src: url('../fonts/neoSansStdBold.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'NeoSansStdBoldItalic';
  src: url('../fonts//neoSansStdBoldItalic.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'NeoSansStdLight';
  src: url('../fonts/neoSansStdLight.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* Container geral */

.slideshow-container {
    position: relative;
    width: 100%;
    height: 100vh;
    max-height: 700px;
    overflow: hidden;
    background: #000;
    margin-top: 100px !important;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    font-size: 4em;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0,0,0,0.7);
    font-family: 'NeoSansStdBold';
}

.slide-text span {
    color: #FFD700;
    font-weight: 700;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 1em;
    user-select: none;
    background: rgba(0,0,0,0.4);
    border-radius: 50%;
    z-index: 2;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.prev:hover, .next:hover {
    background: rgba(0,0,0,0.7);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

.dots {
    text-align: center;
    position: absolute;
    bottom: 20px;
    width: 100%;
    z-index: 2;
}

.dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: rgba(255,255,255,0.6);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.3s;
}

.active-dot, .dot:hover {
    background-color: #FFD700;
}

@media (max-width: 768px) {

    .slideshow-container {
        position: relative;
        width: 100%;
        height: 30vh;
        overflow: hidden;
        margin-bottom: -20px;
        margin-top:80px !important;
    }

    .slide-text {
        font-size: 1rem;
        padding: 0 10px;
    }

    .prev, .next {
    font-size: 1.5rem;
    padding: 10px;
    }
}