
.hero[data-page="recursos-ia"] {
background: linear-gradient(
var(--primary-color-1-alpha1),
var(--primary-color-1-alpha2)
),
url("./../../assets/img/recursos_efficace.webp");
background-size: cover;
background-position: center;
padding: 8rem 0;
position: relative;
}

.live-sessions .card {
border-radius: 1rem;
transition: transform 0.3s ease;
}

.live-sessions .card:hover {
transform: translateY(-5px);
}

.live-sessions .badge {
font-size: 0.9rem;
padding: 0.5em 1em;
border-radius: 2rem;
}

.live-sessions .session-details {
font-size: 0.95rem;
color: #6c757d;
}

@media (max-width: 767.98px) {
.live-sessions .card-body {
padding: 1.5rem;
}

.live-sessions img {
max-height: 200px;
width: 100%;
object-fit: cover;
}
}

.survival-kit .cv-template-card,
.survival-kit .resource-card {
transition: transform 0.3s ease;
}

.survival-kit .cv-template-card:hover,
.survival-kit .resource-card:hover {
transform: translateY(-5px);
}

.survival-kit .template-label {
font-size: 0.9rem;
color: #6c757d;
font-weight: 500;
}

.survival-kit .resource-card {
border: 1px solid rgba(0, 0, 0, 0.08);
}

.survival-kit .resource-image img {
width: 100%;
max-height: 450px;
object-fit: contain;
}

@media (max-width: 767.98px) {
.survival-kit .resource-image img {
height: 450px;
}
}

.ai-tools {
background-color: #f8f9fa;
}

.ai-card {
background: white;
border-radius: 16px;
padding: 1.75rem;
box-shadow: 0 4px 12px rgba(7, 38, 203, 0.08);
transition: all 0.3s ease;
display: flex;
flex-direction: column;
border-top: 4px solid var(--primary-color-1);
}

.ai-card:hover {
transform: translateY(-5px);
box-shadow: 0 8px 24px rgba(7, 38, 203, 0.12);
}

.ai-card-icon {
font-size: 2.5rem;
color: var(--primary-color-1);
background: linear-gradient(
135deg,
var(--primary-color-1),
var(--secondary-color-1)
);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
text-align: center;
}

.ai-card-title {
font-size: 1.25rem;
font-weight: 600;
margin-bottom: 1.25rem;
text-align: center;
color: var(--dark-color);
}

.ai-prompt-container {
flex-grow: 1;
display: flex;
flex-direction: column;
}

.ai-prompt {
background-color: var(--light-blue);
border-radius: 12px;
padding: 1.25rem;
margin-bottom: 0.5rem;
border-left: 3px solid var(--primary-color-1);
flex-grow: 1;
}

.ai-prompt p {
font-size: 0.95rem;
margin-bottom: 0;
font-style: italic;
color: var(--dark-color);
}

.ai-tips {
font-size: 0.85rem;
}

.ai-tools-banner {
background: linear-gradient(135deg, var(--secondary-color-1), var(--secondary-color-2));
color: var(--dark-color);
box-shadow: 0 4px 15px rgba(212, 253, 101, 0.2);
}

.ai-tools-banner h3 {
font-weight: 600;
}

.ai-tools-banner .btn-light:hover {
transform: translateY(-3px);
box-shadow: 0 6px 15px rgba(255, 255, 255, 0.3);
}

@media (max-width: 991.98px) {
.ai-card {
padding: 1.5rem;
}

.ai-card-title {
font-size: 1.15rem;
}

.ai-prompt {
padding: 1rem;
}
}

.ai-tools-directory {
background-color: #f8f9fa;
position: relative;
}

.ai-tool-card {
background: white;
border-radius: 16px;
padding: 1.75rem;
box-shadow: 0 4px 12px rgba(7, 38, 203, 0.08);
transition: all 0.3s ease;
display: flex;
flex-direction: column;
border-top: 4px solid var(--primary-color-1);
position: relative;
overflow: hidden;
}

.ai-tool-card::before {
content: "";
position: absolute;
top: 0;
left: 0;
right: 0;
height: 4px;
background: linear-gradient(
90deg,
var(--primary-color-1),
var(--secondary-color-1)
);
transition: all 0.3s ease;
}

