@import url('https://fonts.googleapis.com/css2?family=Telex&display=swap');

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-image: url('../img/background.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: #000000;
    min-height: 100vdh;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

h1, .tool-card h3 {
    font-family: "Telex", sans-serif;
}

h1 {
    color: #ffffff;
}

.main-header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.main-header .container {
    width: 100%;
}

.logo {
    height: 80px;
}

.app {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(250px, 1fr));
    gap: 40px;
    padding: 0 20px;
    padding-top: 100px;
    max-width: 1200px;
}

.tool-card {
    max-width: 350px;
    min-height: 140px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    background: #1a1a1a55;
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

.tool-card h3 {
    margin: 0 0 10px 0;
    color: #4DFF63;
    font-size: 1.2em;
}

.tool-card p {
    margin: 0;
    color: #ffffff;
    font-size: 0.95em;
}

.footer-bar {
    background-color: #000000;
    padding: 20px 0;
    width: 100%;
    box-shadow: 0 -2px 4px rgba(0,0,0,0.1);
}

.footer-bar section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-bar-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
}

.footer-bar-links a {
    color: #4DFF63;
    text-decoration: none;
}

.footer-bar-links a:hover {
    opacity: 0.8;
}

.copyright {
    font-size: 0.9em;
}

.plataformajota {
    font-size: 0.9em;
}

@media screen and (max-width: 1280px) {
  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.tool-card {
    flex-direction: column;
    align-items: center;
}
}

@media screen and (max-width: 767px) {
    .tools-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .tool-card {
        flex-direction: column;
        align-items: center;
    }
}
