@charset "utf-8";
/* CSS Document */

/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #111;
  color: #fff;
  line-height: 1.6;
padding-top: 0;
 }
body {
    overflow-x: hidden;
    background: #181818;
}

a {
  text-decoration: none;
}
.hero-text {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.hero-text h2 {
    margin-bottom: 1rem;
}

.hero-text p {
    font-size: 1.1rem;
}
/* HEADER */

.header {
    position: sticky;
    top: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4px 0;
    background: rgba(13, 13, 13, 0.96);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    z-index: 1000;
}

.header::after {
    content: "";
    width: 82%;
    height: 1px;
    background: rgba(212, 162, 76, 0.25);
    margin-top: 4px;
}


/* LOGÓTIPO */

.logo-area {
    text-align: center;
    margin-bottom: 2px;
}

.logo {
    width: 140px;
    height: auto;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.03);
}

.logo-area h1 {
    color: white;
    font-size: 20px;
    margin-top: 2px;
    font-weight: 500;
    letter-spacing: 1px;
}


/* MENU */

.navbar {
    width: 100%;
    padding: 2px 0;
}

.navbar ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 34px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar li {
    margin: 0;
    padding: 0;
}

.navbar a {
    position: relative;
    color: white;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.navbar a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #d4a24c;
    transition: width 0.3s ease;
}

.navbar a:hover {
    color: #d4a24c;
}

.navbar a:hover::after {
    width: 100%;
}


/* RESPONSIVO */

@media (max-width: 768px) {

    .header {
        padding: 6px 0;
    }

    .logo {
        width: 90px;
    }

    .logo-area h1 {
        font-size: 18px;
    }

    .navbar ul {
        flex-wrap: wrap;
        gap: 16px;
    }

    .navbar a {
        font-size: 12px;
        letter-spacing: 0.8px;
    }

    body {
        padding-top: 120px;
    }
}

/* HERO */
.hero {
  min-height: calc(100vh - 80px);
  background: center center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}
