@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Roboto', sans-serif;
}
body {
background-color: #f4f4f9;
color: #333;
padding-top: 60px;
}
header {
background-color: #f8f9fa;
padding: 10px 20px;
position: fixed;
width: 100%;
top: 0;
z-index: 1000;
border-bottom: 1px solid #e0e0e0;
transition: background-color 0.3s ease;
}
.navbar {
display: flex;
justify-content: space-between;
align-items: center;
}
.navbar-logo {
font-size: 1.5em;
font-weight: bold;
color: #0056b3;
}
.navbar-menu {
display: flex;
gap: 20px;
}
.navbar-menu a {
color: #333;
text-decoration: none;
font-weight: 500;
transition: color 0.3s ease;
}
.navbar-menu a:hover {
color: #28a745;
}
.hamburger {
display: none;
cursor: pointer;
flex-direction: column;
gap: 5px;
}
.hamburger div {
width: 25px;
height: 3px;
background-color: #333;
}
@media (max-width: 768px) {
.navbar-menu {
display: none;
flex-direction: column;
position: absolute;
top: 60px;
left: 0;
background-color: #f8f9fa;
width: 100%;
padding: 20px;
}
.navbar-menu.active {
display: flex;
}
.hamburger {
display: flex;
}
}
.scrolled {
background-color: rgba(248, 249, 250, 0.9);
}
.video-banner {
position: relative;
width: 100%;
height: 500px; /* Increased height for desktop */
overflow: hidden;
}
.banner-video {
width: 100%;
height: 100%;
object-fit: cover;
}
.video-text-overlay {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
color: white;
font-size: 3em; /* Font size for desktop */
font-weight: 700;
text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
z-index: 10;
text-align: center; /* Ensure text is centered */
}
.tagline {
display: block;
font-size: 1.1em; /* Reduced font size for tagline */
font-weight: 400; /* Regular weight for italic style */
font-style: italic; /* Italic style for tagline */
text-align: center;
margin-top: 10px; /* Space between title and tagline */
}
.database-support {
text-align: center; /* Center the section text */
padding: 40px 20px; /* Add padding for spacing */
}
.database-list {
display: flex; /* Flexbox for layout */
justify-content: center; /* Center columns */
flex-wrap: wrap; /* Wrap to new line if necessary */
}
.database-column {
flex: 1; /* Allow columns to grow */
min-width: 200px; /* Minimum width for each column */
margin: 0 20px; /* Margin between columns */
}
.database-column ul {
list-style-type: none; /* Remove bullets */
padding: 0; /* Remove padding */
}
.section-overview, .section-features, .section-benefits {
width: 100%;
padding: 60px 20px;
display: flex;
justify-content: center;
align-items: center;
gap: 40px;
text-align: center;
flex-wrap: wrap;
}
.section-overview {
background-color: #005082;
color: white;
}
.section-features {
background-color: #ffffff;
color: #333;
}
.section-benefits {
background-color: #28a745;
color: white;
}
h2 {
font-size: 2.2em;
text-align: center;
margin-bottom: 20px;
transition: transform 0.3s ease;
}
h2:hover {
transform: scale(1.05);
}
p {
font-size: 1em;
line-height: 1.6;
max-width: 500px;
text-align: center;
color: inherit;
transition: transform 0.3s ease;
}
p:hover {
transform: scale(1.05);
}
.section-image {
width: 250px;
height: 250px;
border-radius: 50%;
object-fit: cover;
box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
transition: transform 0.3s ease;
}
.section-image:hover {
transform: scale(1.05);
}
@media (max-width: 768px) {
.video-banner {
height: 300px; /* Adjusted height for mobile */
}
.video-text-overlay {
font-size: 2em; /* Font size for mobile */
}
.tagline {
font-size: 0.8em; /* Further reduced tagline font size for mobile */
}
.database-column {
flex: 1 1 100%; /* Stack columns on mobile */
margin: 10px 0; /* Adjust margin for stacked layout */
}
}
.footer {
background-color: #333333; /* Dark gray background */
padding: 30px 0;
text-align: center;
color: white;
font-size: 0.9em;
display: flex;
flex-direction: column;
align-items: center;
}
.footer .social-icons {
display: flex;
justify-content: center;
gap: 25px;
margin-top: 15px;
}
.footer .social-icons a img {
width: 35px;
height: 35px;
transition: transform 0.3s ease, filter 0.3s ease;
filter: grayscale(100%); /* Adds a subtle grayscale effect */
}
.footer .social-icons a img:hover {
transform: scale(1.15);
filter: grayscale(0%); /* Color on hover */
}
.footer p {
color: #ffffff;
margin: 10px 0 0;
}
@media (max-width: 768px) {
.navbar-menu.active {
align-items: flex-start !important;
padding-left: 10px !important;
}
}

/* Estilos do grid e modais */

/* Estilos para o grid de categorias e modais */

.category-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.category-item {
    background-color: #007BFF;
    color: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    width: 200px;
    transition: transform 0.3s ease;
}

.category-item:hover {
    transform: scale(1.05);
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal-content {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.close-modal {
    background: #ff5e57;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
}
