/* --- CONFIGURAÇÕES GERAIS --- */
:root {
    /* Paleta de Cores: Elegância e Modernidade */
    --primary: #2c3e50;
    /* Azul Petróleo Escuro (Sofisticação) */
    --accent: #d4af37;
    /* Dourado/Gold (Premium) */
    --accent-light: #f3e5ab;
    /* Tom Creme/Areia */
    --text-dark: #333333;
    --text-light: #f9f9f9;
    --white: #ffffff;
    --bg-light: #fdfdfd;
    --bg-section: #f4f4f4;
    --gradient: linear-gradient(135deg, var(--primary), #1a252f);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    text-decoration: none;
    list-style: none;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Tipografia de Destaque */
h1,
h2,
h3,
.logo {
    font-family: 'Cormorant Garamond', serif;
    /* Fonte serifada elegante */
}

/* --- UTILITÁRIOS --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 90px 0;
}

.text-center {
    text-align: center;
}

.btn {
    display: inline-block;
    padding: 14px 35px;
    background: var(--accent);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
    /* Cantos retos para elegância */
    transition: all 0.4s ease;
    font-size: 0.85rem;
    cursor: pointer;
    border: 1px solid var(--accent);
}

.btn:hover {
    background: transparent;
    color: var(--accent);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary);
}

/* --- HEADER & NAV --- */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    height: 85px;
    display: flex;
    align-items: center;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.8rem;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.logo span {
    color: var(--accent);
    font-weight: 400;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -5px;
    left: 0;
    background: var(--accent);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
}

/* --- HERO SECTION --- */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(44, 62, 80, 0.6)), url('https://images.unsplash.com/photo-1606811841689-23dfddce3e95?q=80&w=2000&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    padding-top: 85px;
}

.hero-content {
    max-width: 900px;
    animation: fadeIn 1.5s ease;
}

.hero h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--accent);
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 600;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    font-weight: 300;
    opacity: 0.9;
}

/* --- CARDS DE DIFERENCIAIS (GRID FLUTUANTE) --- */
.features {
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 0;
    /* Sem gap para visual contínuo */
    box-shadow: var(--shadow);
    background: var(--white);
    border-radius: 5px;
    overflow: hidden;
}

.feature-card {
    padding: 50px 40px;
    text-align: center;
    border-right: 1px solid #eee;
    transition: 0.3s;
    background: var(--white);
}

.feature-card:last-child {
    border-right: none;
}

.feature-card:hover {
    background: var(--bg-light);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 15px;
}

/* --- SOBRE A PROFISSIONAL --- */
.about {
    background: var(--white);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-img-box {
    position: relative;
    padding: 20px;
}

.about-img-box img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    filter: sepia(10%);
    /* Toque elegante */
    box-shadow: 20px 20px 0 var(--accent-light);
    /* Moldura deslocada */
}

.section-title {
    margin-bottom: 30px;
}

.section-title span {
    display: block;
    color: var(--accent);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 3rem;
    color: var(--primary);
    line-height: 1.2;
}

.about-text p {
    margin-bottom: 20px;
    color: #666;
    font-size: 1.05rem;
}

/* --- ESPECIALIDADES (GRID ESTILOSO) --- */
.services {
    background-color: var(--bg-section);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--white);
    padding: 40px;
    transition: all 0.4s ease;
    position: relative;
    border-bottom: 3px solid transparent;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.service-card:hover {
    transform: translateY(-10px);
    border-bottom: 3px solid var(--accent);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-number {
    font-size: 4rem;
    font-family: 'Cormorant Garamond', serif;
    color: #f0f0f0;
    position: absolute;
    top: 20px;
    right: 30px;
    font-weight: 700;
    z-index: 0;
    transition: 0.4s;
}

.service-card:hover .service-number {
    color: var(--accent-light);
}

.service-content {
    position: relative;
    z-index: 1;
}

.service-content i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 20px;
    display: block;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary);
}

/* --- PARALLAX CHAMATIVO --- */
.cta-parallax {
    background: linear-gradient(rgba(44, 62, 80, 0.85), rgba(44, 62, 80, 0.85)), url('https://images.unsplash.com/photo-1629909613654-28e377c37b09?q=80&w=2068&auto=format&fit=crop');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    text-align: center;
    color: var(--white);
}

.cta-parallax h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

/* --- LOCALIZAÇÃO E CONTATO --- */
.contact-container {
    display: grid;
    grid-template-columns: 40% 60%;
    background: var(--white);
    box-shadow: var(--shadow);
    border-radius: 5px;
    overflow: hidden;
}

.contact-info {
    background: var(--primary);
    color: var(--white);
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--accent);
}

.info-item {
    display: flex;
    margin-bottom: 25px;
    align-items: flex-start;
}

.info-item i {
    color: var(--accent);
    font-size: 1.2rem;
    margin-right: 15px;
    margin-top: 5px;
}

.info-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.map-wrapper {
    width: 100%;
    height: 100%;
    min-height: 450px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* --- FOOTER --- */
footer {
    background: #1a252f;
    color: #888;
    padding: 60px 0 20px;
    font-size: 0.9rem;
    text-align: center;
}

.footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 20px;
    display: block;
}

.footer-logo span {
    color: var(--accent);
}

.footer-social {
    margin: 20px 0;
}

.footer-social a {
    color: var(--white);
    margin: 0 10px;
    font-size: 1.2rem;
    transition: 0.3s;
}

.footer-social a:hover {
    color: var(--accent);
}

.copyright {
    border-top: 1px solid #2c3e50;
    padding-top: 20px;
    margin-top: 40px;
}

/* --- ANIMATIONS --- */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- RESPONSIVIDADE --- */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 3rem;
    }

    .about-container {
        grid-template-columns: 1fr;
    }

    .about-img-box {
        margin-bottom: 40px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        border-right: none;
        border-bottom: 1px solid #eee;
    }
}

@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }

    .nav-links {
        position: absolute;
        top: 85px;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        align-items: center;
        padding: 40px 0;
        transform: translateY(-150%);
        transition: 0.4s ease;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .hamburger {
        display: block;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .section-title h2 {
        font-size: 2.2rem;
    }
}