body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    background: #f5f5f5;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 15px 30px;
    border-bottom: 2px solid #ccc;
}

.logo img {
    height: 50px;
}

.nav a {
    margin: 0 10px;
    text-decoration: none;
    color: #333;
}

/* Título */
.title {
    text-align: center;
    padding: 20px;
}

/* CONTENIDO */
.content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 🔥 SLIDER + OBJETIVO */
.top-section {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Slider */
.slider {
    width: 400px;
    height: 300px;
    overflow: hidden;
    border-radius: 10px;
}

.slides {
    display: flex;
    transition: transform 0.5s ease;
}

.slides img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    flex-shrink: 0;
}

/* Objetivo */
.objetive {
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.objetive_title h2 {
    font-size: 30px;
    margin-bottom: 15px;
    text-align: center;
}

.objetive_p p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    text-align: center;
}
/* Tarjetas */
.cards {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
}

.card {
    background: #ffffff;
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    width: 22%;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

/* efecto hover */
.card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* línea decorativa arriba */
.card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #00c6ff, #0072ff);
}

.card {
    opacity: 0;
    transform: translateY(30px);
    animation: aparecer 0.6s forwards;
}

.card:nth-child(1) { animation-delay: 0.2s; }
.card:nth-child(2) { animation-delay: 0.4s; }
.card:nth-child(3) { animation-delay: 0.6s; }
.card:nth-child(4) { animation-delay: 0.8s; }

@keyframes aparecer {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* iconos */
.icon {
    width: 65px;
    height: 65px;
    margin-bottom: 15px;
    transition: transform 0.3s;
}

.card:hover .icon {
    transform: rotate(10deg) scale(1.1);
}

/* Info */
.moreInformation {
    text-align: center;
    padding: 20px;
}

.container {
    width: 95%;
    max-width: 1200px;
    margin: 30px auto;
    background: #fff;
    padding: 40px 60px;
    border-radius: 10px;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.2);
} 

.titulo {
    text-align: left;
    font-family: "Georgia", serif;
    font-size: 26px;
    font-weight: bold;
    color: #444;
    margin-bottom: 20px;
}

.form-group {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 15px;
    margin-bottom: 18px;
}

label {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

input {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 15px;
}

.buttons {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    margin-left: 10px;
}

.guardar {
    background-color: #3aaed8;
}

.eliminar {
    background-color: red;
}

.container hr {
    margin: 20px 0;
    border: none;
    border-top: 1px solid #ccc;
}

/* Se cumplió si/no */
.toggle-group {
    display: flex;
}

.toggle-group input {
    display: none;
}

.toggle-group label {
    padding: 10px 20px;
    border: 1px solid #ccc;
    cursor: pointer;
}

.toggle-group input:checked + label {
    background-color: #3aaed8;
    color: white;
    border-color: #3aaed8;
}