:root {
    --primary-color: #000000;
    --secondary-color: #D4AF37;
    --accent-color: #B8860B;
    --gold-light: #FFD700;
    --gold-dark: #996515;
    --text-color: #FFFFFF;
    --light-bg: #1a1a1a;
    --card-bg: #2a2a2a;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: #000;
}

/* Header e Navegação */
header {
    background-color: var(--primary-color);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--secondary-color);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo h1 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--secondary-color);
    transition: width 0.3s ease;
}

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

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/background.png') no-repeat center center;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-color);
    padding: 0 2rem;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, var(--gold-dark), var(--gold-light));
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: linear-gradient(45deg, var(--gold-light), var(--gold-dark));
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Serviços */
.services {
    position: relative;
    z-index: 10;
    margin-top: 0.5rem;
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.services h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

.services-grid-modern {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    background: none;
}

.service-card-modern {
    background: rgba(20, 20, 20, 0.95);
    border: 2px solid var(--secondary-color);
    border-radius: 20px;
    box-shadow: 0 0 32px 4px rgba(212, 175, 55, 0.25), 0 8px 32px rgba(0,0,0,0.7);
    padding: 2.5rem 2rem 2rem 2rem;
    width: 340px;
    text-align: center;
    color: #fff;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card-modern:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 0 48px 8px #FFD700, 0 8px 32px rgba(0,0,0,0.8);
}

.service-card-modern i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1.2rem;
    filter: drop-shadow(0 0 12px #FFD700);
}

.service-card-modern h3 {
    color: var(--secondary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.service-card-modern p {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.cta-servicos-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 1100px) {
    .services-grid-modern {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    .service-card-modern {
        width: 90vw;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    .services {
        margin-top: 1.5rem;
    }
    .service-card-modern {
        padding: 1.5rem 1rem 1rem 1rem;
    }
    header {
        padding: 1.5rem 0;
    }
    nav {
        padding: 0 1rem;
    }
    .nav-links {
        display: none;
    }
    .mobile-menu-btn {
        top: 38px;
        font-size: 2.6rem;
    }
    .mobile-menu-btn i {
        font-size: 2.6rem;
    }
    .mobile-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100vw;
        background: #111;
        z-index: 3000;
        box-shadow: 0 8px 32px rgba(0,0,0,0.7);
        padding: 2rem 0 1rem 0;
        border-bottom: 2px solid var(--secondary-color);
    }
    .mobile-menu.active {
        display: block;
    }
    .mobile-menu ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    .mobile-menu ul li a {
        color: var(--secondary-color);
        font-size: 1.3rem;
        text-decoration: none;
        padding: 0.5rem 2rem;
        display: block;
        width: 100vw;
    }
    .mobile-menu ul li a:hover {
        background: var(--secondary-color);
        color: #111;
    }
    .hero {
        background-position: 80% center !important;
    }
    .hero-content h2 {
        font-size: 2.1rem;
        line-height: 1.15;
        padding: 0 0.5rem;
        text-shadow: 2px 2px 8px #000, 0 0 8px #FFD70055;
        margin-bottom: 1.2rem;
    }
    .hero-content p {
        font-size: 1.1rem;
        line-height: 1.5;
        padding: 0 0.5rem;
        text-shadow: 1px 1px 6px #000;
        margin-bottom: 0;
    }
    .logo {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .logo img {
        height: 64px !important;
        width: auto !important;
        max-width: 160px;
        display: block;
    }
}

/* Sobre */
.about {
    padding: 5rem 2rem;
    background-color: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.1) 0%, rgba(255, 215, 0, 0.2) 50%, rgba(212, 175, 55, 0.1) 100%);
    z-index: 1;
}

.about h2 {
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 3rem;
    font-size: 2.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
}

.about-card {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--card-bg);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--secondary-color);
    overflow: hidden;
    display: flex;
    position: relative;
    z-index: 2;
}

.about-image {
    width: 40%;
    position: relative;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-right: 2px solid var(--secondary-color);
}

.about-content {
    width: 60%;
    padding: 2.5rem;
    position: relative;
}

.about-text h3 {
    color: var(--secondary-color);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.about-text .specialty {
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.about-text p {
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-text p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .about {
        padding: 4rem 1rem;
    }
    
    .about h2 {
        font-size: 2rem;
    }
    
    .about-card {
        flex-direction: column;
    }
    
    .about-image {
        width: 100%;
        height: 300px;
    }
    
    .about-image img {
        border-right: none;
        border-bottom: 2px solid var(--secondary-color);
    }
    
    .about-content {
        width: 100%;
        padding: 1.5rem;
    }
    
    .about-text h3 {
        font-size: 1.5rem;
    }
    
    .about-text .specialty {
        font-size: 1.1rem;
    }
    
    .about-text p {
        font-size: 1rem;
    }
}

/* Contato */
.contact {
    padding: 5rem 2rem;
    background-color: var(--light-bg);
}

.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--secondary-color);
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-item {
    text-align: center;
    padding: 2rem;
    background: var(--card-bg);
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3),
                inset 0 0 20px rgba(212, 175, 55, 0.2);
    border: 1px solid var(--secondary-color);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(212, 175, 55, 0.1) 0%,
        rgba(255, 215, 0, 0.2) 50%,
        rgba(212, 175, 55, 0.1) 100%);
    z-index: 1;
}

