@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Inter:wght@300;400;500;600&display=swap');

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

body {
    background-color: #fcfcfc;
    color: #1a1a1a;
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

.content-container {
    width: 85%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 90px 0;
}

/* Header Sophisticated */
.nav-premium {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #eaeaea;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
    height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
}

.brand span {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: 2px;
    color: #111111;
}

.logo-premium {
    width: 38px;
    height: 38px;
    object-fit: cover;
    border-radius: 4px;
}

.links {
    display: flex;
    align-items: center;
}

.links a {
    text-decoration: none;
    color: #555555;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-left: 35px;
    position: relative;
    padding: 6px 0;
    transition: color 0.3s ease;
}

.links a:not(.btn-nav-contact)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #a3843b;
    transition: width 0.3s ease;
}

.links a:hover:not(.btn-nav-contact)::after, 
.links a.active:not(.btn-nav-contact)::after {
    width: 100%;
}

.links a:hover {
    color: #a3843b;
}

.btn-nav-contact {
    background-color: #111111;
    color: #ffffff !important;
    padding: 10px 22px !important;
    border-radius: 2px;
    letter-spacing: 1px;
    transition: all 0.3s ease !important;
}

.btn-nav-contact:hover {
    background-color: #a3843b;
    transform: translateY(-1px);
}

/* Hero Section Imersivo com Imagem de Fundo */
.hero-premium, .services-hero {
    position: relative;
    background: url('images/fundo.webp') no-repeat center center/cover;
    background-attachment: fixed; /* Efeito Paralaxe Leve */
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    padding: 0 20px;
}

.services-hero {
    height: 350px;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 16, 19, 0.88); /* Tom escuro profundo para valorizar o fundo corporativo */
    z-index: 1;
}

.hero-content, .services-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-content h1, .services-hero-content h1 {
    font-family: 'Cinzel', serif;
    font-size: 3.5rem;
    font-weight: 400;
    letter-spacing: 1px;
    margin: 15px 0 25px 0;
    color: #ffffff;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: #a3843b;
    text-transform: uppercase;
}

.divider {
    border: none;
    border-top: 1px solid #a3843b;
    width: 80px;
    margin: 0 auto 25px auto;
}

.tagline {
    font-size: 1.2rem;
    font-weight: 300;
    color: #dedede;
    margin-bottom: 40px;
}

/* Botões Interativos */
.hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-premium, .btn-outline {
    text-transform: uppercase;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    padding: 16px 36px;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-premium {
    background-color: #a3843b;
    color: #ffffff;
    border: 1px solid #a3843b;
}

.btn-premium:hover {
    background-color: #ffffff;
    color: #111111;
    border-color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.btn-outline {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
    border-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Grid Lado a Lado na Home (Quem Somos) */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.about-text-column h2 {
    font-family: 'Cinzel', serif;
    font-size: 2.4rem;
    font-weight: 400;
    margin: 10px 0 25px 0;
}

.about-text-column p {
    color: #444444;
    font-size: 1.05rem;
    margin-bottom: 20px;
    font-weight: 300;
    text-align: justify;
}

/* Card Dinâmico com Imagem de Fundo Interna */
.about-featured-card {
    position: relative;
    background: url('images/fundo.webp') no-repeat center center/cover;
    padding: 50px;
    height: 100%;
    min-height: 380px;
    display: flex;
    align-items: center;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 24, 28, 0.93);
    z-index: 1;
}

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

.section-label.accent {
    color: #ffffff;
    border-left: 2px solid #a3843b;
    padding-left: 10px;
}

.about-featured-card h3 {
    font-family: 'Cinzel', serif;
    color: #ffffff;
    font-size: 1.6rem;
    margin: 15px 0;
    font-weight: 400;
}

.mission-text {
    color: #d1d1d1;
    font-style: italic;
    font-size: 1.15rem;
    line-height: 1.6;
}

/* Grade Avançada e Interativa de Serviços */
.interactive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
}

.interactive-card {
    background-color: #ffffff;
    border: 1px solid #eceece;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.card-accent-line {
    height: 3px;
    width: 0;
    background-color: #a3843b;
    transition: width 0.35s ease;
}

.interactive-card:hover {
    transform: translateY(-5px);
    border-color: #e2d2b2;
    box-shadow: 0 20px 40px rgba(163, 132, 59, 0.05);
}

.interactive-card:hover .card-accent-line {
    width: 100%;
}

.card-body {
    padding: 40px 40px 20px 40px;
}

.interactive-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #111111;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.services-list {
    list-style: none;
}

.services-list li {
    font-size: 0.95rem;
    color: #555555;
    padding: 10px 0;
    border-bottom: 1px solid #f7f7f7;
    font-weight: 300;
}

/* Botão de Ação Inferior do Card */
.card-action-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #fafafa;
    border-top: 1px solid #eceece;
    text-decoration: none;
    color: #111111;
    font-size: 0.8rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.card-action-btn .arrow {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.interactive-card:hover .card-action-btn {
    background-color: #111111;
    color: #ffffff;
    border-top-color: #111111;
}

.interactive-card:hover .card-action-btn .arrow {
    transform: translateX(5px);
    color: #a3843b;
}

/* Footer Sóbrio */
.footer-premium {
    background-color: #0d1113;
    color: #ffffff;
    padding: 50px 0;
    border-top: 1px solid #1a2226;
    font-size: 0.9rem;
}

.footer-container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-left p {
    color: #888888;
    font-weight: 300;
}

.footer-whatsapp-link {
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 24px;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.footer-whatsapp-link strong {
    color: #a3843b;
    margin-left: 4px;
}

.footer-whatsapp-link:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: #a3843b;
}

/* Responsividade de Alto Padrão */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about-featured-card {
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        height: auto;
        padding: 20px 0;
        gap: 15px;
    }
    .links a {
        margin: 0 12px;
    }
    .hero-premium {
        height: 500px;
    }
    .hero-content h1 {
        font-size: 2.3rem;
    }
    .hero-actions {
        flex-direction: column;
        gap: 12px;
        padding: 0 20px;
    }
    .interactive-grid {
        grid-template-columns: 1fr;
    }
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
}