/* Importação de Fontes */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Open+Sans:wght@400;600&display=swap');

/* Variáveis de Cores */
:root {
    --primary-color: #001f3f; /* Azul Marinho Profundo */
    --secondary-color: #007bff; /* Azul Vibrante */
    --accent-color: #28a745; /* Verde Sucesso para CTAs */
    --text-color: #333;
    --light-text-color: #f8f9fa;
    --background-light: #f8f9fa;
    --background-dark: #e9ecef;
    --border-color: #dee2e6;
    --shadow-color: rgba(0, 0, 0, 0.1);
}

/* Base Styles */
body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--background-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-color);
    margin-bottom: 20px;
}

h1 {
    font-size: 3em;
    font-weight: 700;
    line-height: 1.2;
}
h1 strong {
    color: var(--secondary-color);
}

h2 {
    font-size: 2.5em;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
}
h2 strong {
    color: var(--secondary-color);
}

p {
    font-size: 1.1em;
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2em;
    color: #666;
    margin-bottom: 50px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--accent-color);
    color: white;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.btn-primary:hover {
    background-color: #218838;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.4);
}

.btn-secondary {
    background-color: black;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
	margin-right: 30px;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: gray;
    transform: translateY(-3px);
}

.cta-button {
    font-size: 1.2em;
    padding: 15px 30px;
    margin-top: 30px;
}

/* Header / Hero Section */
.hero {
    background: linear-gradient(to right, var(--primary-color), #0a3d62);
    color: white;
    padding: 40px 0 80px 0;
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 20px 15px;
    background-color: rgba(0, 31, 63, 0.9); /* Um pouco transparente */
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
}

.hero .logo {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8em;
    font-weight: 700;
    color: white;
}
.hero .logo strong {
    color: var(--secondary-color);
}

.hero .nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 18px;
}

.hero .nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.hero .nav-links a:hover {
    color: var(--secondary-color);
}

.hero-content {
    max-width: 800px;
    margin-top: 100px; /* Espaço para a navbar fixa */
    z-index: 1;
}

.hero-content h1 {
    color: white;
    margin-bottom: 25px;
}

.hero-content p {
    font-size: 1.3em;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    font-size: 1.8em;
    cursor: pointer;
    color: white;
}

/* Sections General */
section {
    padding: 80px 0;
    background-color: var(--background-light);
}

section:nth-of-type(even) { /* Background para seções alternadas */
    background-color: var(--background-dark);
}

/* Video Showcase (para vídeo local) */
.video-showcase-section {
    text-align: center;
    background-color: var(--background-dark);
}
.video-container-mp4 {
    position: relative;
    width: 80%;
    max-width: 900px;
    margin: 0 auto 30px auto;
    padding-bottom: 45%;
    height: 0;
    overflow: hidden;
    background-color: #000;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
.video-container-mp4 video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.video-caption {
    font-size: 1em;
    color: #666;
    margin-top: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}


/* Features Section */
.features-section .feature-grid,
.benefits-section .benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    text-align: center;
}

.feature-item, .benefit-item {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover, .benefit-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.feature-item i, .benefit-item i {
    font-size: 3.5em;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.feature-item h3, .benefit-item h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.feature-item p, .benefit-item p {
    font-size: 1em;
    color: #555;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(to right, #004085, var(--secondary-color));
    color: white;
    text-align: center;
    padding: 60px 0;
}
.cta-section h2 {
    color: white;
    font-size: 2.5em;
    margin-bottom: 20px;
}
.cta-section p {
    font-size: 1.3em;
    margin-bottom: 40px;
}
.cta-section .btn-primary {
    background-color: white;
    color: var(--secondary-color);
}
.cta-section .btn-primary:hover {
    background-color: #f0f0f0;
    color: var(--primary-color);
}


/* About Section */
.about-section {
    text-align: center;
    background-color: var(--background-light);
}
.about-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1em;
    line-height: 1.8;
}
.about-content p {
    text-align: left;
}

/* Contact Section */
.contact-section {
    background-color: var(--background-dark);
}
.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}
.contact-info, .contact-form {
    flex: 1;
    min-width: 300px;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow-color);
}

.contact-info h3, .contact-form h3 {
    color: var(--primary-color);
    font-size: 1.8em;
    margin-bottom: 25px;
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 1em;
}
.contact-info p i {
    color: var(--secondary-color);
    margin-right: 10px;
    font-size: 1.2em;
}
.contact-info p a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}
.contact-info p a:hover {
    color: var(--secondary-color);
}

.contact-form .form-group {
    margin-bottom: 20px;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: calc(100% - 20px);
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1em;
    box-sizing: border-box;
}
.contact-form textarea {
    resize: vertical;
}
.contact-form button {
    width: 100%;
    padding: 15px;
    font-size: 1.1em;
}

/* Estilo para as mensagens de status do formulário de contato */
.form-status-message {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    text-align: center;
    border: 1px solid;
    font-weight: bold;
}
/* Cores para sucesso */
.form-status-message.success {
    background-color: #d4edda;
    color: #155724;
    border-color: #c3e6cb;
}
/* Cores para erro */
.form-status-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border-color: #f5c6cb;
}


/* Footer */
footer {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 30px 0;
    font-size: 0.9em;
}

/* Responsiveness */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5em;
    }
    h2 {
        font-size: 2em;
    }
    .hero-content {
        margin-top: 80px;
    }
    .hero .navbar {
        flex-wrap: wrap;
        padding: 15px;
    }
    .hero .nav-links {
        flex-direction: column;
        width: 100%;
        background-color: rgba(0, 31, 63, 0.95);
        position: absolute;
        top: 70px;
        left: 0;
        display: none;
        text-align: center;
        padding: 20px 0;
        box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    }
    .hero .nav-links.active {
        display: flex;
    }
    .hero .nav-links li {
        margin: 10px 0;
    }
    .hero .nav-links a {
        padding: 10px 0;
        width: 100%;
        display: block;
    }
    .menu-toggle {
        display: block;
    }
    .navbar .btn-secondary {
        margin-top: 15px;
    }
    .video-container-mp4 {
        width: 90%;
        padding-bottom: 56.25%;
    }

    .feature-item, .benefit-item, .contact-info, .contact-form {
        padding: 25px;
    }

    .section-subtitle {
        font-size: 1em;
        margin-bottom: 30px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2em;
    }
    h2 {
        font-size: 1.8em;
    }
    .hero-content p {
        font-size: 1.1em;
    }
    .btn {
        padding: 10px 20px;
        font-size: 1em;
    }
    .cta-button {
        font-size: 1em;
        padding: 12px 25px;
    }
    .contact-form input[type="text"],
    .contact-form input[type="email"],
    .contact-form input[type="tel"],
    .contact-form textarea {
        width: 100%;
    }
}