* {
    margin: 0;
    padding: 0;
}

body {
    background: #fef9e4;
    overflow-x: hidden;
}

a {
    color: black;
    text-decoration: none;
    transition: 0.3s;
}

.FotoTitulo {
    display: flex;
    height: 10vh;
    width: 10vh;
    margin-left: 65vh;
    margin-right: 85vh;
}

.Iniciais {
    width: 5vh;
    height: 5vh;
    display: flex;
}

.logo {
    font-size: 24px;
    text-transform: uppercase;
    margin-left: 5%;
}

/* título no geral */
.MenuLateral {
    display: flex;
    justify-content: space-around;
    align-items: center;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Ts arabic bebas neue pro, sans-serif;
    font-size: 2vh;
    height: 10vh;
    background: #266873;
}

/* menu lateral */
.MenuOpcao {
    display: flex;
    position: absolute;
    top: 10vh;
    right: 0;
    width: 15vw;
    height: 30vh;
    transition: 0.5s;
    flex-direction: column;
    justify-content: space-around;
    align-items: end;
    transform: translateX(100%);
    border-radius: 5%;
    padding-right: 6.5vh;
}

/* Animação item por item do menu principal */
.MenuOpcao li {
    opacity: 0;
    transform: translateX(20px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.MenuOpcao.aberto li {
    opacity: 1;
    transform: translateX(0);
}

.MenuOpcao.aberto li:nth-child(1) {
    transition-delay: 0.05s;
}
.MenuOpcao.aberto li:nth-child(2) {
    transition-delay: 0.15s;
}
.MenuOpcao.aberto li:nth-child(3) {
    transition-delay: 0.25s;
}

/* Itens do menu */
.MenuOpcao li {
    list-style: none;
    color: black;
    text-decoration: none;
    font-weight: bold;
    font-size: 23px;
}

.MenuOpcao ul li {
    line-height: 20px;
}

.MenuOpcao li a:hover {
    opacity: 0.7;
    transition: 0.3s;
}

#sbmTexto1,
#sbmTexto2 {
    font-size: 20px;
}

.MenuIcone {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    cursor: pointer;
}

.MenuIcone div {
    background-color: white;
    height: 4px;
    border-radius: 2px;
}

.MenuIcone div:hover {
    color: black;
    transition: 0.5s;
}

/* ▼ Submenu ▼ */
.svOpcoes {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
    flex-direction: column;
    align-items: center;
    padding: 0;
}

.svOpcoes.ativo {
    max-height: 100px; /* altura suficiente p/ 2 itens */
}

.svOpcoes li {
    list-style: none;
    padding-bottom: 10px;
    padding-top: 8px;
}

.svOpcoes a {
    font-family: 'Montserrat', sans-serif;
}

#btnServicos {
    cursor: pointer;
}

/* ----------------- Planos ----------------- */
.planos-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.plano {
  width: 280px;
  background-color: white;
  border: 2px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: auto;
  min-height: 430px;
}

.plano:hover {
  transform: scale(1.05);
}

.plano h2 {
  font-size: 30px;
  margin-bottom: 8px;
}

.plano .preco {
  margin-top: 0;
  margin-bottom: 30px;
  font-size: 32px;
  color: #266873;
  font-family: Arial, Helvetica, sans-serif;
}

.plano ul {
  list-style: none;
  padding: 0;
  text-align: left;
  margin-bottom: 20px;
  font-family: 'Lora', serif;
  flex-shrink: 0;
}

.plano ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.plano ul li::before {
  content: "✔";
  color: #266873;
  position: absolute;
  left: 0;
}

.plano button {
  background-color: #266873;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  align-self: center;
  flex-shrink: 0;
  width: auto;
}

#Catalogo {
 font-family:'Trebuchet Ts', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Ts arabic bebas neue pro, sans-serif;
 font-size:50px;
 display: flex;
 margin-top: 4vh;
 margin-bottom: 5vh;
 margin-left: 10vh;
}

.plano.destacado {
  border: 3px solid #266873;
  background-color: #eafaf1;
}

/* ----------------- Rodapé ----------------- */
.rodape {
  padding: 15px ;
  text-align: center;
  margin-top: 6%;
}

.social-btn {
  display: inline-block;
  margin: 0 15px;
  color: #3f6173;
  font-size: 28px;
  transition: color 0.3s ease;
  text-decoration: none;
}

.social-btn:hover {
  color: #266873;
}

/* Botão Ler Mais */
.btnLerMais {
  background-color: #266873;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  align-self: center;
  flex-shrink: 0;
  width: auto;
  color: white;
}

/* ----------------- Modal ----------------- */
.overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(5px);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-content {
  position: relative;
  width: 60%;
  max-width: 900px;
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-info {
  flex: 1;
  padding: 0 40px;
  text-align: center;
}

.fecharModal {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 26px;
  cursor: pointer;
  color: #266873;
}

.navBtn {
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: #266873;
  padding: 10px;
  
}