/* Reset e Estilos Globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', Arial, sans-serif;
    transition: all 0.3s ease;
}

body {
    background-color: #03274C;
    color: #FFFFFF;
    line-height: 1.6;
    padding-top: 80px; /* Espaço para o header fixo */
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

.container {
    width: 95%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 25px;
}

/* Cabeçalho */
header {
    padding: 0;
    background-color: rgba(3, 39, 76, 0.98);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
    height: 80px;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px; /* Espaçamento lateral maior */
}

.logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo-img {
    height: 70px;
    width: auto;
    transition: transform 0.3s;
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

/* Menu de Navegação */
nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    padding: 0;
    height: 100%;
    align-items: center;
}

nav ul li {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

nav ul li:first-child {
    margin-left: 0;
}

nav ul li a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s;
    position: relative;
    padding: 5px 0;
    display: flex;
    align-items: center;
    height: 100%;
}

nav ul li a:hover, 
nav ul li a.active {
    color: #FFD05C;
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background: linear-gradient(to right, #F8981D, #FFD05C);
    bottom: 0;
    left: 0;
    transition: width 0.3s;
    border-radius: 3px 3px 0 0;
}

nav ul li a:hover:after, 
nav ul li a.active:after {
    width: 100%;
}

nav ul li a.active {
    font-weight: 600;
}

/* Seção Hero */
.hero {
    height: calc(100vh - 70px);
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(3, 39, 76, 0.8), rgba(3, 39, 76, 0.9)), url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.hero h1 span {
    background: linear-gradient(to right, #F8981D, #FFD05C);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.btn {
    display: inline-block;
    background: linear-gradient(to right, #F8981D, #FFD05C);
    color: #03274C;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(248, 152, 29, 0.3);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(248, 152, 29, 0.4);
}

/* Seção Produtos */
.products {
    padding: 100px 0;
    background-color: rgba(255, 255, 255, 0.03);
}

.products h2 {
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.products h2:after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background: linear-gradient(to right, #F8981D, #FFD05C);
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.product-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.product-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: linear-gradient(to bottom, #F8981D, #FFD05C);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #03274C;
    font-size: 28px;
}

.product-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #FFD05C;
}

.product-card p {
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.6;
}

/* Seção Quem Somos */
.about {
    padding: 100px 0;
    background-color: rgba(255, 255, 255, 0.05);
}

.about h2 {
    margin-bottom: 60px;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.about-list {
    margin-top: 30px;
    list-style: none;
}

.about-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    font-size: 1rem;
}

.about-list i {
    color: #FFD05C;
    margin-right: 10px;
    font-size: 1.2rem;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Seção Contato */
.contact {
    padding: 100px 0;
}

.contact h2 {
    margin-bottom: 60px;
}

.contact-container {
    display: flex;
    gap: 50px;
}

.contact-form {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    color: #FFFFFF;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FFD05C;
    background: rgba(255, 255, 255, 0.15);
}

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

.contact-info {
    flex: 1;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 24px;
    color: #FFD05C;
    margin-right: 20px;
    margin-top: 5px;
}

.info-item p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Rodapé */
footer {
    background: rgba(0, 0, 0, 0.2);
    padding: 70px 0 0;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo img {
    height: 50px;
    width: auto;
    margin-bottom: 20px;
}

.footer-links h4, .footer-social h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #FFD05C;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s;
    opacity: 0.8;
}

.footer-links a:hover {
    color: #FFD05C;
    opacity: 1;
}

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

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #FFFFFF;
    transition: all 0.3s;
}

.social-icons a:hover {
    background: linear-gradient(to right, #F8981D, #FFD05C);
    color: #03274C;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 0.9rem;
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 0.9rem;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.legal-links a:hover {
    opacity: 1;
}

/* Responsivo */
@media (max-width: 992px) {
    .about-content {
        flex-direction: column;
    }
    
    .contact-container {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    nav ul {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    nav ul {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: #03274C;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        gap: 15px;
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s ease;
        z-index: 999;
    }
    
    nav ul.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    nav ul li {
        width: 100%;
        text-align: center;
        height: auto;
    }
    
    nav ul li a {
        padding: 15px;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 12px 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .legal-links {
        justify-content: center;
    }
}

/* Estilos para a página de Termos e Política */
.terms-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    color: #333;
    line-height: 1.6;
}

.terms-content {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.terms-content h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
    font-weight: 600;
}

.update-date {
    color: #7f8c8d;
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.terms-section, .privacy-section {
    margin-bottom: 40px;
}

.terms-section h2, .privacy-section h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin: 30px 0 20px;
    font-weight: 600;
}

.terms-section h3, .privacy-section h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin: 25px 0 15px;
    font-weight: 500;
}

.definition-list {
    margin: 20px 0;
}

.definition-item {
    margin-bottom: 25px;
}

.definition-item h3 {
    color: #3498db;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.terms-content ul {
    margin: 15px 0;
    padding-left: 20px;
}

.terms-content ul li {
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .terms-container {
        padding: 20px 10px;
    }
    
    .terms-content {
        padding: 20px;
    }
    
    .terms-content h1 {
        font-size: 2rem;
    }
    
    .terms-section h2, .privacy-section h2 {
        font-size: 1.5rem;
    }
}

/* Ajustes específicos para a página de termos */
body.terms-page {
    background-color: #f5f7fa;
    color: #333;
}

body.terms-page .terms-container {
    padding-top: 100px;
    padding-bottom: 100px;
}

body.terms-page .terms-content {
    background: #fff;
    color: #333;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

body.terms-page h1, 
body.terms-page h2, 
body.terms-page h3 {
    color: #2c3e50;
}

body.terms-page .definition-item h3 {
    color: #3498db;
}

body.terms-page a {
    color: #3498db;
}

/* Garantir que o header e footer mantenham o estilo original */
body.terms-page header,
body.terms-page footer {
    background-color: rgba(3, 39, 76, 0.98);
    color: #fff;
}

body.terms-page footer a {
    color: #fff;
}

/* App Download Section */
.app-download {
    background-color: #f8f9fa;
    padding: 60px 0;
    text-align: center;
}

.app-download h2 {
    margin-bottom: 30px;
    color: #333;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.store-btn {
    display: inline-block;
    height: 60px;
    transition: transform 0.3s ease;
}

.store-btn:hover {
    transform: scale(1.05);
}

.store-btn img {
    height: 100%;
    width: auto;
}

@media (max-width: 768px) {
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .store-btn {
        height: 50px;
        margin-bottom: 15px;
    }
}