@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

@font-face {
  font-family: "GoodVibrations";
  src: url("assets/Fontes/GOODVIBRATIONS SCRIPT.TTF") format("truetype");
}

@font-face {
  font-family: "Chiller";
  src: url("assets/Fontes/CHILLER.TTF") format("truetype");
}

@font-face {
  font-family: "Poppins";
  src: url("assets/Fontes/POPPINS-REGULAR.TTF") format("truetype");
}

body {
  font-family: 'Montserrat', sans-serif;
}

.font-serif {
  font-family: 'Playfair Display', serif;
}

/* ==================== */
/*  FIX DO ERRO: FECHADO */
/* ==================== */

.poppins {
  font-family: 'Poppins', sans-serif;
}

/* =============================== */
/*        PÁGINA EXTERNO           */
/* =============================== */

.externo-topo {
  text-align: center;
  padding: 80px 20px 40px;
  max-width: 900px;
  margin: auto;
  color: white;
}

.externo-topo h2 {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 18px;
  font-family: 'Playfair Display', serif;
}

.externo-topo p {
  font-size: 17px;
  line-height: 1.7;
  opacity: 0.9;
  font-weight: 300;
}

.externo-section-title {
  text-align: center;
  font-size: 32px;
  margin-top: 40px;
  margin-bottom: 25px;
  font-weight: 600;
  color: white;
  font-family: 'Playfair Display', serif;
}

.externo-galeria {
  padding: 20px;
}

.externo-grid-fotos {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  max-width: 1200px;
  margin: auto;
}

.externo-grid-fotos img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s, box-shadow .3s, opacity .2s;
}

.externo-grid-fotos img:hover {
  transform: translateY(-6px);
  opacity: 0.95;
  box-shadow: var(--shadow-md);
}

.externo-videos {
  padding: 20px 20px 60px;
}

.externo-grid-videos {
  display: grid;
  gap: 30px;
  max-width: 1100px;
  margin: auto;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.externo-video-box {
  background: rgba(0, 0, 0, 0.14);
  padding: 15px;
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  transition: .3s;
}

.externo-video-box:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.externo-video-box video {
  width: 100%;
  border-radius: 10px;
}

  .footer {
    margin-top: 60px;
    background: var(--cor-principal);
    padding: 25px 0;
    text-align: center;
    color: white;
    font-size: 14px;
}

/* ====== SEÇÃO NOSSA EQUIPE ====== */

.team-section {
    background: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

.team-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #4b4b4b;
}

.team-subtitle {
    color: #555;
    font-size: 18px;
    margin-bottom: 60px;
}

.team-container {
    display: flex;
    justify-content: center;
    gap: 120px;
    flex-wrap: wrap;
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 190px;
    height: 190px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #d1c47c; /* dourado */
}

.team-member h3 {
    margin-top: 15px;
    font-size: 20px;
    color: #333;
}

.team-member .cargo {
    color: #777;
    margin-top: 5px;
    font-size: 15px;
}

/* BOTÃO */
.team-btn {
    margin-top: 15px;
    background: #4a8f4a;
    color: #fff;
    padding: 10px 22px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.team-btn .icon {
    background: #fff;
    color: #4a8f4a;
    font-weight: bold;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-btn:hover {
    background: #3f7a3f;
}

#mobile-menu {
    transition: all 0.3s ease;
}

