/*
Theme Name: Astra Child
Template: astra
Version: 1.0
*/


    a{
        text-decoration: none !important;
    }
    
/*ENLAZADO HOME*/
    .enlaces-categorias-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin: 30px auto;
      max-width: 1200px;
    }
    
    .enlace-categoria {
      width: 100%;
      max-width: 300px;
      position: relative;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
    
    .enlace-imagen {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
      background-color: #f0f0f0; /* Color de fondo mientras carga */
    }
    
    .enlace-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
      height: 50%;
      pointer-events: none;
    }
    
    .enlace-titulo {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      color: white;
      padding: 12px 15px;
      text-align: center;
      font-weight: bold;
      font-size: 18px;
    }
    
    .quince .enlace-titulo {
      background-color: #FF4D8F;
    }
    
    .mama .enlace-titulo {
      background-color: #6A4FFF;
    }
    
    .amor .enlace-titulo {
      background-color: #FF5757;
    }
    
    @media (max-width: 768px) {
      .enlace-categoria {
        max-width: 100%;
      }
      
      .enlaces-categorias-container {
        padding: 0 15px;
      }
    }
    
    
    
    /*CTA HOME*/
    
     .hero-section {
      position: relative;
      min-height: 550px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0;
      overflow: hidden;
      font-family: 'Montserrat', 'Segoe UI', sans-serif;
      margin: 0 0 40px 0;
    }
    .hero-content {
      max-width: 800px; 
      width: 90%; 
      color: white!important; 
      text-align: center;
      padding: 40px; 
      border-radius: 12px; 
      border-left: 5px solid #FFD700;
      position: relative;
    }
    .hero-title h2{
      font-size: 36px;
      color: white !important; 
      font-weight: 800;
      margin-bottom: 25px;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
      position: relative; 
      display: inline-block;
    }
    .hero-title::after {
      content: ''; position: absolute; bottom: -10px; left: 50%;
      transform: translateX(-50%);
      width: 80px; height: 3px;
      background: linear-gradient(90deg, #FF6B6B, #FFD700);
      border-radius: 3px;
    }
    .hero-text {
      font-size: 19px; line-height: 1.7; margin-bottom: 25px;
      letter-spacing: 0.3px;
      text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    }
    .highlight {
      font-weight: 700; color: #FFD700; padding: 0 3px;
      position: relative; z-index: 1;
    }
    .highlight::before {
      content: ''; position: absolute; bottom: 0; left: 0; width: 100%; height: 30%;
      background-color: rgba(255,215,0,0.2); z-index: -1; transform: skewX(-10deg);
    }
    .song-title {
      font-style: italic; color: #FF6B6B; font-weight: 600;
      text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    }
    .cta-button {
      display: inline-block; margin-top: 10px; padding: 12px 30px;
      background: linear-gradient(135deg, #FFD700, #FFA500);
      color: #000; font-weight: bold; text-decoration: none;
      border-radius: 50px; box-shadow: 0 4px 15px rgba(255,215,0,0.4);
      border: none; cursor: pointer; transition: all 0.3s ease;
    }
    .cta-button:hover {
      transform: translateY(-3px);
      box-shadow: 0 7px 20px rgba(255,215,0,0.5);
      background: linear-gradient(135deg, #FFA500, #FFD700);
    }
    @media (max-width: 768px) {
      .hero-title { font-size: 32px; }
      .hero-text { font-size: 17px; }
      .hero-content { padding: 30px 20px; width: 95%; }
    }
    
    
    /*PRECIOS*/
    
  /*Tarjetas - Estilos críticos*/
  .cards-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 20px;
  }
  
  .card {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    width: 300px;
    height: 550px;
    max-width: 300px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: auto;
  }
  
  .card-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
  }
  
  .card-header .icon {
    font-size: 24px;
    color: gold;
  }
  
  .divider {
    width: 100%;
    height: 10px;
    background-color: #f0f0f0;
    margin-bottom: 15px;
  }
  
  /* Lista de características */
  .card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    flex-grow: 1;
  }
  
  .card ul li {
    margin-bottom: 10px;
    font-size: 14px;
    color: #555;
    padding-left: 24px;
    position: relative;
  }
  
  .card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: green;
  }
  
  .button-container {
    margin-top: auto;
    padding-top: 20px;
  }
  
  .cotizar-btn {
    padding: 12px 20px;
    background-color: #007bff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    color: white;
    cursor: pointer;
    width: 80%;
  }
  
  .card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 300px;
    height: 500px;
  }
 
  
  @media (max-width: 900px) {
    .cards-container {
      flex-direction: column;
      gap: 16px;
      align-items: center;
      padding: 10px;
    }
    .card-link,
    .card {
      width: 100% !important;
      max-width: 100% !important;
      min-width: 0 !important;
      height: auto !important;
    }
    .card {
      overflow: visible !important;
    }
  }


  .card {
    transition: transform 0.3s;
  }
  .card:hover {
    transform: scale(1.05);
  }
  .card ul li::before {
    content: '✔️';
    margin-right: 10px;
    color: green;
  }
  .cotizar-btn::before {
    content: '💌 ';
  }
  .card-link:hover .card {
    transform: none;
  }
  .divider {
    background-image: url("data:image/svg+xml,%3Csvg width='100%25' height='10' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none'%3E%3Cpath d='M0 5 Q 10 0, 20 5 T 40 5 T 60 5 T 80 5 T 100 5 T 120 5 T 140 5 T 160 5 T 180 5 T 200 5' stroke='%238f6700' fill='none' stroke-width='2' /%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
  }
  
  
  /* CTA  2 HOME*/
  
      .promo-section {
      font-family: 'Georgia', serif;
      padding: 30px 20px;
      background-color: #f0f7ff;
      position: relative;
      text-align: center;
      margin: 20px 0;
    }
    
    .promo-container {
      max-width: 800px;
      margin: 0 auto;
      position: relative;
    }
    
    .promo-content {
      background-color: white;
      border: 1px solid #d0e1f9;
      border-radius: 8px;
      padding: 30px;
      box-shadow: 0 4px 12px rgba(37, 99, 235, 0.1);
    }
    
    .promo-title {
      font-size: 28px;
      font-weight: bold;
      margin-bottom: 20px;
      color: #1e3a8a;
    }
    
    .promo-text {
      font-size: 20px;
      line-height: 1.5;
      margin-bottom: 25px;
      color: #334155;
    }
    
    .highlight {
      font-weight: bold;
      color: #1e40af;
    }
    
    .mariachi-highlight {
      font-weight: bold;
      color: #1e3a8a;
    }
    
    .serenatas-highlight {
      font-weight: bold;
      color: #3b82f6;
    }
    
    .icon-section {
      margin: 15px 0;
      color: #2563eb;
    }
    
    .cta-button {
      display: inline-block;
      background-color: #2563eb;
      color: white;
      padding: 10px 25px;
      border-radius: 6px;
      font-size: 16px;
      font-weight: bold;
      text-decoration: none;
      margin-top: 15px;
      border: none;
      cursor: pointer;
    }


 /*FICHA*/
    
:root {
    --primary: #1a1a1a;
    --primary-light: #333333;
    --secondary: #2a9d8f;
    --highlight: #f9c74f;
    --button-color: #0066cc;
    --button-hover: #0052a3;
    --bg-light: #f8f9fa;
    --text-dark: #343a40;
    --text-medium: #495057;
    --text-light: #fff;
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 14px 28px rgba(0, 0, 0, 0.25);
    --radius-sm: 10px;
    --radius-md: 15px;
    --radius-lg: 30px;
    --transition: 0.3s ease;
}

.mariachi-zones-container {
    max-width: 1000px;
    margin: 50px auto;
    background-color: var(--bg-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.header-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 25px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.header-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
    z-index: 0;
}

.header-banner h2 {
    color: var(--text-light);
    font-size: clamp(24px, 5vw, 32px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.header-banner p {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(16px, 3vw, 18px);
    margin: 10px auto 0;
    max-width: 700px;
    position: relative;
    z-index: 1;
}

.category-title {
    text-align: center;
    margin: 30px 0 15px;
    color: var(--primary);
    font-size: clamp(20px, 4vw, 22px);
    font-weight: 700;
    padding: 0 20px;
}

.category-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-light), var(--primary));
    margin: 10px auto;
    border-radius: 2px;
}

.feature-section {
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-top: 10px;
}

.feature-content {
    flex: 1;
    padding-right: 15px;
}

.feature-content h3 {
    color: var(--primary);
    font-size: clamp(20px, 4vw, 24px);
    margin-bottom: 20px;
}

.feature-content p {
    font-size: clamp(14px, 3vw, 16px);
    line-height: 1.7;
    margin-bottom: 22px;
    color: var(--text-medium);
}

.feature-content p strong {
    color: var(--primary);
    font-weight: 600;
}

.feature-img {
    flex: 1;
    max-width: 50%;
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
    margin: 10px 0;
    height: auto;
}

.feature-img img {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    background-color: #f5f5f5;
    transition: transform var(--transition);
}

.feature-img:hover img {
    transform: scale(1.02);
}

.feature-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(0deg, rgba(0, 102, 204, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
}

.zones-flex-container {
    display: flex;
    flex-wrap: wrap;
    padding: 0 30px 30px;
    justify-content: center;
    gap: clamp(15px, 3vw, 25px);
}

.zone-item {
    flex: 0 0 calc(33.33% - 20px);
    max-width: calc(33.33% - 20px);
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition);
    border-radius: 12px;
    overflow: hidden;
    background-color: white;
    box-shadow: var(--shadow-sm);
    margin-bottom: 25px;
}

.zone-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.zone-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
    background-color: #f5f5f5;
}

