/* estilos.css */

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

body {
    font-family: 'Cinzel', serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f1e3;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/* Tipografia */

h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

h1 {
    font-size: 3.2rem;
    line-height: 1.1;
}

h2 {
    font-size: 2.4rem;
    color: #8B4513;
    margin-bottom: 20px;
}


/* Header */

header {
    background: linear-gradient(rgba(139, 69, 19, 0.95), rgba(139, 69, 19, 0.98));
    color: #f4e8c1;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo h1 {
    margin-bottom: 20px;
    font-size: 1.4rem;
    line-height: 1.2;
    color: #f4e8c1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.logo span {
    color: #D4AF37;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: #f4e8c1;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: #D4AF37;
}


/* Hero */

.hero {
    height: 85vh;
    min-height: 600px;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('image/freemasons-gathered.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    color: white;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(139, 69, 19, 0.4), rgba(212, 175, 55, 0.2));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.hero-image {
    max-width: 150px;
    height: auto;
}

.hero-text {
    text-align: center;
}

.hero h2 {
    font-size: 2.2rem;
    color: #ffebac;
    margin-bottom: 1rem;
    letter-spacing: 4px;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin: 1.5rem 0 2.5rem;
    font-weight: 400;
}


/* Botões */

.btn-primary {
    display: inline-block;
    background: #8B4513;
    color: white;
    padding: 14px 36px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid #D4AF37;
}

.btn-primary:hover {
    background: #D4AF37;
    color: #4a2c0f;
    transform: translateY(-3px);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #8B4513;
    padding: 12px 32px;
    border: 2px solid #8B4513;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
}


/* Seções */

.section {
    padding: 100px 0;
}

.bg-bege {
    background-color: #f4e8d1;
}

.bg-dourado {
    background: linear-gradient(135deg, #8B4513, #D4AF37);
    color: white;
}


/* Grid */

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.valores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.valor-card {
    background: white;
    padding: 2.5rem 1.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s;
}

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

.valor-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}


/* Galeria */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
    border: 3px solid #8B4513;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    color: white;
    padding: 1.5rem 1rem;
}


/* Processo */

.processo {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
}

.processo-passo {
    text-align: center;
    max-width: 260px;
}

.numero {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: #8B4513;
    color: white;
    font-size: 2rem;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    font-weight: bold;
}


/* Itens */

.itens-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.item {
    text-align: center;
}

.item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}


/* Jantar */

.jantar-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
    color: white;
}

.jantar-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}


/* Formulário */

.indique-box {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    text-align: center;
    color: #333;
}

.form-indicacao input,
.form-indicacao textarea {
    width: 100%;
    padding: 14px;
    margin: 12px 0;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: inherit;
}

.form-indicacao button {
    margin-top: 1rem;
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
}


/* Footer */

footer {
    background: #2c1e12;
    color: #d4c8a8;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-bottom {
    border-top: 1px solid #4a3728;
    padding-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 0.95rem;
}

.footer-links a {
    color: #d4c8a8;
    text-decoration: none;
    margin-left: 1.5rem;
}


/* Responsivo */

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    h1 {
        font-size: 2.4rem;
    }
    .grid-2,
    .jantar-content {
        grid-template-columns: 1fr;
    }
    .hero {
        height: 70vh;
    }
    .hero-content {
        flex-direction: column;
        gap: 1rem;
    }
    .hero-image {
        max-width: 100px;
    }
}

.destaque {
    font-family: Arial, sans-serif;
    display: inline-block;
    /* Faz o fundo se ajustar ao tamanho do texto */
    background-color: rgba(0, 0, 0, 0.5);
    /* Preto com 50% de opacidade */
    color: white;
    /* Cor do texto */
    padding: 20px 30px;
    /* Espaçamento interno */
    border-radius: 12px;
    /* Cantos arredondados */
    font-size: 1.5rem;
}