* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: transform 0.4s ease, opacity 0.4s ease;
}
html {
  scroll-behavior: smooth;
}

/* HEADER FIXO */
.header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background-color: #0b1a2f;
    background-image: url("https://www.transparenttextures.com/patterns/dark-mosaic.png");
    background-size: cover;
    transition: top 0.4s ease;
}

/* Parte superior fixa */
.top-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    position: relative;
}

/* LOGO */
.logo img {
    width: 140px;
}

/* Linha dourada */
.gold-line {
    height: 2px;
    background-color: #c5a347;
}

/* MENU */
.nav {
    text-align: center;
    padding: 15px 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
}
.menu-wrapper {
    background-color: #0b1a2f;
    transition: all 0.4s ease;
    overflow: hidden;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.menu-wrapper.hide {
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    padding: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;

}
.nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 40px;
}

.nav a {
    text-decoration: none;
    color: white;
    font-family: 'Georgia', serif;
    font-size: 18px;
    position: relative;
    padding-bottom: 5px;
    transition: 0.3s;
}

/* Hover dourado */
.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background-color: #c5a347;
    transition: 0.3s;
}

.nav a:hover {
    color: #c5a347;
}

.nav a:hover::after {
    width: 100%;
}

/* HAMBURGUER */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: absolute;
    right: 30px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background-color: #c5a347;
    margin: 5px 0;
    transition: 0.4s;
}

/* ANIMAÇÃO PARA VIRAR X */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(11px, 11px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* RESPONSIVO */
@media (max-width: 768px) {

    .nav {
        display: none;
        background-color: #0b1a2f;
    }

    .nav ul {
        flex-direction: column;
        gap: 20px;
        padding: 20px 0;
    }

    .nav.active {
        display: block;
    }

    .hamburger {
        display: flex;
    }
}

/* Sobreposição escura elegante */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(11,26,47,0.85), rgba(11,26,47,0.85));
}

/* Conteúdo */
.hero-content {
    position: relative;
    color: white;
    max-width: 800px;
    z-index: 2;
}

.hero h1 {
    font-family: 'Georgia', serif;
    font-size: 48px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #e0e0e0;
}

/* Botões */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: #c5a347;
    color: #0b1a2f;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 3px;
    transition: 0.3s;
}

.btn-primary:hover {
    background-color: #e0bb5a;
}

.btn-outline {
    border: 2px solid #c5a347;
    color: #c5a347;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 3px;
    transition: 0.3s;
}

.btn-outline:hover {
    background-color: #c5a347;
    color: #0b1a2f;
}

/* RESPONSIVO */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 30px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero {
        height: 90vh;
    }
}

/* QUOTE SECTION */
.quote-section {
    background-color: #0b1a2f;
    padding: 80px 20px;
    text-align: center;
    color: white;
}

.quote-container {
    max-width: 800px;
    margin: auto;
}

.quote-line {
    height: 2px;
    width: 80px;
    background-color: #c5a347;
    margin: 20px auto;
}

.quote-text {
    font-family: 'Georgia', serif;
    font-size: 28px;
    font-style: italic;
    line-height: 1.6;
}

.quote-author {
    display: block;
    margin-top: 15px;
    color: #c5a347;
    font-weight: bold;
}

/* FEATURES SECTION */
.features-section {
    background-color: #f8f8f8;
    padding: 80px 20px;
    text-align: center;
}

.features-section h2 {
    font-family: 'Georgia', serif;
    font-size: 32px;
    margin-bottom: 50px;
    color: #0b1a2f;
}

.features-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.feature-box {
    background: white;
    padding: 30px;
    width: 260px;
    border-top: 3px solid #c5a347;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.feature-box:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 28px;
    color: #c5a347;
    margin-bottom: 15px;
}

.feature-box h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #0b1a2f;
}

.feature-box p {
    font-size: 14px;
    color: #555;
}