.hero {
    padding-top: 80px;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-text {
  max-width: 600px;
}

.hero-text h2 {
  font-size: 60px;
  line-height: 1.1;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
}

.hero-text p {
  color: #ddd;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

/* BUTTONS */
.btn-outline {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 5px;
  font-weight: 600;
  text-align: center;
  transition: 0.3s ease;
  cursor: pointer;
}

.btn {
  background: #d4a24c;
  color: #fff;
  border: 1px solid #d4a24c;
}

.btn:hover {
  background: #bd8f3e;
  border-color: #bd8f3e;
}

.btn-outline {
  border: 1px solid #d4a24c;
  color: #d4a24c;
  background: transparent;
}

.btn-outline:hover {
  background: #d4a24c;
  color: #fff;
}
.hero-buttons {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
/* SECTION TITLES */
.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h3 {
  color: #d4a24c;
  font-size: 36px;
  font-family: 'Playfair Display', serif;
}


/* CONTAINER */

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* SECTION */

.section {
    padding: 100px 0;
}

/* SERVIÇOS */

.services {
    background: #181818;
    padding: 80px 20px;
}

/* TÍTULO */

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h3 {
    color: #d4af37;
    font-size: 2.5rem;
    text-transform: uppercase;
    margin: 0;
}

/* GRELHA DOS SERVIÇOS */

.services-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 30px;
}

/* CARTÕES */

.service-card {
    width: 260px;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    text-align: center;

    display: flex;
    flex-direction: column;

    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

/* TÍTULO DO CARTÃO */

.service-card h4 {
    margin: 0;
    padding: 18px;

    background: #f8f8f8;
    color: #181818;

    font-size: 1.3rem;
    text-transform: uppercase;
}

/* IMAGEM */

.service-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

/* TEXTO */

.service-card p {
    padding: 20px;
    margin: 0;

    color: #555;
    line-height: 1.5;
}
    .section-title h3 {
        font-size: 2rem;
    }


.video-card {
    width: 800px;
    max-width: 100%;
    aspect-ratio: 16 / 9;
    margin: 0 auto;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-card video {
    height: 100%;
    width: auto;
}
/* VÍDEO */
.video-section {
  background: #111;
}

.video-wrapper {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  border: 3px solid #d4a24c;
  box-shadow: 0 0 50px rgba(212, 162, 76, 0.3);
  aspect-ratio: 16 / 9;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
/* SECÇÃO SOBRE NÓS */


.section-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: justify;
}

.about-content h3 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.about-content p {
    line-height: 1.8;
    margin-bottom: 15px;
}


/* TÍTULO DA EQUIPA */

.equipa-texto {
    text-align: center;
    font-weight: bold;
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 30px;
}

/* EQUIPA */
.equipa {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.profissional {
    text-align: center;
    width: 180px;
}

.profissional img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    display: block;
    margin: 0 auto 10px;
}

.profissional h4 {
    margin: 0;
    font-size: 18px;
}

.profissional p {
    margin-top: 5px;
    font-size: 15px;
    color: #666;
}
.titulo-novidades {
    text-align: center;
    font-size: 2.6rem;
    font-weight: 700;
    color: #d4a24c;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.15);
    margin-bottom: 40px;
}
.about-content h3 {
    text-align: center;
    font-size: 2.3rem;
    font-weight: bold;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

/* BOTÕES */

.btn-container {
    text-align: center;
    margin-top: 30px;
}


/*  RESPONSIVO */

@media (max-width: 768px) {

    .about-content {
        padding: 0 20px;
    }

    .about-content h3 {
        font-size: 2rem;
    }

    .equipa {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .profissional
	img {
        width: 140px;
        height: 140px;
    }
}

.gallery {
    padding-top: 120px;
}

.gallery-item {
    margin-bottom: 60px;
}

.gallery-item h4 {
    text-align: center;
    margin-bottom: 20px;
}

.gallery-images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.gallery-images img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    transition: 0.3s;
}

.gallery-images img:hover {
    transform: scale(1.05);
}
.video-galeria {
    width: 80%;
    max-width: 900px;
    height: auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}


/* Cartão presente */
.destaque {
    text-align: center;
    margin-bottom: 40px;
}

.destaque img {
    width: 100%;
    max-width: 750px;
    height: auto;
    display: block;
    margin: 0 auto;

    border: 2px solid #c9a227;
    border-radius: 15px;
    box-shadow: 0 0 28px rgba(201, 162, 39, 0.60);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destaque img:hover {
    transform: scale(1.03);
    box-shadow: 0 0 40px rgba(201, 162, 39, 0.80);
}

/* Linha das novidades */
.novidades {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 25px;
    width: 100%;
    flex-wrap: wrap;
}

/* Cada item */
.novidades .item {
    text-align: center;
    width: 220px;
}

/* Imagens das novidades */
.novidades .item img {
    width: 100%;
    height: 150px;
    object-fit: contain;

    border: 2px solid #c9a227;
    border-radius: 12px;
    box-shadow: 0 0 12px rgba(201, 162, 39, 0.25);

    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.novidades .item img:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(201, 162, 39, 0.55);
}

/* Mobile */
@media (max-width: 768px) {
    .destaque img {
        max-width: 100%;
    }

    .novidades .item {
        width: 160px;
    }

    .novidades .item img {
        height: 120px;
    }
}


.destaque img {
    width: 320px;
    height: 210px;
    object-fit: contain;
    border: 2px solid #c9a227;
    border-radius: 15px;
    box-shadow: 0 0 28px rgba(201, 162, 39, 0.60);
}



/* CONTACT */
main,
.contactos-container,
.contact-section {
    padding-top: 40px;
}

.contactos {
    margin-top: 40px;
}
/* RESPONSIVE */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .sobre-nos {
        flex-direction: column;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

.video-galeria {
    width: 700px;
    max-width: 100%;
    height: 400px;
    object-fit: contain;
    background: #000;
}

/* CONTACT */
.contact {
  background: #181818;
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info h3 {
  color: #d4a24c;
  font-size: 36px;
  margin-bottom: 20px;
}

.contact-info p {
  margin-bottom: 12px;
}

.contact-map iframe {
  width: 100%;
  height: 350px;
  border: none;
  border-radius: 10px;
}

/* HORÁRIO */
.opening-hours {
  margin-top: 25px;
  padding: 30px;
  background: #222;
  border-radius: 10px;
  border-left: 4px solid #d4a24c;
  text-align: center;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.opening-hours h4 {
  color: #d4a24c;
  font-size: 28px;
  margin-bottom: 40px;
}

.opening-hours p {
  font-size: 22px;
  color: #fff;
  margin-bottom: 15px;
}

.opening-hours strong {
  display: block;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 35px;
}

.day-off {
  margin-top: 10px;
}

.closed {
  color: #d4a24c;
}

/* SOCIAL LINKS */
.social-links {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.social-links a {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #fff;
  transition: 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.social-links .facebook {
  background: #1877f2;
}

.social-links .instagram {
  background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
}

.social-links .whatsapp {
  background: #25d366;
}

.social-links a:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

/* FOOTER */
.footer {
  background: #0d0d0d;
  text-align: center;
  padding: 30px 0;
}

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  right: 25px;
  bottom: 25px;
  width: 70px;
  height: 70px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 35px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  z-index: 999;
  transition: 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    gap: 10px;
  }

  .header {
    height: auto;
    position: relative;
  }

   .navbar ul {
    gap: 15px;
    font-size: 14px;
  }

  .hero {
    min-height: auto;
    padding: 80px 0;
  }

  .hero-text h2 {
    font-size: 42px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .contact-container {
    grid-template-columns: 1fr;
  }

  .social-links {
    justify-content: center;
  }

    .services-grid {
    grid-template-columns: 1fr;
  }
}
