/* Reset e estilos base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--fonte-principal), sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo img {
    max-height: 50px;
    width: auto;
}

/* Navegação */
.main-nav {
    flex: 1;
    margin: 0 30px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 20px;
    justify-content: center;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 10px;
    transition: color 0.3s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--cor-primaria);
}

/* Botões */
.btn {
    display: inline-block;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--cor-primaria);
    color: #fff;
}

.btn-primary:hover {
    background: #0056b3;
}

.btn-outline {
    border: 2px solid var(--cor-primaria);
    color: var(--cor-primaria);
    background: transparent;
}

.btn-outline:hover {
    background: var(--cor-primaria);
    color: #fff;
}

.header-buttons {
    display: flex;
    gap: 10px;
}

/* Mobile menu */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

/* Conteúdo principal */
.site-content {
    min-height: calc(100vh - 80px - 200px);
    padding: 40px 0;
}

/* Widgets */
.widget {
    margin: 30px 0;
    padding: 20px;
    border-radius: 8px;
}

.widget-imagem {
    max-width: 100%;
    height: auto;
}

.widget-video {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.widget-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.widget-galeria {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.widget-galeria img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.widget-botoes {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* Footer */
.site-footer {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 40px 0;
}

/* Responsividade */
@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
        height: auto;
        padding: 15px 0;
    }
    
    .main-nav {
        display: none;
        width: 100%;
        margin: 15px 0;
    }
    
    .main-nav.active {
        display: block;
    }
    
    .nav-menu {
        flex-direction: column;
        align-items: center;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .header-buttons {
        margin-left: auto;
    }
}

@media (max-width: 480px) {
    .header-buttons {
        display: none;
    }
    
    .widget-galeria {
        grid-template-columns: 1fr;
    }
}