@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');

:root {
    /* Cores atualizadas para azul marinho */
    --primary: #00AFEF;
    --primary-dark: #004d99;
    --secondary: #1a1a2e; /* Azul marinho escuro */
    --accent: #0099ff;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #333333;
    --text-color: #f0f0f0; /* Texto mais claro para contraste */
	--text-primary: #00AFEF;
	--bs-primary: #00AFEF;
	--bs-btn-bg: #00AFEF;
	--bg-primary: #00AFEF;

    
    /* Espaçamentos */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    
    /* Bordas */
    --border-radius: 8px;
    --border-radius-lg: 12px;
    
    /* Sombras */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 8px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 16px rgba(0,0,0,0.2);
}
html{
	font-family: "Quicksand", sans-serif;
}

.bg-light{
		color:#1a1a2e;
	}

/* Base Styles */
body {
     font-family: "Quicksand", sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--secondary)!important; /* Fundo azul marinho */
    overflow-x: hidden;
}

.bg-primary{
	background: linear-gradient(135deg, rgba(0, 102, 204, 0.7), rgba(0, 102, 204, 0.9));
	color: #fff;
	fill: #fff;
}

.bg-secondary{
	background: linear-gradient(135deg, #0066cc, #1a1a2e);
	color: #fff;
	fill: #fff;
}

.btn-primary{
	background: linear-gradient(135deg, rgba(0, 102, 204, 0.7), rgba(0, 102, 204, 0.9));
	color: #fff;
	fill: #fff;
	border: 1px solid #0066cc;
}

.btn-primary:hover{
	background: linear-gradient(125deg, rgba(0, 102, 204, 0.9), rgba(0, 0, 0, 0.9));
	color: #fff;
	fill: #fff;
}

.btn-outline-primary{
	background: transparent;
	color: linear-gradient(135deg, rgba(0, 102, 204, 0.5), rgba(0, 102, 204, 0.9))!important;
	border: 1px solid linear-gradient(135deg, rgba(0, 102, 204, 0.5), rgba(0, 102, 204, 0.9))!important;;
}

.btn-outline-primary:hover{
	background: linear-gradient(135deg, rgba(0, 102, 204, 0.5), rgba(0, 102, 204, 0.9))!important;
	color: #fff;
	fill:#fff;
}
	

.navbar{
	font-size:14pt;
}

.navbar a, li{color:#fff;}

.navbar a:hover, li:hover{color:var(--primary);}

.nav-item.border-left .nav-link::before {
  content: "|";
  margin-right: 8px;
  color: #fff; /* ou outra cor que combine com seu tema */
}



h1.blue, h2.blue, h3.blue, h4.blue{
	color:#00AFEF;
}

.text-primary{color:#00AFEF!important;}

.bg-statum{
	background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(0, 77, 153, 0.8));
}

/* Hero Section com gradiente azul */
.hero-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(0, 77, 153, 0.8));
    color: var(--white);
    overflow: hidden;
    padding: var(--space-xl) 0;
}

.hero-content {
    position: relative;
    z-index: 2;
}
/* Ajustes para conteúdo sobre as ondas */
.hero-content {
    position: relative;
    z-index: 2; /* Garante que o conteúdo fique acima das ondas */
}

.btn .btn-primary{
	background: #00AFEF !important;
	color:#fff;
	border: 1px #00AFEF solid;
}

/* Seções subsequentes com fundo branco */
.services-section,
.partners-section {
    background-color: var(--white);
    color: var(--dark-gray); /* Texto escuro para contraste */
}

.section-title {
    color: var(--secondary); /* Azul marinho para títulos */
}

.card-body-home{
	background: #fff;
	border-radius: 5px;
	min-height: 30vh;
}

.card-body li {
	color: var(--primary);
}

.space{
	height:32px;
}

