body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 80px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.logo {
    font-weight: 600;
    font-size: 24px;
}

.nav-items a {
    margin: 0 20px;
    font-weight: 500;
    font-size: 20px;
    text-decoration: none;
    color: #000;
}

.login-button {
    padding: 14px 24px;
    background-color: #000;
    color: #fff;
    border-radius: 8px;
    border: none;
    font-weight: 500;
    cursor: pointer;
}

.hero {
    display: flex;
    justify-content: center;
    padding: 80px;
}

.hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-text h1 {
    font-weight: 700;
    font-size: 64px;
    margin-bottom: 24px;
}

.hero-text p {
    font-weight: 400;
    font-size: 24px;
    color: rgba(0, 0, 0, 0.75);
    margin-bottom: 40px;
}

.cta-button {
    margin-bottom: 40px;
    padding: 20px 32px;
    background-color: #000;
    color: #fff;
    font-size: 24px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
}

.hero-illustration {
    max-width: 50%;

    border-radius: 8px;
    margin: auto;
    display: block;
}

.cta-button {
    margin-top: 40px;
    padding: 20px 32px;
    background-color: #000;
    color: #fff;
    font-size: 24px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
}

.tools {
    padding: 80px;
    text-align: center;
}

.tools h2 {
    font-weight: 600;
    font-size: 48px;
    margin-bottom: 60px;
}

.tool-cards {
    display: flex;
    justify-content: space-around;
    gap: 32px;
}

.tool-card {
    width: 405px;
    text-align: left;
}

.tool-card img {
    width: 100%;
    border-radius: 8px;
}

.tool-card h3 {
    font-weight: 500;
    font-size: 24px;
    margin: 24px 0 12px;
}

.tool-card p {
    font-size: 24px;
    color: #828282;
}

.cta {
    padding: 80px;
    display: flex;
    flex-direction: column;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cta-text h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 24px;
}

.cta-text p {
    font-size: 24px;
    color: #828282;
    margin-bottom: 40px;
}

.cta-buttons button {
    padding: 16px 32px;
    font-size: 24px;
    border-radius: 8px;
    border: none;
    margin-right: 16px;
    cursor: pointer;
}

.black-button {
    background-color: #000;
    color: #fff;
}

.gray-button {
    background-color: #E6E6E6;
    color: #000;
}

.testimonios {
    padding: 80px;
    text-align: center;
}

.testimonios h2 {
    font-weight: 600;
    font-size: 48px;
    margin-bottom: 60px;
}

.testimonios-cards {
    display: flex;
    justify-content: center;
    gap: 32px;
}

.testimonio-card {
    width: 400px;
    padding: 32px;
    border: 1px solid #E6E6E6;
    border-radius: 12px;
    text-align: left;
}

.avatar {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 48px;
}

.avatar-img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
}

.name {
    font-weight: 500;
    font-size: 16px;
}

.description {
    color: #828282;
    font-weight: 500;
    font-size: 16px;
}

.footer {
    padding: 40px;
    text-align: center;
    background-color: #F7F7F7;
    font-weight: 500;
}

/* NUEVO CSS PARA EL CALENDARIO COMPLETO */

.calendar-container {
    padding: 80px;
    max-width: 900px;
    margin: auto;
}

.calendar-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    gap: 20px;
}

.calendar-controls span {
    font-size: 24px;
    font-weight: 600;
}

.calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    margin-bottom: 40px;
}

.calendar div {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: left;
    border-radius: 8px;
    background: #f7f7f7;
    position: relative;
    min-height: 100px;
    overflow: hidden;
}

.calendar .day-number {
    font-weight: bold;
}

.calendar .task-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: red;
    position: absolute;
    bottom: 8px;
    right: 8px;
}

.task-form {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.task-form input, .task-form select, .task-form button {
    padding: 12px;
    font-size: 16px;
}

.task-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.task {
    padding: 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.task.low { border-left: 6px solid green; }
.task.medium { border-left: 6px solid orange; }
.task.high { border-left: 6px solid red; }

.task.completed {
    text-decoration: line-through;
    color: #888;
}

.task input[type="checkbox"] {
    margin-right: 12px;
}

.task button {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
}



/* FORMULARIO DE COMENTARIOS */

.comentarios-container {
    max-width: 700px;
    margin: 80px auto;
    padding: 40px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #cfcfcf;
}

.comentarios-container h1 {
    font-size: 36px;
    margin-bottom: 30px;
    text-align: center;
}

form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

input, textarea, button {
    padding: 12px;
    font-size: 16px;
}

.opinion {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 16px;
    margin-top: 24px;
    background: white;
}


.opinion button {
    background-color: #E6E6E6;
    color: #000;
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 10px;
}

.opinion button:hover {
    background-color: #ccc;
}
