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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #fff;
    background: #1a1a1a;
}

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

/* Header */
header {
    background: #1a1a1a;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.logo {
    height: 100px;
    width: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #c0c0c0;
    box-shadow: 0 0 20px rgba(192, 192, 192, 0.4);
}

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

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ffd700;
}

/* Hero Section */
.hero {
    position: relative;
    height: 400px;
    margin-top: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: -2;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

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

.btn {
    display: inline-block;
    background: #ffd700;
    color: #1a1a1a;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s;
}

.btn:hover {
    background: #ffed4e;
}

/* Sections */
section {
    padding: 4rem 0;
}

.sobre {
    background: #2a2a2a;
}

.sobre h2, .servicos h2, .contato h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    color: #fff;
}

.sobre p {
    text-align: center;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.credenciais {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.credencial {
    background: linear-gradient(135deg, #333 0%, #1a1a1a 100%);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.credencial:hover {
    border-color: #ffd700;
    transform: translateY(-3px);
}

.credencial strong {
    color: #ffd700;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
}

.credencial p {
    color: #ccc;
    margin: 0;
    font-size: 0.95rem;
    text-align: center;
}

/* Serviços */
.servicos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.servicos-grid .servico:last-child {
    grid-column: 1 / -1;
    max-width: 400px;
    margin: 0 auto;
}

.servico {
    background: linear-gradient(135deg, #333 0%, #2a2a2a 100%);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    color: #fff;
}

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

.servico:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #ffd700;
}

.servico:hover::before {
    left: 100%;
}

.servico-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.servico h3 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: bold;
}

.servico p {
    color: #ccc;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.preco {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ffd700;
    background: #1a1a1a;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    display: inline-block;
    margin-top: 1rem;
}

.servico.premium {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: #fff;
    border: 2px solid #ffd700;
}

.servico.premium h3 {
    color: #ffd700;
}

.servico.premium p {
    color: #ccc;
}

.servico.premium .preco {
    background: #ffd700;
    color: #1a1a1a;
}

/* Contato */
.contato {
    background: #1a1a1a;
    color: #fff;
}

.contato h2 {
    color: #fff;
}

.contato-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.info {
    text-align: center;
}

.info h3 {
    color: #ffd700;
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
}

.instagram {
    margin-top: 0.5rem;
    color: #ffd700;
    font-weight: bold;
}

.instagram a {
    color: #ffd700;
    text-decoration: none;
    transition: color 0.3s;
}

.instagram a:hover {
    color: #c0c0c0;
}

/* Ambiente */
.ambiente {
    background: #2a2a2a;
}

.ambiente h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    color: #fff;
}

.ambiente p {
    text-align: center;
    font-size: 1.1rem;
    max-width: 900px;
    margin: 0 auto 3rem;
    color: #ccc;
    line-height: 1.8;
}

.ambiente-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    background: linear-gradient(135deg, #333 0%, #1a1a1a 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.feature:hover {
    border-color: #ffd700;
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.feature h3 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.feature p {
    color: #ccc;
    margin: 0;
    font-size: 0.95rem;
}

/* Menu Hambúrguer */
.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 25px;
    justify-content: space-between;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Responsive */
@media (max-width: 768px) {
    header {
        padding: 0.5rem 0;
    }
    
    header .container {
        justify-content: space-between;
        align-items: center;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #1a1a1a;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 999;
    }
    
    nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    nav ul {
        flex-direction: column;
        padding: 1rem 0;
    }
    
    nav ul li {
        margin: 0;
        border-bottom: 1px solid #333;
    }
    
    nav ul li:last-child {
        border-bottom: none;
    }
    
    nav ul li a {
        display: block;
        padding: 1rem 2rem;
        text-align: left;
    }
    
    .hero {
        margin-top: 80px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .servicos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .servico {
        padding: 2rem 1.5rem;
    }
    
    .preco {
        font-size: 1.5rem;
    }
}