:root{
  --container: 1360px;
  --backbar-h: 56px; 
}

body{ 
padding-bottom: var(--backbar-h); 
}

* { box-sizing: border-box; }
body{
  margin:0;
  font-family: 'Roboto', system-ui, Arial, sans-serif;
  color: #070c15
}

h1,h2,h3,h4,h5,h6,
.btn{
  font-family: 'Poppins', system-ui, Arial, sans-serif;
}

h1{ font-weight: 600; }
.card h3{ font-weight: 600; }
.btn{ font-weight: 400; }

.intro,
.kicker{
  font-family: 'Roboto', system-ui, Arial, sans-serif;
  font-weight: 400; 
}

.top {
  max-width: 1360px;
  margin: 0 auto;
  padding: 32px 16px;
  display: flex;
  gap: 0px;
  align-items: flex-start;
}

.left { 
    flex: 0 0 588px;
    max-width: 588px; 
padding-right: 24px;
}

.left h1 {
  margin: 0 0 12px;
  font-size: 40px;
  line-height: 1.1;
  position: relative;
}
.left h1::after {
  content: "";
  display: block;
  width: 64px;
  height: 6px;
  background: #EF9618;
  border-radius: 0;
  margin-top: 12px;
}
.intro {
  color: #4b5563;
  margin: 0 0 20px;
  max-width:480px;
}

.btn {
  display: inline-flex;          
  align-items: center;
  padding: 4px 12px;
  border-radius: 4px;
  background: #EF9618;
  border: 0px solid #EF9618;
  color: #070c15;
  text-decoration: none;
}

.right {
  flex: 0 0 740px;
  max-width: 740px;
  display: flex;                 
  flex-wrap: wrap;
  gap: 24px;
  padding: 0;
}

.card {
flex: 0 0 358px;
max-width: none;
  height: 160px; 
  box-sizing: border-box;
  background: #f4f4f4;
  border-radius: 0;
  padding: 20px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
  transition: transform .15s ease, box-shadow .15s ease;
}

.kicker {
  font-size: 14px;
  color: #334155;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.kicker i {
  width: 10px; 
  height: 10px; 
  background: #1e3a8a; 
  border-radius: 0; 
  display: inline-block;
}

.card h3 {
  margin: 6px 0 0;
  font-size: 24px;
  line-height: 1.35;
}


@media (max-width: 900px) {
  .top { flex-direction: column; }
  .card { flex-basis: 100%; }    
}

.talleres {
  background: #f4f4f4;          
 padding:24px 0 44px;
 }

.talleres .wrap {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  gap: 0px;
  align-items: stretch;         
}

.talleres-left {
  flex: 0 0 588px;
  max-width: 588px;
  background: #142440;          
  color: #f4f4f4;
  border-radius: 0;
  padding:28px;
  padding-right: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 444px;
  img{border-radius:0;}   
}

.talleres-left .tag {
  font-family: 'Roboto', system-ui, Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #f4f4f4;              
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding-bottom: 10px;
  position:relative;
}

.talleres-left .tag i{
  width: 10px; 
  height: 10px;
  border-radius: 0px;
  background: #64799e;          
  display: inline-block;
}

.talleres-left .tag::after{
  content:"";
  position:absolute;
  left:0; 
  bottom:0;
  width: 444px;      
  height: 1px;     
  background: #223C6A;
}

.talleres-left h2{
  margin: 0 0 16px;
  font-size: 40px;
  line-height: 1.2;
  position: relative;
  font-weight: 600;
}
.talleres-left h2::after{
  content: "";
  display: block;
  width: 64px;
  height: 6px;
  background: #64799e;          
  border-radius: 0px;
  margin-top: 16px;
}

.talleres-left .desc{
  margin: 16px 0 20px;
  color: #f4f4f4;
  max-width:480px;
}

.talleres-left .btn{
  align-self: flex-start;    
  padding: 4px;    
}

.talleres-right{
  flex: 0 0 740px;
  max-width: 740px;
  display: flex;
  min-height: 444px;           
}

.talleres-right img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius:0;
  display: block;
}

@media (max-width: 900px){
  .talleres .wrap{ flex-direction: column; }
  .talleres-right{ min-height: 260px; }
}

.back-bar{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: var(--backbar-h);
  background: #fff;
  border-top: 1px solid #e5e7eb;
  box-shadow: 0 -6px 16px rgba(0,0,0,.06);
  z-index: 1000;
}

.back-bar__inner{
  max-width: calc(var(--container) + 32px); 
  margin: 0 auto;
  padding: 8px 16px;
  display: flex;
  align-items: center;
}

.back-btn{
  color: #0b1220;          
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 0;          
}

.back-btn:hover{ 
    text-decoration: underline; }