@charset "utf-8";
/* CSS Document */

/* Estilos generales */
body {
    font-family: Roboto;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

/* Header */
header {
    background-color: #2c3e50;
    color: white;
    padding: 20px 20px;
    text-align: center;
}

header h1 {
    font-size: 2.5rem;
    margin: 0;
    font-weight: 700;
	padding: 0;
}

header p {
    font-size: 1.1rem;
    margin: 10px 0 0;
    font-weight: 300;
}

/* Main - Contenedor de tarjetas */
main {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    gap: 20px;
}

/* Tarjetas de herramientas */
.tool-card {
    background-color: white;
    width: 100%;
    max-width: 600px;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.tool-card .icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.tool-card h2, h2 {
    font-size: 1.5rem;
    margin: 0;
	padding: 0;
    color: #2c3e50;
    font-weight: 500;
}

.tool-card p, p {
    font-size: 1rem;
    margin: 0;
	padding: 0;
    color: #666;
    font-weight: 300;
}

/* Footer */
footer {
	width: 100%;
    text-align: center;
    padding: 20px;
    background-color: #2c3e50;
    color: white;
    font-size: 0.9rem;
    margin-top: 40px;
	position: fixed;
	bottom: 0;
}

/* Responsividad */
@media (max-width: 768px) {
    header h1 {
        font-size: 2rem;
    }

    header p {
        font-size: 1rem;
    }

    .tool-card {
        padding: 20px;
    }

    .tool-card h2, h2 {
        font-size: 1.3rem;
    }

    .tool-card p, p {
        font-size: 0.9rem;
    }
}

.tabs {
    display: flex;
    border-bottom: 2px solid #ddd;
}

.tab-button {
    padding: 10px 20px;
    cursor: pointer;
    border: none;
    background-color: transparent;
    font-size: 16px;
    color: #666;
    transition: all 0.3s ease;
}

.tab-button.active {
    color: #000;
    border-bottom: 2px solid #000;
}

.tab-button:hover {
    color: #000;
}

.tab-content {
    margin-top: 20px;
}

.tab-pane {
    display: none;
    padding: 20px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-top: none;
}

.tab-pane.active {
    display: block;
}

h2 {
    margin-top: 0;
}