.products-section {
    background-color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

.products-section h2 {
    font-family: 'Georgia', serif;
    font-size: 32px;
    margin-bottom: 50px;
    color: #0b1a2f;
}

.products-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.product-card {
    background: #fff;
    width: 280px;
    padding: 20px;
    border-bottom: 3px solid #c5a347;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.product-card:hover {
    transform: translateY(-6px);
}

.product-card img {
    width: 100%;
    margin-bottom: 15px;
}

.product-card h3 {
    color: #0b1a2f;
    margin-bottom: 10px;
}

.product-card p {
    font-size: 14px;
    margin-bottom: 20px;
    color: #555;
}

.product-btn {
    background-color: #c5a347;
    color: #0b1a2f;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.product-btn:hover {
    background-color: #e0bb5a;
}


.about-section {
    background-color: #0b1a2f;
    background-image: url("https://www.transparenttextures.com/patterns/dark-mosaic.png");
    color: white;
    padding: 80px 20px;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: auto;
}

.about-text {
    max-width: 500px;
}

.about-text h2 {
    font-family: 'Georgia', serif;
    font-size: 32px;
    margin-bottom: 20px;
    color: #c5a347;
}

.about-text p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.about-image img {
    width: 350px;
}

.contact-section {
    background-color: #0b1a2f;
    color: white;
    padding: 80px 20px;
    text-align: center;
    border-top: 1px solid #c5a347;
}

.contact-section h2 {
    font-family: 'Georgia', serif;
    font-size: 32px;
    margin-bottom: 15px;
    color: #c5a347;
}

.contact-subtitle {
    margin-bottom: 40px;
}

.contact-container {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-info p {
    margin-bottom: 10px;
}

.social-icons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-icons a {
    text-decoration: none;
    color: white;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #c5a347;
}


.saints-section {
    background-color: #f8f8f8;
    padding: 80px 20px;
    text-align: center;
}

.saints-section h2 {
    font-family: 'Georgia', serif;
    font-size: 32px;
    margin-bottom: 50px;
    color: #0b1a2f;
}

.saints-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.saint-card {
    width: 260px;
    background: white;
    padding: 20px;
    border-bottom: 3px solid #c5a347;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.saint-card:hover {
    transform: translateY(-6px);
}

.saint-card img {
    width: 100%;
    margin-bottom: 15px;
}

.saint-card h3 {
    margin-bottom: 10px;
    color: #0b1a2f;
}

.saint-card p {
    font-size: 14px;
    color: #555;
}

.footer {
    background-color: #0b1a2f;
    background-image: url("https://www.transparenttextures.com/patterns/dark-mosaic.png");
    color: white;
    padding-top: 60px;
}

.footer-top {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px 50px;
}

.footer-col {
    max-width: 260px;
}

.footer-logo {
    width: 140px;
    margin-bottom: 15px;
}

.footer-col h3 {
    color: #c5a347;
    margin-bottom: 15px;
    font-family: 'Georgia', serif;
}

.footer-col p {
    font-size: 14px;
    margin-bottom: 8px;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a {
    text-decoration: none;
    color: white;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #c5a347;
}

/* Newsletter */
.newsletter-form {
    display: flex;
    margin-top: 10px;
}

.newsletter-form input {
    padding: 8px;
    border: none;
    outline: none;
    flex: 1;
}

.newsletter-form button {
    background-color: #c5a347;
    border: none;
    padding: 8px 15px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.newsletter-form button:hover {
    background-color: #e0bb5a;
}


.footer-col a {
    text-decoration: none;
    margin-right: 15px;
    color: white;
    transition: 0.3s;
}

.footer-col a:hover {
    color: #c5a347;
}

/* Parte inferior */
.footer-bottom {
    text-align: center;
    padding: 20px;
}

.gold-line-footer {
    height: 2px;
    width: 100%;
    background-color: #c5a347;
    margin-bottom: 15px;
}

/* Responsivo */
@media (max-width: 768px) {
    .footer-top {
        text-align: center;
        gap: 40px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form button {
        margin-top: 8px;
    }
}

.custom-hero {
  background: url('https://www.transparenttextures.com/patterns/dark-mosaic.png');
  background-size: cover;
  padding: 120px 20px;
  text-align: center;
  color: white;
  border-top: 15px solid #c5a347;
  background-color: #0b1a2f;
}

.custom-overlay {
  max-width: 800px;
  margin: auto;
}

.custom-section {
  background-color: #f5f3ee;
  padding: 60px 20px;
}

h2 {
  margin-top: 40px;
  color: #0b1a2f;
  border-bottom: 2px solid #c5a347;
  padding-bottom: 8px;
}

.options-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.options-grid label {
  width: 160px;
  text-align: center;
  cursor: pointer;
  padding: 10px;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  background-color: white;
}

.options-grid img {
  width: 100%;
  border-radius: 10px;
  transition: 0.3s ease;
}

.options-grid span {
  display: block;
  margin-top: 8px;
  font-weight: 500;
  color: #0b1a2f;
}

.options-grid input {
  display: none;
}

/* Hover elegante */
.options-grid label:hover {
  transform: translateY(-4px);
  border-color: #c5a347;
}

/* ⭐ ESTADO SELECIONADO */
.options-grid input:checked + span,
.options-grid input:checked ~ img {
  color: #c5a347;
}

.options-grid label:has(input:checked) {
  border-color: #c5a347;
  background-color: #f8f3e3;
  box-shadow: 0 5px 15px rgba(197,163,71,0.25);
  transform: translateY(-4px);
}

select, input[type="text"] {
  width: 100%;
  padding: 10px;
  margin-top: 10px;
  margin-bottom: 15px;
}

.whatsapp-btn {
  background-color: #c5a347;
  color: white;
  padding: 15px 25px;
  border: none;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s;
}

.whatsapp-btn:hover {
  background-color: #a8892d;
}

.checkbox-line {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

#nomeTexto:disabled {
  background-color: #eee;
  cursor: not-allowed;
}

/* HERO */
.gallery-hero {
  background-color: #0b1a2f;
  background-image: url("https://www.transparenttextures.com/patterns/dark-mosaic.png");
  padding: 120px 20px;
  text-align: center;
  color: white;
}

.gallery-overlay {
  max-width: 800px;
  margin: auto;
}

.gallery-overlay h1 {
  font-size: 40px;
  color: #c5a347;
}

/* FILTRO */
.gallery-filter {
  text-align: center;
  margin: 40px 0;
}

.gallery-filter button {
  background: none;
  border: 2px solid #c5a347;
  color: #0b1a2f;
  padding: 8px 20px;
  margin: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.gallery-filter button:hover,
.gallery-filter .active {
  background-color: #c5a347;
  color: white;
}

/* GRID */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 0 20px 60px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 12px;
}

.gallery-item img {
  width: 100%;
  cursor: pointer;
  transition: 0.4s ease;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

/* MODAL */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
}