/* Reset básico */
html, body {
    width: 100%;
    overflow-x: hidden;
}
* { margin:0; padding:0; box-sizing:border-box; font-family: 'Arial', sans-serif; }
body {
    background: linear-gradient(135deg, #f4f4f9 0%, #e0e4f1 100%);
    color:#333;
    line-height:1.6;
}
.nav-container { display:flex; justify-content:space-between; align-items:center; padding:15px 50px; background:#1e1e2f; }
.nav-container ul { list-style:none; display:flex; gap:20px; }
.nav-container ul li a { color:#fff; text-decoration:none; font-weight:600; transition:0.3s; }
.nav-container ul li a:hover { color:#f1c40f; }
.nav-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    background: #fff;
    padding: 8px;
}
/* ===== BANNER FINAL ===== */
.banner {
  position: relative;
  width: 100%;
  height: auto;
}

/* imagem ocupa o banner */
.banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* texto POR CIMA da imagem */
.banner-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 40px 20px;
  z-index: 2;
}

/* escurecer a imagem (overlay elegante) */
.banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 40, 0.55);
  z-index: 1;
}

/* Conteúdo do banner */
.banner-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.banner h1 {
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 15px;
}
.banner h1 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #ffffff; /* BRANCO */
}

.banner p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #e0e6ed;
}
.banner p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #e5e7eb; /* CINZA CLARO */
}
.btn-primary { display:inline-block; background:#f1c40f; color:#333; padding:12px 25px; border-radius:8px; text-decoration:none; font-weight:600; transition:0.3s; }
.btn-primary:hover { background:#e0b90f; }
.section { padding:60px 50px; max-width:1200px; margin:0 auto; background: transparent; }
.cards { display:flex; flex-wrap:wrap; gap:20px; justify-content:center; }
.card { background:#fff; padding:25px; border-radius:15px; text-align:center; flex:1 1 250px; box-shadow:0 6px 18px rgba(0,0,0,0.1); transition:0.3s; }
.card:hover { transform:translateY(-8px); box-shadow:0 12px 24px rgba(0,0,0,0.15); }
.card i { margin-bottom:15px; }
.info-card { background:#fff; padding:20px; border-radius:15px; text-align:center; max-width:400px; margin:20px auto; box-shadow:0 6px 18px rgba(0,0,0,0.1); }
.form-container { background:#fff; padding:30px; border-radius:15px; max-width:500px; margin:20px auto; box-shadow:0 6px 18px rgba(0,0,0,0.1); display:flex; flex-direction:column; gap:15px; }
input, select, textarea { padding:12px; border-radius:8px; border:1px solid #ccc; width:100%; }
button { background:#3498db; color:#fff; padding:12px; border:none; border-radius:8px; font-weight:600; cursor:pointer; transition:0.3s; }
button:hover { background:#2980b9; }
.dicas-cards { display:flex; flex-wrap:wrap; gap:20px; justify-content:center; }
.card-dica { background:#fff; padding:20px; border-radius:15px; text-align:center; flex:1 1 250px; box-shadow:0 6px 18px rgba(0,0,0,0.1); transition:0.3s; }
.card-dica:hover { transform:translateY(-6px); box-shadow:0 12px 24px rgba(0,0,0,0.15); }
/* Galeria */
.galeria-container { display:grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap:20px; margin-top:30px; }
.galeria-img { width:100%; height:200px; object-fit:cover; border-radius:15px; box-shadow:0 6px 18px rgba(0,0,0,0.15); transition: transform 0.3s; }
.galeria-img:hover { transform: scale(1.05); }


.active {
    color: #f1c40f;
}


@media (max-width: 768px) {

    .nav-container {
        padding: 15px 20px;
        flex-wrap: wrap;
    }

    .nav-container ul {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        gap: 12px;
        
    }

    .nav-container ul li a {
        font-size: 14px;
    }

    

}


.welcome {
    display: block;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #f1c40f;
    margin-bottom: 8px;
}


@media (max-width: 768px) {

  .banner-content {
    padding: 30px 15px;
  }

  .banner h1 {
    font-size: 1.8rem;   /* título menor no mobile */
    line-height: 1.2;
  }

  .banner p {
    font-size: 1rem;     /* texto mais equilibrado */
  }

}



/* ===== AJUSTES FINAIS DO BANNER ===== */

/* Título principal */
.banner h1 {
  color: #ffffff;
}

/* Texto abaixo do título */
.banner p {
  color: #f1f5f9;
}

/* Ajustes só para telemóvel */
@media (max-width: 768px) {
  .banner h1 {
    font-size: 2rem;
  }

  .banner p {
    font-size: 1rem;
  }
}


/* ===== ANIMAÇÃO DO BANNER ===== */
.animate-banner {
  opacity: 0;
  transform: translateY(30px);
  animation: bannerFadeUp 1s ease-out forwards;
  animation-delay: 0.3s;
}

@keyframes bannerFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== ANIMAÇÃO DO BOTÃO ===== */
.btn-primary {
  animation: btnZoomIn 0.8s ease-out forwards;
  animation-delay: 0.8s;
  transform: scale(0.9);
  opacity: 0;
}

/* efeito ao tocar / passar o mouse */
.btn-primary:hover {
  transform: scale(1.05);
}

/* animação de entrada */
@keyframes btnZoomIn {
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* ANIMAÇÃO ZOOM LEVE */
.zoom {
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.8s ease;
}

.zoom.show {
  opacity: 1;
  transform: scale(1);
}






.galeria-slider {
  position: relative;
  max-width: 900px;
  height: 260px;
  margin: auto;
  overflow: hidden;
}

.galeria-slider .slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: translateX(100%);
  opacity: 0;
  transition: transform 0.8s ease, opacity 0.8s ease;
}

/* slide ativo entra da direita */
.galeria-slider .slide.active {
  transform: translateX(0);
  opacity: 1;
  z-index: 2;
}

/* slide sai pela esquerda */
.galeria-slider .slide.exit {
  transform: translateX(-100%);
  opacity: 0;
  z-index: 1;
}






.paris-message{
    max-width:700px;
    margin:25px auto;
    padding:25px;
    background:#ffffff;
    border-radius:20px;
    text-align:center;
    box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

#paris-text{
    font-size:22px;
    line-height:1.8;
    font-weight:600;
    transition:opacity 0.5s ease;
}









.paris-message{
    max-width:550px;
    margin:20px auto;
    padding:20px;
    background:#ffffff;
    border-radius:20px;
    text-align:center;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
    border:2px solid #f1c40f;
}

#paris-text{
    font-size:20px;
    line-height:1.6;
    font-weight:600;
    color:#222;
    transition:opacity .5s ease;
}




/* PÁGINA DE SERVIÇOS */

.service-list{
    list-style:none;
    padding:0;
    margin-top:20px;
}

.service-list li{
    background:#ffffff;
    padding:15px;
    margin:12px 0;
    border-radius:12px;
    font-size:18px;
    font-weight:600;
    box-shadow:0 4px 10px rgba(0,0,0,0.08);
}

.service-description{
    text-align:center;
    margin-top:25px;
    font-size:18px;
    line-height:1.8;
    color:#333;
}

.btn-service{
    display:block;
    text-align:center;
    background:#f1c40f;
    color:#000;
    text-decoration:none;
    padding:15px;
    border-radius:12px;
    margin-top:25px;
    margin-bottom:15px;
    font-weight:bold;
    font-size:18px;
}

.btn-service:hover{
    transform:translateY(-2px);
}

.section h2{
    text-align:center;
    margin-top:20px;
}




.section h2{
    text-align:center;
    font-size:36px;
    margin-top:20px;
    margin-bottom:30px;
}