:root {
    --primary-color: #D4AF37; /* Dourado Luxuoso */
    --primary-hover: #C5A017;
    --bg-dark: #120b08;
    --bg-card: #1c130d;
    --bg-card-hover: #261a12;
    --text-white: #f5f5f5;
    --text-muted: #adadad;
    --border-color: #2f2219;
    --accent-red: #8B2C24;

    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;
    
    --transition: 0.3s ease-in-out;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: var(--text-white);
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

/* Typography */
h1, h2, h3, h4, .logo {
    font-family: var(--font-heading);
    font-weight: 600;
}

h1 {
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

h2 span, h1 span {
    color: var(--primary-color);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #111;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: #111;
}

/* Navbar */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition);
    background: transparent;
}

.header.scrolled {
    background: rgba(18, 11, 8, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

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

.logo {
    font-size: 1.8rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    padding-top: 150px;
    padding-bottom: 100px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 11, 8, 0.7); /* Sobreposição escura */
}

.hero-container {
    display: flex;
    justify-content: center;
    text-align: center;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
}

.icon-accent {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #111;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-content p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 450px;
}

/* Áreas de Atuação (Cases) */
.cases {
    padding: 80px 0;
    background: linear-gradient(to bottom, var(--bg-dark), #160D09);
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.case-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    border: 1px solid var(--border-color);
}

.case-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.case-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    transform: translateY(10px);
    transition: var(--transition);
}

.case-overlay span {
    color: var(--primary-color);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.case-overlay h3 {
    font-size: 1.3rem;
    margin-top: 5px;
}

.case-card:hover img {
    transform: scale(1.05);
}

.case-card:hover .case-overlay {
    transform: translateY(0);
}

.case-action {
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    aspect-ratio: 1/1;
    width: 250px;
    margin: 0 auto;
    border: none;
}

.case-action a {
    color: #111;
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

/* Equipe */
.team {
    padding: 80px 0;
}

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

.team-card {
    background: var(--bg-card);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

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

.team-image {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 6px;
    margin-bottom: 20px;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-info h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
}

.team-info span {
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background-color: var(--bg-card);
}

.testimonial-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.slider-btn {
    background: var(--primary-color);
    color: #111;
    border: none;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.1rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    opacity: 0.8;
}

.testimonial-content {
    text-align: center;
}

.quote {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.client-info {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.client-info img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.client-info span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Success Story / Features */
.success-story {
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.feature-item {
    background: rgba(28, 19, 13, 0.4);
    border: 1px solid var(--border-color);
    padding: 30px;
    border-radius: 8px;
    transition: var(--transition);
}

.feature-item:hover {
    background: var(--bg-card);
    border-color: var(--primary-color);
}

.feature-icon {
    display: inline-block;
    background: var(--primary-color);
    color: #111;
    padding: 5px 15px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.feature-icon i {
    margin-right: 8px;
}

.feature-item h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.feature-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Pricing */
.pricing {
    padding: 80px 0;
    background: var(--bg-card);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: center;
}

.price-card {
    background: var(--bg-dark);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
}

.price-card.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
    background: #1a100a;
}

.price-card:hover {
    transform: translateY(-10px);
}
.price-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

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

.price-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
    min-height: 48px;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-heading);
    margin-bottom: 20px;
}

.price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-family: var(--font-body);
}

.price-card .btn {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 30px;
}

.features-list {
    text-align: left;
}

.features-list li {
    margin-bottom: 15px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.features-list li i {
    color: var(--primary-color);
}

.features-list li i.disabled {
    color: #444;
}

/* Contact CTA */
.contact-cta {
    padding: 100px 0;
}

.cta-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.cta-content {
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    color: var(--text-muted);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.cta-btn {
    align-self: flex-start;
    font-size: 1.1rem;
    padding: 15px 30px;
}

.cta-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

/* Footer */
.footer {
    background: #0a0604;
    padding: 60px 0 20px;
    border-top: 1px solid var(--border-color);
}

.footer-top {
    margin-bottom: 40px;
}

.footer-info p {
    color: var(--text-muted);
    margin-top: 15px;
    max-width: 400px;
}

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

.footer-item h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.footer-item p {
    color: var(--text-muted);
    line-height: 1.8;
}

.footer-item.links ul li {
    margin-bottom: 10px;
}

.footer-item.links ul li a {
    color: var(--text-muted);
}

.footer-item.links ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    color: #666;
    font-size: 0.9rem;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}

/* Media Queries (Responsive) */
@media (max-width: 992px) {
    .hero-container {
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content p {
        margin: 0 auto 30px;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .price-card.featured {
        transform: scale(1);
    }
    .price-card.featured:hover {
        transform: translateY(-10px);
    }

    .cta-wrapper {
        grid-template-columns: 1fr;
    }
    
    .cta-map {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(18, 11, 8, 0.98);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: block;
    }

    .nav-actions .btn {
        display: none; /* Hide top CTA on small screens */
    }
    
    .cta-content {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .cases-grid, .team-grid, .features-grid, .pricing-grid, .footer-data {
        grid-template-columns: 1fr;
    }
    
    .case-action {
        width: 200px;
    }

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

    h2 {
        font-size: 1.8rem;
    }

    .testimonial-slider {
        gap: 15px;
    }

    .slider-btn {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
}
