/* Estilos gerais */
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Cabeçalho com vídeo */
.video-header {
    position: relative;
    height: 80vh;
    overflow: hidden;
}

#header-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 80%;
    width: auto;
    height: auto;
    z-index: -1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    text-align: center;
}

.logo-container h1 {
    font-size: 5rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.logo-container p {
    font-size: 1.5rem;
    margin: 10px 0 0;
    letter-spacing: 2px;
}

/* Navegação principal */
.main-nav {
    background-color: #003366;
    padding: 10px 0;
}

.main-nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav li {
    margin: 0 15px;
}

.main-nav a {
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #5e5e5e;
}

/* Conteúdo principal */
.banner img {
    width: 100%;
    display: block;
}

.destaques {
    display: flex;
    justify-content: space-around;
    padding: 50px 0;
    background-color: #f5f5f5;
    text-align: center;
}

.destaque-item {
    width: 30%;
}

.destaque-item i {
    font-size: 3rem;
    color: #003366;
    margin-bottom: 20px;
}

.sobre-resumo {
    padding: 60px 20%;
    text-align: center;
}

.sobre-resumo h2 {
    color: #003366;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    background-color: #003366;
    color: white;
    padding: 12px 30px;
    margin-top: 20px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #004080;
}

.produtos-home {
    padding: 60px 5%;
    background-color: #f5f5f5;
    text-align: center;
}

.produtos-home h2 {
    color: #003366;
    margin-bottom: 40px;
}

.produtos-grid {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.produto-item {
    width: 32%;
    background-color: white;
    padding: 20px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.product-item img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    margin-bottom: 15px;
}

/* Rodapé */
footer {
    background-color: #003366;
    color: white;
    padding: 50px 0 0;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-col {
    width: 30%;
}

.footer-col h3 {
    color: #ffffff;
    margin-bottom: 20px;
}

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

.social-icons a {
    color: white;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #ffcc00;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    margin-top: 30px;
    background-color: #003366;
    font-size: 0.9rem;
}

/* Responsividade */
@media (max-width: 768px) {
    .logo-container h1 {
        font-size: 3rem;
    }
    
    .logo-container p {
        font-size: 1rem;
    }
    
    .main-nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    .main-nav li {
        margin: 5px 0;
    }
    
    .destaques {
        flex-direction: column;
        align-items: center;
    }
    
    .destaque-item {
        width: 80%;
        margin-bottom: 30px;
    }
    
    .produtos-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .produto-item {
        width: 80%;
        margin-bottom: 30px;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-col {
        width: 80%;
        margin-bottom: 30px;
    }
}