/* Em CSS/vgr.css */

body {
    margin: 0;
    padding: 0;
    color: white;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

.slideshow-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0; 
  overflow: hidden;
}

.mySlides {
  display: none;
  width: 100%;
  height: 100%;
}

.mySlides img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: middle;
}

.background-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.slideshow-container .prev,
.slideshow-container .next {
  display: none; /* Oculta por padrão para um fundo limpo */
  /* Se quiser exibi-los, descomente e ajuste:
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 20px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
  background-color: rgba(255,255,255,0.1);
  z-index: 3;
  */
}
/*
.slideshow-container .next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

.slideshow-container .prev:hover,
.slideshow-container .next:hover {
  background-color: rgba(255,255,255,0.3);
}
*/

.slideshow-container .text {
  display: none;
}

.dots-navigation {
    position: fixed;
    bottom: 20px; /* Distância da parte inferior */
    left: 50%;
    transform: translateX(-50%);
    z-index: 2; /* Acima do overlay, no mesmo nível do conteúdo principal */
}

.dot {
  cursor: pointer;
  height: 12px;
  width: 12px;
  margin: 0 4px;
  background-color: rgba(255, 255, 255, 0.4); /* Cor dos pontos inativos */
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}

.dot.active, .dot:hover {
  background-color: rgba(255, 255, 255, 0.8); /* Cor dos pontos ativos/hover */
}

.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

.content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%; 
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    box-sizing: border-box;
    min-height: calc(100vh - 40px);
}


.top-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    max-width: 1100px; 
    margin: 0 auto; 
    margin-bottom: 40px;
    padding: 0 20px; 
    box-sizing: border-box;
    flex-wrap: wrap; 
}

.top-content .container {
    flex-basis: 60%;
    text-align: left;
    padding-right: 20px;
    box-sizing: border-box;
}
.top-content .container h1{
    font-size: 2.5em;
    margin-bottom: 20px;
    line-height: 1.2;
}
.top-content .container p{
    font-size: 1.1em; 
    line-height: 1.6;
}

.logoVgr {
    flex-basis: 30%;
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.logoVgr img.vgrLogo {
    max-width: 280px;
    height: auto;
}

.containerServ {
    width: 100%;
    max-width: 1100px; 
    text-align: center;
    margin: 0 auto;
    margin-bottom: 40px;
    padding: 0 20px;
    box-sizing: border-box;
}

.containerServ h2 {
    font-size: 2.2em;
    margin-bottom: 30px;
}

.buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.button {
    background-color: rgba(255, 255, 255, 0.08);
    color: white;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    flex-grow: 1;
    flex-basis: 280px;
    min-width: 260px; 
    box-sizing: border-box;
    text-align: left;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}
.button:hover{
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
}

.button i {
    margin-right: 12px;
    font-size: 1.6em;
    width: 30px;
    text-align: center;
}
.button p {
    margin: 0;
    font-size: 0.95em;
    line-height: 1.4;
}

.containerServ h3 {
    font-size: 1.2em;
    margin-top: 40px;
    margin-bottom: 25px;
    line-height: 1.6;
}

.buttonFim {
    background-color: #00A859;
    color: white;
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.buttonFim:hover {
    background-color: #008F4B;
}

.logoFinal {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 40px;
}
.logoFinal img{
    max-width: 350px; 
    height: auto;
}

footer {
    width: 100%;
    max-width: 1100px;
    text-align: center;
    margin: 0 auto;
    padding: 25px 20px;
    box-sizing: border-box;
    font-size: 0.85em;
    line-height: 1.7;
    color: rgba(255,255,255,0.8);
}
footer p {
    margin: 6px 0;
}
footer span {
    font-weight: bold;
    color: rgba(255,255,255,0.9);
}

/* Ajustes responsivos */
@media (max-width: 992px) {
    .top-content {
        flex-direction: column;
        align-items: center;
    }
    .top-content .container {
        flex-basis: 100%;
        text-align: center;
        margin-bottom: 30px;
        padding-right: 0;
    }
    .logoVgr {
        flex-basis: 100%;
        text-align: center;
        justify-content: center;
    }
    .button {
        flex-basis: calc(50% - 10px);
    }
}

@media (max-width: 768px) {
    .top-content .container h1 {
        font-size: 2em;
    }
    .containerServ h2 {
        font-size: 1.8em;
    }
    .button {
        flex-basis: 100%;
        min-width: unset;
    }
    .logoFinal img {
        max-width: 280px;
    }
    .dots-navigation {
        bottom: 10px;
    }
}

@media (max-width: 480px) {
    .top-content .container h1 {
        font-size: 1.7em;
    }
    .top-content .container p {
        font-size: 1em;
    }
    .containerServ h2 {
        font-size: 1.6em;
    }
    .button p {
        font-size: 0.9em;
    }
    .buttonFim {
        padding: 12px 24px;
        font-size: 1em;
    }
    footer {
        font-size: 0.8em;
    }
}