/* Hero Section - Título e Subtítulo */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(120deg, #fdfaf6 0%, #eab676 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    padding-bottom: 40px;
}

.hero-section p.lead {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: #eab676;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

/* Blog Artigos Individuais */
.blog-article {
    background: #fff8ee;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    padding: 2.5rem 2rem;
    max-width: 700px;
    margin: 0 auto 2rem auto;
}

.blog-article h1,
.blog-article h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #b89a74;
}

.blog-article p,
.blog-article li {
    font-family: 'Lora', serif;
    font-size: 1.15rem;
    color: #333;
    line-height: 1.8;
}

.blog-article ol,
.blog-article ul {
    margin-bottom: 1.5rem;
}

/*
 * Cores
 * Bege Claro: #eab676
 * Destaque (Tan): #d2b48c
 * Texto: #333333
 * Fundo Claro: #fdfaf6
 * Primária (Botões): #b89a74
 */

/* Estilos Globais */
body {
    font-family: 'Lora', serif;
    color: #333333;
    background-color: #fdfaf6;
    /* Um bege ainda mais claro para o fundo */
    line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.section-title {
    color: #333;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #d2b48c;
    margin: 10px auto 0;
}

.text-center .section-title::after {
    margin: 10px auto 0;
}

.text-start .section-title::after {
    margin: 10px 0 0;
}

/* Botões */
.btn-primary {
    background-color: #eab676;
    border-color: #eab676;
    padding: 12px 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    transition: all 0.3s ease;
    border-radius: 50px;
}

.btn-primary:hover {
    background-color: #d2b48c;
    border-color: #d2b48c;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-link {
    color: #eab676;
    text-decoration: none;
    font-weight: bold;
}

.btn-link:hover {
    color: #d2b48c;
}

.btn-home {
    background: linear-gradient(90deg, #eab676 0%, #fff8ee 100%);
    border: none;
    border-radius: 30px;
    padding: 0.6rem 1.4rem;
    font-size: 1.1rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    box-shadow: 0 2px 12px rgba(234, 182, 118, 0.12);
    transition: background 0.2s, transform 0.2s;
    color: #3d2c00 !important;
    text-decoration: none !important;
}

.btn-home:hover {
    background: linear-gradient(90deg, #eab676 60%, #b89a74 100%);
    color: #fff !important;
    transform: scale(1.05);
    box-shadow: 0 4px 18px rgba(234, 182, 118, 0.18);
}

.btn-home svg {
    transition: transform 0.2s;
}

.btn-home:hover svg {
    transform: translateX(-3px) scale(1.1);
}

/* Navegação */
.navbar {
    background-color: #eab676;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: background-color 0.3s;
}

.navbar .nav-link {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #3d2c00 !important;
    margin: 0 10px;
    transition: color 0.3s, transform 0.2s;
    display: flex;
    align-items: center;
}

.navbar .nav-link svg {
    vertical-align: middle;
    transition: transform 0.2s, fill 0.2s;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: #fff !important;
    transform: scale(1.08);
}

.navbar .nav-link:hover svg {
    transform: scale(1.2);
    filter: drop-shadow(0 2px 4px rgba(234, 182, 118, 0.3));
}

.logo {
    height: 50px;
    margin-right: 10px;
}

/* Seção Hero */
.hero-section {
    min-height: 100vh;
    background: url('../img/background1.png') no-repeat center center;
    background-size: cover;
    color: white;
    background-attachment: fixed;
    /* Efeito Parallax */
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

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

.hero-section h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 3.2rem;
    color: #b89a74;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(234, 182, 118, 0.10);
    margin-bottom: 1.2rem;
}

/* Seção Sobre */
#sobre img {
    max-width: 350px;
    width: 100%;
}

/* Seção Serviços */
#servicos .card {
    transition: all 0.3s ease;
    border-radius: 15px;
}

#servicos .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background-color: #eab676;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

#servicos .card:hover .icon-circle {
    background-color: #d2b48c;
    color: #333333;
}

