.elementor-1035 .elementor-element.elementor-element-5277507{--display:flex;}.elementor-1035 .elementor-element.elementor-element-32e3aed{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}/* Start custom CSS *//* TABS */
.tabs-container {
    background: white;
    border-radius: 0 20px 0 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.tabs-nav {
    display: flex;
    background: #17345A;
}

.tab-btn {
    flex: 1;
    padding: 20px 25px;
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.tab-btn:hover {
    color: white;
    background: rgba(255,255,255,0.1);
}

.tab-btn.active {
    color: white;
    background: rgba(255,255,255,0.1);
    border-bottom-color: #D1143E;
}

.tab-content {
    display: none;
    padding: 0;
}

.tab-content.active {
    display: block;
}

.tab-inner {
    padding: 40px;
}

.tab-inner h3 {
    color: #17345A;
    margin-top: 0;
    margin-bottom: 20px;
}

/* Grid de tutoría */
.tutorial-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 25px;
}

.tutorial-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f5f7fa;
    padding: 15px;
    border-radius: 0 20px 0 20px;
    font-size: 14px;
    color: #333;
}

.tutorial-icon {
    font-size: 20px;
}

/* Cards de Tests */
.tests-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.test-card {
    background: white;
    border-radius: 0 20px 0 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.test-header {
    background: #17345A;
    color: white;
    padding: 25px 30px;
}

.test-curso {
    display: inline-block;
    background: #D1143E;
    color: white;
    padding: 5px 15px;
    border-radius: 0 20px 0 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
}

.test-header h3 {
    color: white;
    margin: 0;
    font-size: 20px;
}

.test-body {
    padding: 30px;
}

.test-body > p:first-child {
    color: #666;
    margin-bottom: 15px;
}

.test-footer {
    background: #FDF8F4;
    margin: 20px -30px -30px;
    padding: 20px 30px;
    border-top: 2px solid #D1143E;
}

.test-footer p {
    margin: 0;
    font-size: 14px;
    color: #555;
}

/* Grid de Recursos */
.recursos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.recurso-card {
    display: block;
    background: white;
    padding: 30px;
    border-radius: 0 20px 0 20px;
    text-decoration: none;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.recurso-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(23, 52, 90, 0.15);
    border-color: #D1143E;
}

.recurso-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.recurso-card h4 {
    color: #17345A;
    font-size: 18px;
    margin-bottom: 10px;
}

.recurso-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.recurso-link {
    color: #D1143E;
    font-weight: 600;
    font-size: 14px;
}

.recurso-card:hover .recurso-link {
    text-decoration: underline;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 25px;
}

@media (max-width: 600px) {
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
}



/* Responsive */
@media (max-width: 900px) {
    .tabs-nav {
        flex-direction: column;
    }
    
    .tab-btn {
        border-bottom: none;
        border-left: 3px solid transparent;
    }
    
    .tab-btn.active {
        border-left-color: #D1143E;
    }
    
    .tutorial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .tests-grid {
        grid-template-columns: 1fr;
    }
    
    .recursos-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .tutorial-grid {
        grid-template-columns: 1fr;
    }
    
    .tab-inner {
        padding: 25px;
    }
}/* End custom CSS */