/* ===== ESTILOS COMPARTILHADOS (IGUAL AO INDEX.CSS) ===== */

/* 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;
}

/* 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;
}

.btn {
    display: inline-block;
    background-color: #003366;
    color: white;
    padding: 12px 30px;
    margin-top: 20px;
    border-radius: 4px;
    transition: all 0.3s;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #004080;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* ===== ESTILOS ESPECÍFICOS PARA CONTATO ===== */

.contact-page {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h1 {
    color: #003366;
    font-size: 2.8rem;
    text-transform: uppercase;
    margin-bottom: 15px;
    position: relative;
}

.contact-header h1::after {
    content: '';
    display: block;
    width: 100px;
    height: 4px;
    background-color: #ffcc00;
    margin: 20px auto 0;
}

.contact-content {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
}

.contact-info {
    flex: 1;
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 51, 102, 0.1);
}

.contact-info h2 {
    color: #003366;
    font-size: 1.8rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.contact-info h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #ffcc00;
}

.contact-info p {
    margin-bottom: 30px;
    color: #555;
    line-height: 1.8;
}

.contact-methods {
    margin-top: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    transition: transform 0.3s;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-item i {
    font-size: 1.5rem;
    color: #003366;
    margin-right: 20px;
    margin-top: 5px;
    min-width: 25px;
    transition: color 0.3s;
}

.contact-item:hover i {
    color: #ffcc00;
}

.contact-item p {
    margin: 0;
    font-size: 1.1rem;
    color: #333;
    line-height: 1.6;
}

.contact-form {
    flex: 1;
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 51, 102, 0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #003366;
    font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
    background-color: #f9f9f9;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #003366;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 51, 102, 0.1);
    background-color: white;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23003366'%3e%3cpath d='M7 10l5 5 5-5z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 15px;
}

.contact-map {
    height: 400px;
    background-color: #eee;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-top: 40px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsividade */
@media (max-width: 992px) {
    .contact-content {
        flex-direction: column;
    }
    
    .contact-info,
    .contact-form {
        width: 100%;
    }
}

@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;
    }
    
    .contact-header h1 {
        font-size: 2.2rem;
    }
    
    .contact-info,
    .contact-form {
        padding: 30px;
    }
    
    .contact-map {
        height: 350px;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-col {
        width: 80%;
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .contact-page {
        padding: 60px 0;
    }
    
    .contact-header h1 {
        font-size: 1.8rem;
    }
    
    .contact-item {
        flex-direction: column;
    }
    
    .contact-item i {
        margin-bottom: 10px;
    }
}