/* Variables CSS con prefijo -it */
:root {
    --it-bg-primary: #f8f9fa;
    --it-bg-card: #ffffff;
    --it-color-primary: #2d5016;
    --it-color-secondary: #6b8e23;
    --it-color-accent: #8fbc8f;
    --it-text-main: #2c3e50;
    --it-text-light: #5a6c7d;
    --it-border-radius: 12px;
    --it-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    --it-shadow-hover: 0 8px 16px rgba(0, 0, 0, 0.12);
    --it-transition: all 0.3s ease;
}

/* Container principal */
.it-container {
    height: 347px;
    background: var(--it-bg-card);
    border-radius: var(--it-border-radius);
    padding: 1.5rem;
    box-shadow: var(--it-shadow);
    display: flex;
    flex-direction: column;
    transition: var(--it-transition);
    overflow: hidden;
}

.it-container:hover {
    box-shadow: var(--it-shadow-hover);
    transform: translateY(-2px);
}

/* Header */
.it-header {
    margin-bottom: 1.2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--it-color-accent);
}

/* Contenido */
.it-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
}

.it-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--it-text-light);
    margin: 0;
    text-align: justify;
}

/* Footer con botón */
.it-footer {
    margin-top: auto;
    padding-top: 1rem;
}

.it-btn {
    width: 100%;
    padding: 0.75rem 1.5rem;
    color: #000000;
    border: 1px solid black;
    border-radius: 11px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--it-transition);
    letter-spacing: 0.5px;
}

.it-btn:hover {
    background: #000000;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(45, 80, 22, 0.3);
    color: #FFFFFF;
}

.it-btn:active {
    transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .it-container {
        height: auto;
        min-height: 347px;
    }
    
    .it-text {
        font-size: 0.9rem;
    }
}