MIX · extractor de estilos
Template: escuelakyodakewa.com/index.html · mtime: 2026-05-22 14:27
← Volver al álbum Descargar mixed.css Descargar manifest.json
CSS links: 2 Embebidos: 0 Externos: 2 Inline styles: 3 Missing: 0
CSS externos (no embebidos)
CSS embebidos (locales)
No se pudieron embebir CSS locales.
Preview de mixed.css
/* MIXED CSS PACK */
/* Template: escuelakyodakewa.com/index.html */
/* Template mtime: 2026-05-22 14:27:58 */

/* external link (no embedded): https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Playfair+Display:wght@500;600;700&display=swap */
/* external link (no embedded): https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css */

/* ===== INLINE <style> BLOCK #1 ===== */
:root {
      --accent: #c9a66b;
      --accent-dark: #a8854d;
      --accent-light: #e8d4b5;
      --text: #1a1a1a;
      --muted: #666666;
      --line: #e8e4dd;
      --soft: #faf8f5;
      --white: #ffffff;
      --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
      --shadow: 0 8px 32px rgba(0,0,0,0.08);
      --shadow-lg: 0 24px 64px rgba(0,0,0,0.12);
      --radius: 20px;
      --radius-sm: 12px;
      --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
      color: var(--text);
      background: var(--white);
      overflow-x: hidden;
      font-size: 16px;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    img {
      max-width: 100%;
      height: auto;
    }

    .section {
      padding: 120px 0;
      position: relative;
    }

    .section-soft {
      background: var(--soft);
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 16px;
      border-radius: 100px;
      background: linear-gradient(135deg, rgba(201,166,107,0.15) 0%, rgba(201,166,107,0.08) 100%);
      color: var(--accent-dark);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      margin-bottom: 20px;
      border: 1px solid rgba(201,166,107,0.2);
    }

    .section-title {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: clamp(2.5rem, 5vw, 4rem);
      font-weight: 600;
      line-height: 1.1;
      margin-bottom: 20px;
      color: var(--text);
      letter-spacing: -0.02em;
    }

    .section-subtitle {
      font-size: 1.1rem;
      line-height: 1.8;
      color: var(--muted);
      max-width: 640px;
      margin: 0 auto;
    }

    .navbar {
      background: rgba(255,255,255,0.92);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(0,0,0,0.04);
      padding: 16px 0;
      transition: var(--transition);
    }

    .navbar.scrolled {
      padding: 12px 0;
      box-shadow: var(--shadow-sm);
    }

    .navbar-brand {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .navbar-brand img {
      height: 44px;
      width: auto;
      object-fit: contain;
    }

    .brand-text {
      display: flex;
      flex-direction: column;
      line-height: 1.2;
    }

    .brand-text strong {
      font-size: 15px;
      font-weight: 700;
      color: var(--text);
      letter-spacing: -0.01em;
    }

    .brand-text span {
      font-size: 12px;
      color: var(--muted);
      font-weight: 500;
    }

    .navbar-nav .nav-link {
      color: var(--text);
      font-weight: 500;
      font-size: 14px;
      padding: 10px 16px !important;
      border-radius: 8px;
      transition: var(--transition);
      position: relative;
    }

    .navbar-nav .nav-link::after {
      content: '';
      position: absolute;
      bottom: 6px;
      left: 16px;
      right: 16px;
      height: 2px;
      background: var(--accent);
      border-radius: 2px;
      transform: scaleX(0);
      transition: transform 0.3s ease;
    }

    .navbar-nav .nav-link:hover::after,
    .navbar-nav .nav-link.active::after {
      transform: scaleX(1);
    }

    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active {
      color: var(--accent-dark);
    }

    .btn-main,
    .btn-outline-main {
      border-radius: 100px;
      padding: 16px 32px;
      font-weight: 600;
      font-size: 15px;
      transition: var(--transition);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      cursor: pointer;
      border: none;
    }

    .btn-main {
      background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
      color: var(--white);
      box-shadow: 0 8px 24px rgba(201,166,107,0.35);
    }

    .btn-main:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 32px rgba(201,166,107,0.45);
      color: var(--white);
    }

    .btn-outline-main {
      background: var(--white);
      color: var(--text);
      border: 2px solid var(--line);
    }

    .btn-outline-main:hover {
      border-color: var(--accent);
      color: var(--accent-dark);
      transform: translateY(-3px);
    }

    .hero {
      position: relative;
      padding: 180px 0 120px;
      background: linear-gradient(180deg, var(--white) 0%, var(--soft) 100%);
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -50%;
      right: -20%;
      width: 800px;
      height: 800px;
      background: radial-gradient(circle, rgba(201,166,107,0.12) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero::after {
      content: '';
      position: absolute;
      bottom: -30%;
      left: -10%;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(201,166,107,0.08) 0%, transparent 70%);
      pointer-events: none;
    }

    .hero-copy {
      max-width: 580px;
      position: relative;
      z-index: 2;
    }

    .hero-copy .section-title {
      font-size: clamp(2.8rem, 5.5vw, 4.5rem);
      margin-bottom: 8px;
    }

    .hero-tagline {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: 1.3rem;
      font-style: italic;
      color: var(--accent-dark);
      margin-bottom: 24px;
      font-weight: 500;
    }

    .hero-copy p {
      font-size: 1.05rem;
      line-height: 1.85;
      color: var(--muted);
      margin-bottom: 8px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      margin-top: 32px;
    }

    .hero-points {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
      margin-top: 40px;
    }

    .hero-point {
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: var(--radius-sm);
      padding: 16px 20px;
      font-weight: 600;
      font-size: 14px;
      color: var(--text);
      display: flex;
      align-items: center;
      gap: 12px;
      transition: var(--transition);
      box-shadow: var(--shadow-sm);
    }

    .hero-point::before {
      content: '';
      width: 8px;
      height: 8px;
      background: var(--accent);
      border-radius: 50%;
      flex-shrink: 0;
    }

    .hero-point:hover {
      transform: translateX(4px);
      border-color: var(--accent-light);
    }

    .hero-art-wrap {
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
      z-index: 2;
    }

    .hero-art {
      position: relative;
      width: min(100%, 480px);
      padding: 40px;
      background: var(--white);
      border-radius: 32px;
      border: 1px solid var(--line);
      box-shadow: var(--shadow-lg);
    }

    .hero-art::before {
      content: '';
      position: absolute;
      inset: -2px;
      border-radius: 34px;
      background: linear-gradient(135deg, var(--accent-light) 0%, transparent 50%);
      z-index: -1;
      opacity: 0.5;
    }

    .hero-art img {
      width: 100%;
      aspect-ratio: 1/1;
      object-fit: contain;
      display: block;
      border-radius: 24px;
    }

    .hero-decoration {
      position: absolute;
      width: 120px;
      height: 120px;
      border: 2px solid var(--accent-light);
      border-radius: 50%;
      opacity: 0.4;
    }

    .hero-decoration-1 {
      top: -20px;
      right: -20px;
    }

    .hero-decoration-2 {
      bottom: -30px;
      left: -30px;
      width: 80px;
      height: 80px;
    }

    .card-base {
      background: var(--white);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      transition: var(--transition);
    }

    .card-base:hover {
      box-shadow: var(--shadow-lg);
    }

    .about-card {
      padding: 48px;
      height: 100%;
    }

    .about-card p {
      color: var(--muted);
      line-height: 1.85;
      font-size: 1.05rem;
    }

    .about-list {
      display: grid;
      gap: 20px;
      margin-top: 32px;
    }

    .about-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      color: var(--text);
      font-weight: 500;
      line-height: 1.7;
    }

    .about-dot {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
      margin-top: 6px;
      flex-shrink: 0;
      box-shadow: 0 0 0 4px rgba(201,166,107,0.15);
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin-top: 60px;
    }

    .service-card {
      padding: 32px 28px;
      height: 100%;
      position: relative;
      overflow: hidden;
    }

    .service-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s ease;
    }

    .service-card:hover::before {
      transform: scaleX(1);
    }

    .service-card:hover {
      transform: translateY(-8px);
    }

    .service-number {
      width: 48px;
      height: 48px;
      border-radius: var(--radius-sm);
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, rgba(201,166,107,0.15) 0%, rgba(201,166,107,0.05) 100%);
      color: var(--accent-dark);
      font-weight: 700;
      font-size: 14px;
      margin-bottom: 20px;
      border: 1px solid rgba(201,166,107,0.2);
    }

    .service-card h3 {
      font-size: 1.15rem;
      font-weight: 700;
      margin-bottom: 12px;
      color: var(--text);
    }

    .service-card p {
      color: var(--muted);
      line-height: 1.75;
      font-size: 14px;
      margin: 0;
    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 60px;
    }

    .why-card {
      padding: 36px 32px;
      height: 100%;
    }

    .why-card:hover {
      transform: translateY(-8px);
    }

    .why-icon {
      width: 60px;
      height: 60px;
      border-radius: 16px;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
      color: var(--white);
      margin-bottom: 24px;
      box-shadow: 0 8px 24px rgba(201,166,107,0.3);
    }

    .why-icon svg {
      width: 28px;
      height: 28px;
    }

    .why-card h3 {
      font-size: 1.15rem;
      font-weight: 700;
      margin-bottom: 12px;
      color: var(--text);
    }

    .why-card p {
      color: var(--muted);
      line-height: 1.75;
      font-size: 14px;
      margin: 0;
    }

    .sheet-section {
      background: linear-gradient(180deg, var(--soft) 0%, var(--white) 100%);
    }

    .sheet-card {
      padding: 24px;
      border-radius: var(--radius);
      background: var(--white);
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
    }

    .sheet-frame {
      width: 100%;
      min-height: 560px;
      border: 0;
      border-radius: 16px;
      background: var(--white);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 32px;
      margin-top: 60px;
    }

    .contact-card {
      padding: 48px;
    }

    .form-label {
      font-weight: 600;
      font-size: 14px;
      color: var(--text);
      margin-bottom: 8px;
    }

    .form-control,
    .form-select {
      border-radius: var(--radius-sm);
      border: 2px solid var(--line);
      padding: 16px 20px;
      min-height: 56px;
      font-size: 15px;
      transition: var(--transition);
      background: var(--white);
    }

    .form-control:focus,
    .form-select:focus {
      border-color: var(--accent);
      box-shadow: 0 0 0 4px rgba(201,166,107,0.1);
      outline: none;
    }

    textarea.form-control {
      min-height: 140px;
      resize: vertical;
    }

    .info-card {
      padding: 48px;
    }

    .info-card p {
      color: var(--muted);
      line-height: 1.8;
    }

    .info-list {
      display: grid;
      gap: 20px;
      margin-top: 32px;
    }

    .info-item {
      display: flex;
      gap: 16px;
      align-items: flex-start;
    }

    .info-bullet {
      width: 44px;
      height: 44px;
      border-radius: var(--radius-sm);
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, rgba(201,166,107,0.15) 0%, rgba(201,166,107,0.05) 100%);
      color: var(--accent-dark);
      flex-shrink: 0;
      font-weight: 700;
      font-size: 13px;
      border: 1px solid rgba(201,166,107,0.2);
    }

    .info-item strong {
      display: block;
      font-size: 14px;
      font-weight: 600;
      margin-bottom: 4px;
      color: var(--text);
    }

    .info-item span,
    .info-item a {
      color: var(--muted);
      font-size: 14px;
      transition: var(--transition);
    }

    .info-item a:hover {
      color: var(--accent-dark);
    }

    .social-links {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 32px;
    }

    .social-links a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 14px 24px;
      border-radius: 100px;
      border: 2px solid var(--line);
      font-weight: 600;
      font-size: 14px;
      background: var(--white);
      transition: var(--transition);
    }

    .social-links a:hover {
      border-color: var(--accent);
      color: var(--accent-dark);
      transform: translateY(-2px);
    }

    .faq-section {
      background: var(--soft);
    }

    .faq-wrap {
      padding: 8px;
      border-radius: var(--radius);
      background: var(--white);
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
      max-width: 900px;
      margin: 60px auto 0;
    }

    .accordion {
      --bs-accordion-border-color: transparent;
      --bs-accordion-btn-focus-box-shadow: none;
      --bs-accordion-active-bg: transparent;
    }

    .accordion-item {
      border: none !important;
      background: transparent;
    }

    .accordion-item + .accordion-item {
      border-top: 1px solid var(--line) !important;
    }

    .accordion-button {
      font-weight: 600;
      font-size: 1rem;
      padding: 24px 28px;
      color: var(--text);
      background: transparent;
      border-radius: 0 !important;
    }

    .accordion-button:not(.collapsed) {
      color: var(--accent-dark);
      background: transparent;
      box-shadow: none;
    }

    .accordion-button::after {
      background-size: 16px;
      width: 16px;
      height: 16px;
    }

    .accordion-body {
      color: var(--muted);
      line-height: 1.85;
      padding: 0 28px 24px;
      font-size: 15px;
    }

    .gal-gallery {
      padding-bottom: 80px;
    }

    .gal-gallery .carousel {
      max-width: 1000px;
      margin-inline: auto;
      position: relative;
    }

    .gal-frame {
      height: clamp(280px, 50vh, 520px);
      background: var(--white);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 16px;
      border: 1px solid var(--line);
    }

    .gal-img {
      width: auto !important;
      max-width: 100%;
      height: auto !important;
      max-height: 100%;
      object-fit: contain !important;
      object-position: center;
      display: block;
      cursor: zoom-in;
      border-radius: 16px;
    }

    .gal-gallery .carousel-control-prev,
    .gal-gallery .carousel-control-next {
      z-index: 20;
      width: 56px;
      height: 56px;
      top: 50%;
      transform: translateY(-50%);
      opacity: 1;
      background: var(--white);
      border-radius: 50%;
      margin: 0 16px;
      box-shadow: var(--shadow);
      border: 1px solid var(--line);
      transition: var(--transition);
    }

    .gal-gallery .carousel-control-prev:hover,
    .gal-gallery .carousel-control-next:hover {
      background: var(--accent);
      border-color: var(--accent);
    }

    .gal-gallery .carousel-control-prev:hover .gal-ctrl-icon,
    .gal-gallery .carousel-control-next:hover .gal-ctrl-icon {
      filter: brightness(0) invert(1);
    }

    .gal-gallery .carousel-control-prev {
      left: -20px;
    }

    .gal-gallery .carousel-control-next {
      right: -20px;
    }

    .gal-gallery .gal-ctrl-icon {
      width: 20px;
      height: 20px;
      background-size: 100% 100%;
      filter: brightness(0);
      transition: var(--transition);
    }

    .gal-gallery .carousel-indicators {
      z-index: 10;
      bottom: -60px;
    }

    .gal-gallery .carousel-indicators button {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--line);
      border: none;
      transition: var(--transition);
    }

    .gal-gallery .carousel-indicators button.active {
      background: var(--accent);
      transform: scale(1.2);
    }

    #galLightbox .modal-content {
      background: #000;
      border-radius: var(--radius);
      overflow: hidden;
      border: none;
    }

    #galLightboxImg {
      max-height: 88vh;
      width: 100%;
      height: auto;
      object-fit: contain;
      background: #000;
    }

    .gal-lightbox-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      border: 0;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: rgba(255,255,255,0.15);
      color: #fff;
      font-size: 28px;
      line-height: 50px;
      text-align: center;
      z-index: 5;
      cursor: pointer;
      transition: var(--transition);
    }

    .gal-lightbox-nav:hover {
      background: rgba(255,255,255,0.3);
    }

    .gal-lightbox-nav.gal-prev {
      left: 16px;
    }

    .gal-lightbox-nav.gal-next {
      right: 16px;
    }


    .media-section {
      background: linear-gradient(180deg, var(--white) 0%, var(--soft) 100%);
    }

    .media-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 24px;
      margin-top: 56px;
    }

    .media-card {
      overflow: hidden;
      height: 100%;
      display: flex;
      flex-direction: column;
      background: var(--white);
    }

    .media-card:hover {
      transform: translateY(-8px);
    }

    .media-thumb {
      width: 100%;
      aspect-ratio: 4 / 3;
      background: #f1ede6;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      border-bottom: 1px solid var(--line);
    }

    .media-thumb img,
    .media-thumb video {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
      background: #f8f5ef;
    }

    .media-body {
      padding: 26px 26px 28px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      flex: 1;
    }

    .media-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 2px;
    }

    .media-pill {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 7px 12px;
      border-radius: 999px;
      background: rgba(201,166,107,0.14);
      color: var(--accent-dark);
      border: 1px solid rgba(201,166,107,0.22);
      font-size: 11px;
      font-weight: 800;
      letter-spacing: .09em;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .media-date {
      color: var(--muted);
      font-size: 13px;
      white-space: nowrap;
    }

    .media-title {
      font-size: 1.15rem;
      font-weight: 800;
      color: var(--text);
      margin: 0;
      line-height: 1.25;
    }

    .media-text {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.75;
      margin: 0;
    }

    .media-empty {
      display: none;
      margin-top: 40px;
      padding: 28px;
      border-radius: var(--radius);
      background: var(--white);
      border: 1px dashed var(--accent-light);
      color: var(--muted);
      text-align: center;
    }

    .media-open {
      margin-top: auto;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      width: fit-content;
      padding: 10px 16px;
      border-radius: 999px;
      background: var(--soft);
      border: 1px solid var(--line);
      color: var(--text);
      font-size: 13px;
      font-weight: 700;
      transition: var(--transition);
    }

    .media-open:hover {
      background: var(--accent);
      border-color: var(--accent);
      color: var(--white);
      transform: translateY(-2px);
    }

    .footer {
      background: linear-gradient(135deg, #2a2520 0%, #1a1815 100%);
      color: var(--white);
      padding: 80px 0 32px;
    }

    .footer-brand {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 20px;
    }

    .footer-brand img {
      height: 48px;
      width: auto;
      object-fit: contain;
      filter: brightness(1.1);
    }

    .footer-brand span {
      font-size: 15px;
      font-weight: 600;
      line-height: 1.3;
      color: var(--white);
    }

    .footer p {
      color: rgba(255,255,255,0.7);
      line-height: 1.8;
      font-size: 14px;
    }

    .footer a {
      color: rgba(255,255,255,0.7);
      transition: var(--transition);
    }

    .footer a:hover {
      color: var(--accent-light);
    }

    .footer-title {
      font-size: 14px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 20px;
      color: var(--white);
    }

    .footer-links,
    .footer-contact {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: 12px;
    }

    .footer-links li a,
    .footer-contact li,
    .footer-contact li a {
      font-size: 14px;
    }

    .footer-bottom {
      margin-top: 48px;
      padding-top: 24px;
      border-top: 1px solid rgba(255,255,255,0.1);
      font-size: 13px;
      color: rgba(255,255,255,0.5);
    }

    .footer-bottom a {
      color: var(--accent-light);
    }

    .footer-bottom a:hover {
      color: var(--white);
    }

    @media (max-width: 1199.98px) {
      .services-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .why-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .media-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      .hero {
        padding-top: 160px;
      }
    }

    @media (max-width: 991.98px) {
      .section {
        padding: 80px 0;
      }
      .hero {
        padding: 150px 0 80px;
      }
      .hero-copy {
        max-width: 100%;
      }
      .hero-art-wrap {
        margin-top: 48px;
      }
      .contact-grid {
        grid-template-columns: 1fr;
      }
      .navbar-collapse {
        margin-top: 16px;
        padding: 20px;
        border-radius: var(--radius);
        background: var(--white);
        border: 1px solid var(--line);
        box-shadow: var(--shadow-lg);
      }
      .gal-gallery .carousel-control-prev {
        left: 8px;
      }
      .gal-gallery .carousel-control-next {
        right: 8px;
      }
    }

    @media (max-width: 767.98px) {
      .section {
        padding: 64px 0;
      }
      .services-grid,
      .why-grid,
      .hero-points,
      .media-grid {
        grid-template-columns: 1fr;
      }
      .about-card,
      .contact-card,
      .info-card {
        padding: 32px 24px;
      }
      .sheet-frame {
        min-height: 420px;
      }
      .footer {
        padding: 60px 0 24px;
      }
    }

    @media (max-width: 575.98px) {
      .hero {
        padding: 140px 0 60px;
      }
      .section {
        padding: 56px 0;
      }
      .brand-text strong {
        font-size: 13px;
      }
      .brand-text span {
        font-size: 11px;
      }
      .navbar-brand img,
      .footer-brand img {
        height: 40px;
      }
      .hero-actions {
        flex-direction: column;
      }
      .btn-main,
      .btn-outline-main {
        width: 100%;
      }
      .gal-frame {
        height: clamp(200px, 38vh, 340px);
      }
      .sheet-frame {
        min-height: 360px;
      }
      .gal-gallery .carousel-control-prev,
      .gal-gallery .carousel-control-next {
        width: 44px;
        height: 44px;
      }
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(24px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .animate-on-scroll {
      opacity: 0;
      animation: fadeInUp 0.8s ease forwards;
    }

/* ===== INLINE <style> BLOCK #2 ===== */
.sheet-card{
    max-width: 980px;
    background: #fff;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 24px;
    padding: clamp(24px, 4vw, 42px);
    box-shadow: 0 18px 45px rgba(0,0,0,.08);
  }
  
  .sheet-copy h3{
    font-size: clamp(1.5rem, 2vw, 2rem);
    font-weight: 700;
    color: #111;
  }
  
  .sheet-copy p{
    margin: 0;
    color: #333;
    line-height: 1.75;
  }
  
  .sheet-qr-wrap small{
    color: #555;
  }
  
  .sheet-qr-box{
    background: #fff;
    border-radius: 24px;
    padding: 18px;
    border: 1px solid rgba(0,0,0,.08);
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  
  .sheet-qr{
    width: min(100%, 280px);
    height: auto;
    display: block;
    border-radius: 16px;
  }
  
  @media (max-width: 991.98px){
    .sheet-copy{
      text-align: center;
    }
  
    .sheet-card{
      text-align: center;
    }
  }

/* ===== INLINE <style> BLOCK #3 ===== */
:root{
    --wa:#25D366;
    --wa-dark:#1fb85a;
    --light-bg:#ffffff;
    --light-bg-soft:#f7f8fb;
    --light-border:#e5e7eb;
    --dark-text:#171717;
    --muted-text:#6b7280;
  }

  .post-float,
  .fb-float,
  .ig-float{
    position:fixed;
    right:18px;
    width:54px;
    height:54px;
    border-radius:50%;
    display:grid;
    place-items:center;
    color:#fff;
    text-decoration:none;
    box-shadow:0 10px 30px rgba(0,0,0,.25);
    transition:transform .25s, box-shadow .25s, opacity .25s;
  }

  .post-float:hover,
  .fb-float:hover,
  .ig-float:hover{
    transform:translateY(-2px) scale(1.04);
    box-shadow:0 14px 36px rgba(0,0,0,.35);
  }

  .post-float{
    bottom:240px;
    z-index:9996;
    background:linear-gradient(180deg,#7c3aed 0%,#5b21b6 100%);
  }

  .fb-float{
    bottom:166px;
    z-index:9997;
    background:linear-gradient(180deg,#1877F2 0%,#0f63d6 100%);
  }

  .ig-float{
    bottom:92px;
    z-index:9998;
    background:linear-gradient(45deg,#f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
  }

  .wa-float{
    position:fixed;
    right:18px;
    bottom:18px;
    z-index:9999;
    font-family:inherit;
  }

  .wa-btn{
    background:var(--wa);
    color:#fff;
    border:0;
    width:60px;
    height:60px;
    border-radius:50%;
    display:grid;
    place-items:center;
    box-shadow:0 10px 30px rgba(0,0,0,.22);
    cursor:pointer;
    transition:transform .3s, box-shadow .3s, filter .3s;
    position:relative;
    overflow:hidden;
    z-index:9999;
  }

  .wa-btn:hover{
    transform:translateY(-3px) scale(1.05);
    box-shadow:0 14px 36px rgba(0,0,0,.28);
    filter:brightness(.98);
  }

  .wa-card{
    position:absolute;
    right:0;
    bottom:74px;
    width:min(360px,92vw);
    background:var(--light-bg);
    color:var(--dark-text);
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 18px 60px rgba(0,0,0,.25);
    border:1px solid var(--light-border);
    transform:translateY(10px);
    opacity:0;
    transition:transform .3s, opacity .3s;
    z-index:10000;
  }

  .wa-card[aria-modal="true"]{
    transform:translateY(0);
    opacity:1;
  }

  .wa-head{
    display:flex;
    align-items:center;
    gap:12px;
    padding:14px 16px;
    background:linear-gradient(135deg,#ffffff,#f5f3ff);
    border-bottom:1px solid var(--light-border);
  }

  .wa-avatar{
    width:42px;
    height:42px;
    border-radius:12px;
    background:#f3e8ff;
    display:grid;
    place-items:center;
    border:1px solid #e9d5ff;
    overflow:hidden;
    flex:0 0 42px;
  }

  .wa-title{
    font-weight:800;
    font-size:1rem;
    color:var(--dark-text);
    line-height:1.2;
  }

  .wa-status{
    font-size:.85rem;
    color:var(--muted-text);
    display:flex;
    align-items:center;
    gap:6px;
    margin-top:2px;
  }

  .wa-status::before{
    content:"";
    width:8px;
    height:8px;
    border-radius:50%;
    background:var(--wa);
  }

  .wa-close{
    margin-left:auto;
    background:transparent;
    color:var(--muted-text);
    border:0;
    font-size:24px;
    cursor:pointer;
    opacity:.75;
    width:32px;
    height:32px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.2s;
  }

  .wa-close:hover{
    opacity:1;
    background:rgba(0,0,0,.04);
  }

  .wa-body{
    padding:12px 14px;
    max-height:40vh;
    overflow:auto;
    background:var(--light-bg-soft);
    display:flex;
    flex-direction:column;
    gap:8px;
  }

  .wa-bubble{
    max-width:88%;
    padding:9px 11px;
    border-radius:14px;
    line-height:1.35;
    box-shadow:0 3px 10px rgba(0,0,0,.06);
    animation:fadeIn .25s ease;
    font-size:.9rem;
  }

  @keyframes fadeIn{
    from{opacity:0;transform:translateY(5px)}
    to{opacity:1;transform:none}
  }

  .wa-bot{
    background:#fff;
    border:1px solid var(--light-border);
    align-self:flex-start;
    border-bottom-left-radius:4px;
  }

  .wa-user{
    background:var(--wa);
    color:#fff;
    align-self:flex-end;
    border-bottom-right-radius:4px;
  }

  .wa-compose{
    display:grid;
    grid-template-columns:1fr auto;
    gap:8px;
    padding:10px 12px;
    background:#fff;
    border-top:1px solid var(--light-border);
  }

  .wa-compose textarea{
    resize:none;
    border-radius:12px;
    padding:10px 12px;
    border:1px solid var(--light-border);
    background:#f9fafb;
    color:var(--dark-text);
    outline:none;
    min-height:44px;
    font-family:inherit;
    font-size:.9rem;
    transition:.2s;
  }

  .wa-compose textarea:focus{
    border-color:var(--wa);
    box-shadow:0 0 0 2px rgba(37,211,102,.15);
    background:#fff;
  }

  .wa-send{
    background:var(--wa);
    color:#fff;
    border:0;
    border-radius:12px;
    padding:0 16px;
    font-weight:700;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.2s;
  }

  .wa-send:hover{
    background:var(--wa-dark);
    transform:scale(1.04);
  }

  .wa-body::-webkit-scrollbar{width:6px}
  .wa-body::-webkit-scrollbar-track{background:rgba(0,0,0,.03);border-radius:3px}
  .wa-body::-webkit-scrollbar-thumb{background:rgba(0,0,0,.12);border-radius:3px}
  .wa-body::-webkit-scrollbar-thumb:hover{background:rgba(0,0,0,.18)}

  @media (max-width:480px){
    .post-float{right:12px;bottom:234px;width:52px;height:52px}
    .fb-float{right:12px;bottom:160px;width:52px;height:52px}
    .ig-float{right:12px;bottom:86px;width:52px;height:52px}
    .wa-float{right:12px;bottom:12px}
    .wa-card{width:calc(100vw - 24px);right:0}
  }

      
Manifest preview
{
    "template": "escuelakyodakewa.com/index.html",
    "template_mtime": 1779460078,
    "template_mtime_human": "2026-05-22T14:27:58+00:00",
    "css_links_found": [
        "https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Playfair+Display:wght@500;600;700&display=swap",
        "https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
    ],
    "css_links_external": [
        "https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Playfair+Display:wght@500;600;700&display=swap",
        "https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"
    ],
    "css_links_embedded": [],
    "inline_style_blocks": 3,
    "inline_imports_external": [],
    "inline_imports_embedded": [],
    "missing_css_files": []
}