/* Cards de serviços */
.service-card {
    background: transparent;
    border: 1px solid rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

 /* Efeitos de Fundo Imersivo */
        .background-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -2;
            overflow: hidden;
        }
        
        #particles-js {
            position: absolute;
            width: 100%;
            height: 100%;
            background-color: #1a1a2e; /* Azul marinho */
        }
        
        .gradient-bg {
            position: absolute;
            width: 200vw;
            height: 200vh;
            background: radial-gradient(circle at center, 
                      rgba(26, 26, 46, 0.8) 0%, 
                      rgba(0, 51, 102, 0.6) 50%,
                      rgba(0, 78, 124, 0.3) 100%);
            top: -50vh;
            left: -50vw;
            z-index: -1;
            animation: gradientMove 15s ease infinite alternate;
        }
        
        @keyframes gradientMove {
            0% { transform: scale(1); }
            100% { transform: scale(1.2); }
        }
        
        /* Ajuste para o conteúdo ficar acima do background */
        main {
            position: relative;
            z-index: 1;
        }
		
/* Hero Sections Específicas */
.hero-section-products {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(0, 77, 153, 0.8));
    color: white;
    overflow: hidden;
    padding: 100px 0;
}

.hero-section-contact {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(0, 77, 153, 0.8));
    color: white;
    overflow: hidden;
    padding: 100px 0;
}

/* Cards de Produtos */
.product-card {
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.product-features {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.product-features li {
    margin-bottom: 0.5rem;
}

.product-price {
    font-size: 1.25rem;
    color: #1a1a2e;
}

/* Formulário de Contato */
#contact-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
	color:#1a1a2e;

}

.contact-info {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Ícones de Contato */
.contact-info .icon-box {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

/* Mapa */
.map-container {
    height: 400px;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-section-products,
    .hero-section-contact {
        min-height: 50vh;
        padding: 80px 0;
        text-align: center;
    }
    
    #contact-form {
        padding: 1.5rem;
    }
	
	/* Faz o navbar ocupar a tela inteira quando expandido */
.navbar-collapse {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 77, 153, 0.9); /* Fundo escuro para realçar o contraste do conteúdo */
    overflow-y: auto;
    z-index: 1050; /* Garanta que está acima de outros elementos */
    transition: background-color 0.3s ease;
}

.navbar-toggler {
    z-index: 1100; /* Garanta que o botão de toggler esteja acessível acima do navbar-collapse */
}

/* Estilos adicionais para nav-links dentro do colapse */
.navbar-collapse .nav-link {
    color: var(--komvos-silver);
    padding: 1rem 2rem;
    text-align: center;
    font-size: 1.5rem;
}

/* Ocultar o colapso quando não está expandido */
.navbar-collapse.collapsing, .navbar-collapse.show {
    display: block; /* Override display do Bootstrap para permitir o uso de posição fixa */
    background-color: rgba(0, 77, 153, 0.9);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    transition: transform 0.3s ease, background-image 0.3s ease;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M6 6L24 24M6 24L24 6'/%3e%3c/svg%3e");
}

}

/* Estilos Específicos do Blog */
.hero-section-blog {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8), rgba(0, 77, 153, 0.8));
    color: white;
    overflow: hidden;
    padding: 100px 0;
}

.hero-section-post {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    color: white;
    padding: 100px 0;
}

.post-card {
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.post-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

.blog-post {
    font-size: 1.1rem;
    line-height: 1.8;
}

.blog-post img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
}

.blog-post h2, 
.blog-post h3, 
.blog-post h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.blog-post ul, 
.blog-post ol {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.blog-post blockquote {
    border-left: 4px solid #0099ff;
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: #555;
}

/* Sidebar */
.sidebar-sticky {
    position: sticky;
    top: 20px;
}

/* Responsividade */
@media (max-width: 768px) {
    .hero-section-blog,
    .hero-section-post {
        min-height: 50vh;
        padding: 80px 0;
    }
    
    .blog-post {
        font-size: 1rem;
    }
}


/* Adicionando animação ao logo diretamente */
.logo-prateado {
    animation: brilho-prateado 5s infinite;
}

