/* Reset e Estilos Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    background-color: #ffcc00;
    color: #333;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

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

/* Header */
header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 50px;
    margin-right: 15px;
}

.logo h1 {
    font-size: 24px;
    color: #333;
}

.logo h1 span {
    color: #ffcc00;
}

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

nav ul li a {
    display: block;
    padding: 15px 20px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    transition: all 0.3s ease;
}

nav ul li a:hover, nav ul li a.active {
    color: #ffcc00;
    border-bottom: 3px solid #ffcc00;
}

/* Banner */
.banner {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://via.placeholder.com/1920x600');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 0;
}

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

.banner p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Destaques */
.destaques {
    padding: 60px 0;
    text-align: center;
}

.destaques h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #333;
}

.cards {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.card {
    flex: 1;
    min-width: 250px;
    background: white;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
}

.card i {
    font-size: 2.5rem;
    color: #ffcc00;
    margin-bottom: 20px;
}

.card h3 {
    margin-bottom: 15px;
    color: #333;
}

/* Institucional */
.institucional {
    padding: 60px 0;
}

.institucional h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #333;
}

.institucional .content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.institucional .text {
    flex: 1;
}

.institucional .image {
    flex: 1;
}

.institucional .image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.institucional h3 {
    color: #ffcc00;
    margin: 20px 0 15px;
}

/* Lojas */
.lojas {
    padding: 60px 0;
}

.lojas h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #333;
}

.lojas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.loja-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.loja-card:hover {
    transform: translateY(-5px);
}

.loja-sigla {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ffcc00;
    margin-bottom: 10px;
}

.loja-nome {
    color: #333;
    margin-bottom: 15px;
}

.btn-loja {
    display: inline-block;
    background-color: #ffcc00;
    color: #333;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-loja:hover {
    background-color: #e6b800;
}

/* Contato */
.contato {
    padding: 60px 0;
}

.contato h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: #333;
}

.contato-content {
    display: flex;
    gap: 40px;
}

.contato-info, .contato-form {
    flex: 1;
}

.contato-info {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
}

.contato-info h3 {
    color: #ffcc00;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.contato-info p {
    margin-bottom: 10px;
}

.horario {
    margin-top: 30px;
}

.contato-form {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contato-form h3 {
    color: #ffcc00;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
    margin-right: 10px;
}

.footer-logo span {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ffcc00;
}

.footer-info p {
    margin-bottom: 10px;
    color: #ddd;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #ffcc00;
    color: #333;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: #e6b800;
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555;
    color: #ddd;
    font-size: 0.9rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .institucional .content, .contato-content {
        flex-direction: column;
    }
    
    .cards {
        flex-direction: column;
    }
    
    nav ul {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
    }
}