/* ARQUIVO: style.css */

/* Variáveis de Cores */
:root {
    --black: #0f0f0f;
    --dark-gray: #1a1a1a;
    --gold: #C5A059;
    --gold-light: #e0c179;
    --white: #ffffff;
    --text-gray: #cccccc;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--black);
    color: var(--text-gray);
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
}

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

/* Header */
header {
    background-color: rgba(15, 15, 15, 0.95);
    padding: 10px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}

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

.logo {
    height: 60px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--gold);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--black) 0%, #151515 100%);
    display: flex;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 50px;
}

.hero-split {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    width: 100%;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    border: 1px solid rgba(197, 160, 89, 0.3);
    box-shadow: -20px 20px 0px rgba(197, 160, 89, 0.1);
    transition: transform 0.3s;
}

.hero-image img:hover {
    transform: scale(1.02);
}

.hero-text {
    flex: 1;
    text-align: left;
}

.hero-text h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--white);
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 30px;
    max-width: 90%;
}

/* Botões */
.btn-gold {
    background: linear-gradient(45deg, var(--gold), #d4af37);
    color: #000;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    border: 1px solid var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-gold:hover {
    filter: brightness(1.1);
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    padding: 12px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 4px;
    text-transform: uppercase;
    border: 1px solid var(--white);
    margin-left: 10px;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-outline:hover {
    background: var(--white);
    color: var(--black);
}

.btn-nav {
    border: 1px solid var(--gold);
    padding: 8px 20px;
    border-radius: 4px;
}

/* Sections */
.section-padding {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 15px;
}

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

.bg-dark {
    background-color: var(--dark-gray);
}

/* Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.card {
    background-color: var(--black);
    padding: 30px;
    border: 1px solid rgba(197, 160, 89, 0.1);
    border-left: 3px solid var(--gold);
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.card p {
    margin-bottom: 20px;
}

/* Link dentro do Card */
.card-link {
    color: var(--gold);
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: color 0.3s;
    margin-top: auto; /* Empurra o link para o final do card */
}

.card-link:hover {
    color: var(--white);
}

/* Contato */
.contact-container {
    text-align: center;
}
.contact-buttons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

/* Mapa */
.map-container {
    border: 2px solid var(--gold);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.map-container iframe {
    display: block;
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid #333;
    font-size: 0.9rem;
    background-color: #050505;
}

/* Responsivo */
@media (max-width: 900px) {
    .header-content {
        flex-direction: column;
    }
    
    .nav-links {
        margin-top: 15px;
        gap: 15px;
        font-size: 0.8rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-split {
        flex-direction: column;
        text-align: center;
    }

    .hero-image {
        margin-bottom: 30px;
        order: -1;
    }

    .hero-text {
        text-align: center;
        padding: 0 10px;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .btn-outline {
        margin-left: 0;
    }
}