/* Seção Blog */
.blog-card {
    overflow: hidden;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-radius: 10px;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.blog-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

/* Seção Contato */
.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.contact-info i {
    color: #eab676;
    margin-right: 4px;
}

.social-links a {
    color: #333;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #eab676;
}

/* Ícones SVG das redes sociais com efeito hover */
.svg-social {
    display: inline-block;
    margin-right: 16px;
    transition: transform 0.2s;
}

.svg-social:last-child {
    margin-right: 0;
}

.svg-icon {
    width: 32px;
    height: 32px;
    transition: box-shadow 0.2s, background 0.2s, transform 0.2s;
    box-shadow: 0 2px 8px rgba(234, 182, 118, 0.08);
    border-radius: 8px;
    background: #eab676;
}

.svg-social:hover .svg-icon,
.svg-social:focus .svg-icon {
    background: #d18c2e;
    box-shadow: 0 4px 16px rgba(234, 182, 118, 0.18);
    transform: scale(1.18);
}

#contato .form-control {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 12px;
}

#contato .form-control:focus {
    border-color: #b89a74;
    box-shadow: 0 0 0 0.25rem rgba(184, 154, 116, 0.25);
}

/* Links amigáveis na seção de contato */
.contact-link {
    color: #eab676;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s, box-shadow 0.2s;
    border-radius: 16px;
    padding: 2px 10px;
    background: #fff8f0;
    box-shadow: 0 2px 8px rgba(234, 182, 118, 0.08);
    margin-left: 6px;
}

.contact-link:hover,
.contact-link:focus {
    color: #fff;
    background: #eab676;
    box-shadow: 0 4px 16px rgba(234, 182, 118, 0.18);
    text-decoration: none;
}

/* Layout aprimorado para o formulário de contato */
.contact-form {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 32px rgba(234, 182, 118, 0.35);
    padding: 2.2rem 1.5rem;
    max-width: 420px;
    margin: 0 auto;
}

.contact-form .form-label {
    color: #eab676;
    font-weight: 600;
    font-size: 1.08rem;
    margin-bottom: 0.4rem;
}

.contact-form .form-control {
    border-radius: 10px;
    border: 1px solid #eab676;
    font-size: 1.05rem;
    box-shadow: none;
    transition: border-color 0.2s;
}

.contact-form .form-control:focus {
    border-color: #d18c2e;
    box-shadow: 0 0 0 2px rgba(234, 182, 118, 0.15);
}

.contact-form button[type="submit"] {
    margin-top: 1.2rem;
    font-size: 1.08rem;
    font-weight: 600;
    border-radius: 10px;
}

/* Rodapé */
footer {
    background-color: #eab676;
}

/* Link moderno para Política de Privacidade no rodapé */
.privacy-link {
    color: #eab676;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: color 0.2s, box-shadow 0.2s;
    border-radius: 20px;
    padding: 6px 18px;
    background: #fff8f0;
    box-shadow: 0 2px 8px rgba(234, 182, 118, 0.08);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.privacy-link:hover,
.privacy-link:focus {
    color: #fff;
    background: #eab676;
    box-shadow: 0 4px 16px rgba(234, 182, 118, 0.18);
    text-decoration: none;
}

.privacy-link i {
    font-size: 1.1em;
}

/* Link moderno para voltar à página inicial no rodapé da privacidade */
.home-link {
    color: #eab676;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: color 0.2s, box-shadow 0.2s;
    border-radius: 20px;
    padding: 6px 18px;
    background: #fff8f0;
    box-shadow: 0 2px 8px rgba(234, 182, 118, 0.08);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.home-link:hover,
.home-link:focus {
    color: #fff;
    background: #eab676;
    box-shadow: 0 4px 16px rgba(234, 182, 118, 0.18);
    text-decoration: none;
}

.home-link i {
    font-size: 1.1em;
}

/* Banner de Cookies */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    color: white;
    padding: 15px 0;
    z-index: 1000;
    display: none;
    /* Inicia oculto */
}

.cookie-banner p {
    margin: 0;
    font-size: 0.9rem;
}

.cookie-banner a {
    color: #d2b48c;
    text-decoration: underline;
}

/* Moldura para artigo de privacidade */
.privacy-article {
    background: #fff8f0;
    border-radius: 22px;
    box-shadow: 0 4px 24px rgba(234, 182, 118, 0.10);
    padding: 2.5rem 2rem;
    max-width: 800px;
    margin: 0 auto;
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.08rem;
    color: #6c4f2a;
}

.privacy-article h1,
.privacy-article h4 {
    color: #eab676;
    font-family: 'Lora', serif;
}

.privacy-article ul {
    margin-left: 1.2rem;
}

/* Responsividade */
@media (max-width: 991.98px) {
    .navbar-nav {
        text-align: center;
        background: #fdfaf6;
        padding-top: 1rem;
    }

    .hero-section {
        min-height: 70vh;
    }

    #sobre img {
        margin-bottom: 2rem;
    }
}