.contact-item:hover {
    transform: translateY(-5px) rotateX(3deg);
    box-shadow: 0 15px 30px rgba(212, 175, 55, 0.3),
                inset 0 0 30px rgba(212, 175, 55, 0.3);
}

.contact-item i {
    font-size: 2rem;
    color: var(--gold-light);
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.contact-item p, .contact-item a, .contact-item a:visited {
    color: #fff !important;
    text-decoration: none !important;
    font-weight: 500;
    transition: color 0.2s;
}

.contact-item a:hover, .contact-item a:active {
    color: var(--secondary-color) !important;
    text-decoration: underline !important;
}

.social-media {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.social-media a {
    color: var(--secondary-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-media a:hover {
    color: var(--accent-color);
    transform: scale(1.2);
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--text-color);
    text-align: center;
    padding: 2rem;
    border-top: 2px solid var(--secondary-color);
}

/* Dropdown Navbar */
.dropdown {
    position: relative;
}

.dropbtn {
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--primary-color);
    min-width: 180px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
    border: 1px solid var(--secondary-color);
    border-radius: 0 0 10px 10px;
    z-index: 1002;
    top: 100%;
    left: 0;
    padding: 0.5rem 0;
}

.dropdown-content a {
    color: var(--text-color);
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    transition: background 0.2s, color 0.2s;
}

.dropdown-content a:hover {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.dropdown:hover .dropdown-content {
    display: block;
}

@media (max-width: 768px) {
    .dropdown-content {
        position: static;
        min-width: 100%;
        box-shadow: none;
        border: none;
        border-radius: 0;
    }
}

.mobile-menu-btn {
    display: none;
}
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
        background: none;
        border: none;
        color: var(--secondary-color);
        font-size: 2.6rem;
        position: fixed;
        left: 0.5rem;
        top: 38px;
        right: auto;
        transform: none;
        z-index: 3001;
        cursor: pointer;
    }
}

.about-card-centered {
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 3rem 2.5rem;
    min-height: 320px;
    box-shadow: 0 0 32px 8px #FFD70033, 0 8px 32px rgba(0,0,0,0.7);
    border: 2px solid var(--secondary-color);
    background: linear-gradient(120deg, #2a2a2a 80%, #FFD70011 100%);
}

.about-card-centered .about-content {
    width: 100%;
    padding: 0;
}

.about-card-centered .about-text h3 {
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 0.7rem;
    font-weight: bold;
    text-shadow: 2px 2px 8px #000, 0 0 8px #FFD70055;
}

.about-card-centered .about-text .specialty {
    color: var(--gold-light);
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-style: italic;
    letter-spacing: 1px;
}

.about-card-centered .about-text p {
    color: #fff;
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 8px #000;
}

@media (max-width: 768px) {
    .about-card-centered {
        padding: 2rem 1rem;
    }
    .about-card-centered .about-text h3 {
        font-size: 1.5rem;
    }
    .about-card-centered .about-text p {
        font-size: 1rem;
    }
}

@media (min-width: 769px) {
    .mobile-menu {
        display: none !important;
    }
} 