.zone-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform var(--transition);
}

.zone-item:hover .zone-image img {
    transform: scale(1.05);
}

.zone-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(42, 157, 143, 0.2) 0%, rgba(42, 157, 143, 0) 80%);
    z-index: 1;
}

.zone-content {
    padding: 16px;
    text-align: center;
    background-color: white;
    border-radius: 0 0 12px 12px;
}

.zone-tag {
    display: inline-block;
    background-color: var(--secondary);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 15px;
    box-shadow: var(--shadow-sm);
    transform: translateY(-50%);
    position: relative;
    z-index: 2;
}

.zone-link {
    display: inline-block;
    width: 100%;
    padding: 12px 25px;
    background: linear-gradient(135deg, var(--button-color) 0%, var(--button-hover) 100%);
    color: white;
    text-decoration: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    transition: transform var(--transition), box-shadow var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    margin-top: 5px;
}

.zone-link:hover {
    box-shadow: 0 5px 15px rgba(0, 102, 204, 0.4);
    transform: translateY(-2px);
}

.zone-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--button-hover) 0%, var(--button-color) 100%);
    transition: width var(--transition);
    z-index: -1;
}

.zone-link:hover::before {
    width: 100%;
}

@media (max-width: 1024px) {
    .zone-item {
        flex: 0 0 calc(50% - 20px);
        max-width: calc(50% - 20px);
    }
    
    .mariachi-zones-container {
        margin: 30px 15px;
    }
    
    .feature-img img {
        max-height: 380px;
    }
}

@media (max-width: 768px) {
    .feature-section {
        flex-direction: column;
        padding: 0 20px 20px;
    }
    
    .feature-img {
        max-width: 100%;
        order: -1;
        margin-bottom: 20px;
    }
    
    .zone-item {
        flex: 0 0 calc(50% - 15px);
        max-width: calc(50% - 15px);
    }
    
    .zones-flex-container {
        padding: 0 20px 20px;
    }
    
    .feature-img img {
        max-height: 340px;
    }
}

@media (max-width: 480px) {
    .zone-item {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .mariachi-zones-container {
        margin: 20px 10px;
        border-radius: 10px;
    }
    
    .feature-section, 
    .zones-flex-container {
        padding: 0 15px 15px;
        gap: 15px;
    }
    
    .category-title {
        margin: 20px 0 10px;
    }
    
    .feature-img img {
        max-height: 300px;
    }
    
    .zone-image {
        height: 200px;
    }
}

@media (min-width: 992px) {
    .feature-img img {
        max-height: 450px;
    }
    
    .zone-image {
        height: 240px;
    }
}