.ai-tool-card:hover {
transform: translateY(-8px);
box-shadow: 0 12px 28px rgba(7, 38, 203, 0.15);
}

.ai-tool-card:hover::before {
height: 6px;
}

.ai-tool-header {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
margin-bottom: 1.5rem;
}

.ai-tool-logo {
width: 160px;
height: 160px;
border-radius: 20px;
display: flex;
align-items: center;
justify-content: center;
margin-bottom: 1rem;
background: linear-gradient(
135deg,
var(--light-blue),
var(--light-lime)
);
border: 2px solid rgba(7, 38, 203, 0.1);
transition: all 0.3s ease;
}

.ai-tool-card:hover .ai-tool-logo {
transform: scale(1.05);
border-color: rgba(7, 38, 203, 0.3);
}

.tool-logo-img {
width: 100px;
height: 100px;
object-fit: contain;
border-radius: 12px;
}

.placeholder-logo {
width: 100px;
height: 100px;
display: flex;
align-items: center;
justify-content: center;
background: var(--primary-color-1);
color: white;
border-radius: 16px;
font-size: 2.5rem;
}

.ai-tool-title {
font-size: 1.3rem;
font-weight: 700;
color: var(--dark-color);
margin-bottom: 0;
line-height: 1.3;
}

.ai-tool-content {
flex-grow: 1;
display: flex;
flex-direction: column;
}

.ai-tool-description {
font-size: 0.95rem;
line-height: 1.6;
color: #6c757d;
margin-bottom: 1.5rem;
flex-grow: 1;
}

.ai-tool-actions {
margin-top: auto;
}

.btn-ai-tool:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(7, 38, 203, 0.3);
color: white;
background: var(--primary-color-2);
}

.btn-ai-tool i {
transition: transform 0.3s ease;
}

.btn-ai-tool:hover i {
transform: translateX(3px);
}

.ai-tools-cta {
background: linear-gradient(135deg, var(--secondary-color-1), var(--secondary-color-2));
color: var(--dark-color);
box-shadow: 0 4px 15px rgba(212, 253, 101, 0.2);
border: 1px solid rgba(255, 255, 255, 0.2);
}

.ai-tools-cta h3 {
font-weight: 700;
color: var(--dark-color);
}

.ai-tools-cta .btn-light {
background: white;
color: var(--primary-color-1);
font-weight: 600;
border: 2px solid white;
transition: all 0.3s ease;
}

.ai-tools-cta .btn-light:hover {
background: var(--primary-color-1);
color: white;
border-color: var(--primary-color-1);
transform: translateY(-3px);
box-shadow: 0 6px 15px rgba(255, 255, 255, 0.3);
}

@media (max-width: 991.98px) {
.ai-tool-card {
padding: 1.5rem;
}

.ai-tool-logo {
width: 140px;
height: 140px;
}

.tool-logo-img {
width: 80px;
height: 80px;
}

.placeholder-logo {
width: 80px;
height: 80px;
font-size: 2rem;
}

.ai-tool-title {
font-size: 1.2rem;
}
}

@media (max-width: 767.98px) {
.ai-tools-directory .row.align-items-center {
text-align: center;
}

.ai-tools-cta .col-md-8 {
margin-bottom: 1rem;
}
}

.ai-tool-card {
animation: fadeInUp 0.6s ease backwards;
}

.ai-tool-card:nth-child(1) {
animation-delay: 0.1s;
}
.ai-tool-card:nth-child(2) {
animation-delay: 0.2s;
}
.ai-tool-card:nth-child(3) {
animation-delay: 0.3s;
}
.ai-tool-card:nth-child(4) {
animation-delay: 0.4s;
}
.ai-tool-card:nth-child(5) {
animation-delay: 0.5s;
}
.ai-tool-card:nth-child(6) {
animation-delay: 0.6s;
}
.ai-tool-card:nth-child(7) {
animation-delay: 0.7s;
}
.ai-tool-card:nth-child(8) {
animation-delay: 0.8s;
}

.tool-logo-img {
opacity: 0;
transition: opacity 0.3s ease;
}

.tool-logo-img.loaded {
opacity: 1;
}
