:root {
    --primary: #F7931E;
    /* Orange from Logo */
    --primary-dark: #D2691E;
    --secondary: #A13D2D;
    /* Brick Red from Logo */
    --accent: #FFEA00;
    /* Yellow from Logo */

    --bg-dark: #F5F7FA;
    /* Light theme background */
    --bg-card: #FFFFFF;
    /* White Cards */

    --text-light: #1A1A1A;
    /* Dark text for readability */
    --text-muted: #6B7280;
    /* Gray text for secondary info */

    --glass-bg: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(0, 0, 0, 0.08);
    /* Subtle dark border lines */

    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.08);
}

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

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

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
    transition: 0.3s;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo span {
    color: var(--text-light);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 600;
    transition: 0.3s;
    font-size: 0.95rem;
}

nav ul li a:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 5%;
    position: relative;
    /* Hero set inline to override, but base here */
}

.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, var(--secondary), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: 1.3rem;
    color: #4A4A4A;
    font-weight: 500;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    animation: fadeInUp 1s ease 0.2s backwards;
}

/* Buttons */
.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
    display: inline-block;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 10px 20px rgba(247, 147, 30, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    background: var(--primary-dark);
    box-shadow: 0 15px 30px rgba(247, 147, 30, 0.4);
    color: white;
}

.btn i {
    font-size: inherit !important;
    color: inherit !important;
    margin-bottom: 0 !important;
    margin-right: 8px;
    display: inline-block !important;
}

/* Sections */
section {
    padding: 100px 5%;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--secondary);
    font-weight: 900;
    margin-bottom: 10px;
}

.section-title .underline {
    width: 80px;
    height: 5px;
    border-radius: 5px;
    background: var(--primary);
    margin: 0 auto;
}

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

.card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 24px;
    transition: 0.4s;
    box-shadow: var(--shadow-sm);
}

.card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.card i {
    font-size: 3rem;
    color: var(--secondary);
    margin-bottom: 20px;
    display: block;
}

/* Badges */
.badge-min {
    display: inline-block;
    background: rgba(161, 61, 45, 0.1);
    color: var(--secondary);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Contact Section */
.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: center;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.info-item {
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.info-item h4 {
    color: var(--secondary);
    font-weight: 800;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 15px;
}

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 16/10;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.5s;
    box-shadow: var(--shadow-sm);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Nav Orcamento Highlight */
.nav-orcamento {
    color: var(--secondary) !important;
    font-weight: 800 !important;
    border: 2px solid var(--secondary);
    padding: 8px 20px;
    border-radius: 50px;
}

.nav-orcamento:hover {
    background: var(--secondary);
    color: white !important;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    nav ul {
        display: none;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}