.elementor-30458 .elementor-element.elementor-element-2cde25f{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}@media(min-width:768px){.elementor-30458 .elementor-element.elementor-element-2cde25f{--content-width:100%;}}/* Start custom CSS for html, class: .elementor-element-04e3308 */:root {
      --kc-brand: #005C8A;
      --rose: #E91E63;
      --ink: #0f172a;
      --muted: #64748b;
      --light-bg: #f8fafc;
      --border: #e2e8f0;
      --radius: 12px;
    }

    .kc-blog-post * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    .kc-blog-post {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      line-height: 1.7;
      color: var(--ink);
      background: #fff;
    }

    /* Header */
    .kc-blog-header {
      background: linear-gradient(135deg, var(--rose) 0%, #d81b60 100%);
      color: white;
      padding: 80px 20px 60px;
      text-align: center;
    }

    .kc-blog-header .container {
      max-width: 800px;
      margin: 0 auto;
    }

    .kc-blog-category {
      display: inline-block;
      background: rgba(255,255,255,0.2);
      padding: 8px 16px;
      border-radius: 20px;
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 20px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .kc-blog-title {
      font-size: clamp(32px, 5vw, 48px);
      font-weight: 800;
      margin-bottom: 20px;
      line-height: 1.2;
    }

    .kc-blog-meta {
      display: flex;
      gap: 24px;
      justify-content: center;
      align-items: center;
      font-size: 15px;
      opacity: 0.9;
      flex-wrap: wrap;
    }

    .kc-blog-meta span {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    /* Article principal */
    .kc-blog-article {
      max-width: 800px;
      margin: -40px auto 0;
      background: white;
      border-radius: var(--radius);
      box-shadow: 0 20px 60px rgba(0,0,0,0.1);
      overflow: hidden;
      position: relative;
    }

    .kc-featured-image {
      width: 100%;
      height: 400px;
      object-fit: cover;
    }

    .kc-article-content {
      padding: 50px;
    }

    .kc-intro-text {
      font-size: 20px;
      line-height: 1.8;
      color: var(--muted);
      margin-bottom: 40px;
      padding-left: 20px;
      border-left: 4px solid var(--rose);
    }

    .kc-article-content h2 {
      font-size: 28px;
      font-weight: 700;
      margin: 50px 0 20px;
      color: var(--ink);
    }

    .kc-article-content h3 {
      font-size: 22px;
      font-weight: 600;
      margin: 40px 0 16px;
      color: var(--kc-brand);
    }

    .kc-article-content p {
      margin-bottom: 20px;
      font-size: 17px;
      line-height: 1.8;
    }

    .kc-highlight-box {
      background: linear-gradient(135deg, #fce7f3 0%, #fbcfe8 100%);
      padding: 30px;
      border-radius: var(--radius);
      margin: 40px 0;
      border-left: 5px solid var(--rose);
    }

    .kc-highlight-box h3 {
      color: var(--rose);
      margin-top: 0;
    }

    .kc-stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 20px;
      margin: 40px 0;
    }

    .kc-stat-card {
      background: var(--light-bg);
      padding: 24px;
      border-radius: var(--radius);
      text-align: center;
      border: 2px solid var(--border);
    }

    .kc-stat-number {
      font-size: 32px;
      font-weight: 800;
      color: var(--rose);
      display: block;
      margin-bottom: 8px;
    }

    .kc-stat-label {
      font-size: 14px;
      color: var(--muted);
      font-weight: 500;
    }

    /* Galerie photos */
    .kc-photo-gallery {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 16px;
      margin: 40px 0;
    }

    .kc-photo-item {
      position: relative;
      border-radius: var(--radius);
      overflow: hidden;
      aspect-ratio: 4/3;
    }

    .kc-photo-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .kc-photo-item:hover img {
      transform: scale(1.05);
    }

    .kc-photo-caption {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(transparent, rgba(0,0,0,0.8));
      color: white;
      padding: 40px 16px 16px;
      font-size: 14px;
      font-weight: 500;
    }

    /* Citation */
    .kc-quote-block {
      background: var(--light-bg);
      padding: 40px;
      border-radius: var(--radius);
      margin: 40px 0;
      position: relative;
    }

    .kc-quote-block::before {
      content: '"';
      font-size: 80px;
      color: var(--rose);
      opacity: 0.2;
      position: absolute;
      top: 20px;
      left: 30px;
      font-family: Georgia, serif;
    }

    .kc-quote-text {
      font-size: 20px;
      font-style: italic;
      line-height: 1.6;
      color: var(--ink);
      position: relative;
      z-index: 1;
    }

    .kc-quote-author {
      margin-top: 16px;
      font-size: 16px;
      color: var(--muted);
      font-weight: 600;
    }

    /* Info box */
    .kc-info-box {
      background: #e0f2fe;
      border-left: 5px solid var(--kc-brand);
      padding: 24px;
      border-radius: var(--radius);
      margin: 30px 0;
    }

    .kc-info-box h4 {
      color: var(--kc-brand);
      margin-bottom: 12px;
      font-size: 18px;
    }

    .kc-info-box ul {
      list-style: none;
      padding: 0;
    }

    .kc-info-box li {
      padding: 8px 0;
      padding-left: 24px;
      position: relative;
    }

    .kc-info-box li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: var(--kc-brand);
      font-weight: bold;
    }

    /* Footer */
    .kc-article-footer {
      background: var(--light-bg);
      padding: 40px 50px;
      border-top: 2px solid var(--border);
    }

    .kc-tags {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-bottom: 24px;
    }

    .kc-tag {
      background: white;
      padding: 8px 16px;
      border-radius: 20px;
      font-size: 14px;
      color: var(--muted);
      border: 1px solid var(--border);
    }

    .kc-share-section {
      padding-top: 24px;
      border-top: 1px solid var(--border);
    }

    .kc-share-section h4 {
      font-size: 16px;
      margin-bottom: 12px;
      color: var(--ink);
    }

    /* Container global */
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .kc-article-content {
        padding: 30px 20px;
      }
      .kc-blog-header {
        padding: 60px 20px 40px;
      }
      .kc-stats-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .kc-photo-gallery {
        grid-template-columns: 1fr;
      }
    }/* End custom CSS */