/* Ciclo custom styling layered on top of Quiety parent. */

/* Hero tone */
.ciclo-hero {
  background: radial-gradient(1200px 600px at 20% 0%, rgba(23,92,255,0.12), transparent 60%),
              radial-gradient(900px 500px at 90% 20%, rgba(0,212,255,0.10), transparent 60%),
              #ffffff;
}
.ciclo-hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
  color: var(--ciclo-ink);
}
.ciclo-hero .lead {
  font-size: 1.15rem;
  color: #52525c;
  max-width: 640px;
}

/* Product strip */
.ciclo-products {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.ciclo-product-card {
  background: #fff;
  border: 1px solid #e8ecf3;
  border-radius: 14px;
  padding: 1.5rem;
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.ciclo-product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(11,22,63,0.08);
}

/* Intersection graphic — v3 (HTML chips layered over SVG blobs) */
.ciclo-intersections {
  position: relative;
  max-width: 780px;
  margin: 3rem auto;
  aspect-ratio: 1 / 1;
}
.ciclo-intersections .ciclo-venn { width: 100%; height: 100%; display: block; }
.ciclo-intersections text {
  font-family: "Space Grotesk", "Inter", sans-serif;
  fill: var(--ciclo-ink);
}

.ciclo-chip {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #fff;
  border: 1px solid var(--ciclo-border);
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(39,39,39,0.10);
  white-space: nowrap;
  opacity: 0;
  animation: ciclo-chip-in 0.6s ease-out forwards;
}
.ciclo-chip-0 { animation-delay: 0.2s; }
.ciclo-chip-1 { animation-delay: 0.35s; }
.ciclo-chip-2 { animation-delay: 0.5s; }
.ciclo-chip-3 { animation-delay: 0.65s; }
.ciclo-chip-4 { animation-delay: 0.8s; }
@keyframes ciclo-chip-in {
  from { opacity: 0; transform: translate(-50%, calc(-50% + 10px)); }
  to   { opacity: 1; transform: translate(-50%, -50%); }
}
.ciclo-chip .chip-dot {
  width: 10px; height: 10px; border-radius: 50%; flex: 0 0 auto;
}
.ciclo-chip .chip-text strong {
  display: block; font-family: "Space Grotesk", sans-serif;
  font-weight: 700; font-size: 0.95rem; color: var(--ciclo-ink); line-height: 1.2;
}
.ciclo-chip .chip-text em {
  display: block; font-style: normal; font-size: 0.78rem; color: #7a7a7a;
  margin-top: 1px;
}
.ciclo-chip.align-left   { transform: translate(0, -50%); }
.ciclo-chip.align-right  { transform: translate(-100%, -50%); }
@keyframes ciclo-chip-in-left  { from{opacity:0;transform:translate(0,calc(-50% + 10px));} to{opacity:1;transform:translate(0,-50%);} }
@keyframes ciclo-chip-in-right { from{opacity:0;transform:translate(-100%,calc(-50% + 10px));} to{opacity:1;transform:translate(-100%,-50%);} }
.ciclo-chip.align-left  { animation-name: ciclo-chip-in-left; }
.ciclo-chip.align-right { animation-name: ciclo-chip-in-right; }

/* Blobs: gentle breathing */
.ciclo-intersections .blob {
  transform-box: fill-box;
  transform-origin: center;
  animation: ciclo-blob-breathe 9s ease-in-out infinite;
}
.ciclo-intersections .blob-0 { animation-delay: 0s; }
.ciclo-intersections .blob-1 { animation-delay: 1.2s; }
.ciclo-intersections .blob-2 { animation-delay: 2.4s; }
.ciclo-intersections .blob-3 { animation-delay: 3.6s; }
.ciclo-intersections .blob-4 { animation-delay: 4.8s; }
@keyframes ciclo-blob-breathe {
  0%, 100% { transform: scale(1);    opacity: 1;   }
  50%      { transform: scale(1.06); opacity: 0.9; }
}
@media (prefers-reduced-motion: reduce) {
  .ciclo-intersections .blob,
  .ciclo-chip { animation: none !important; opacity: 1 !important; }
}

/* Watermark token in core */
.ciclo-intersections .ciclo-core-token { opacity: 1; }

/* Core lockup — text overlay on top of token */
.ciclo-intersections .ciclo-core .core-label {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.22em;
  fill: #ffffff;
  paint-order: stroke;
  stroke: rgba(39,39,39,0.35);
  stroke-width: 0.6px;
}
.ciclo-intersections .ciclo-core .core-sub {
  font-size: 8px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  fill: #f0ece2;
  font-weight: 600;
  paint-order: stroke;
  stroke: rgba(39,39,39,0.3);
  stroke-width: 0.4px;
}

/* Label pills */
.ciclo-intersections .pill {
  opacity: 0;
  animation: ciclo-pill-in 0.7s ease-out forwards;
}
.ciclo-intersections .pill-0 { animation-delay: 0.3s; }
.ciclo-intersections .pill-1 { animation-delay: 0.5s; }
.ciclo-intersections .pill-2 { animation-delay: 0.7s; }
.ciclo-intersections .pill-3 { animation-delay: 0.9s; }
.ciclo-intersections .pill-4 { animation-delay: 1.1s; }
@keyframes ciclo-pill-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0);   }
}
.ciclo-intersections .pill-label {
  font-weight: 700; font-size: 17px; fill: var(--ciclo-ink);
  letter-spacing: -0.01em;
}
.ciclo-intersections .pill-sub {
  font-size: 12px; fill: #7a7a7a; font-weight: 500;
  letter-spacing: 0.02em;
}

@media (prefers-reduced-motion: reduce) {
  .ciclo-intersections .blob,
  .ciclo-intersections .pill { animation: none; opacity: 1; }
}

@media (max-width: 640px) {
  .ciclo-intersections .pill-label { font-size: 14px; }
  .ciclo-intersections .pill-sub { font-size: 10px; }
  .ciclo-intersections .ciclo-core .core-label { font-size: 22px; }
}

/* Force the site header to always be visible and solid white.
   Quiety's default is transparent-over-hero then slides in on scroll,
   which hid the nav on our light hero. */
.site-header {
  position: sticky !important;
  top: 0 !important;
  background: #ffffff !important;
  box-shadow: 0 1px 0 rgba(39,39,39,0.06);
  z-index: 1000;
  transform: none !important;
}
.site-header .quiety_nav_manu a,
.site-header .main-nav a,
.site-header nav a { color: var(--ciclo-ink) !important; }

/* Navbar "Request Engagement" CTA: cream text on rust */
.site-header .tt-btn.nav-btn,
.site-header .nav-btn {
  color: #fbf5ec !important;
}
.site-header .tt-btn.nav-btn:hover,
.site-header .nav-btn:hover {
  color: #ffffff !important;
}

/* Vertical breathing room inside the sticky header */
.site-header .header-inner,
.site-header > .container,
.site-header > .container-fluid {
  padding-top: 6px;
  padding-bottom: 6px;
}

/* Page-header banner: force dark text for legibility on Ciclo banner */
.page-header .page-header_title,
.page-header_title,
.page-header .page-header_desc,
.page-header_desc,
.page-header .breadcrumb a,
.page-header .breadcrumb,
.page-header .breadcrumb-item,
.page-header .breadcrumb-item.active,
.page-header .breadcrumb-item a { color: #272727 !important; }

/* Give the header breathing room so the logo doesn't overlap the hero headline */
.quiety_nav_manu, .quiety_nav_manu_02, header.site-header {
  background: #ffffff !important;
  box-shadow: 0 1px 0 rgba(11,22,63,0.06);
}
.site-logo img.main-logo { max-height: 40px; width: auto; }

/* Add breathing room under the first hero so the downloaded Ciclo hero image sits cleanly */
.hero-img-one img, .hero-wrap img { max-width: 100%; height: auto; }

/* =========================================================
   Ciclo homepage (template-ciclo-home.php)
   ========================================================= */
#ciclo-home { color: var(--ciclo-ink); }
#ciclo-home section { padding: 5rem 0; }
#ciclo-home .eyebrow {
  text-transform: uppercase; letter-spacing: 0.14em; font-weight: 600;
  font-size: 0.78rem; color: var(--color_primary); margin-bottom: 1rem;
}
#ciclo-home h1 {
  font-size: clamp(2.4rem, 5vw, 4.2rem); line-height: 1.05; font-weight: 700;
  margin: 0 0 1.25rem; color: var(--ciclo-ink);
}
#ciclo-home h1 .accent { color: var(--color_primary); }
#ciclo-home h1 .ai-pill {
  display: inline-block;
  background: var(--color_primary);
  color: #ffffff;
  padding: 0.05em 0.4em;
  border-radius: 10px;
  line-height: 1.05;
}
#ciclo-home h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; margin: 0 0 1rem; }
#ciclo-home p.lead { font-size: 1.15rem; color: #52525c; max-width: 620px; margin-bottom: 2rem; }
#ciclo-home p.sub  { color: #52525c; max-width: 680px; margin: 0 auto 2.5rem; }

#ciclo-home .cta-row { display: flex; gap: 1rem; flex-wrap: wrap; }
#ciclo-home .btn-primary-ciclo,
#ciclo-home .btn-ghost-ciclo {
  display: inline-block; padding: 0.9rem 1.6rem; border-radius: 10px;
  font-weight: 600; text-decoration: none; transition: all 160ms ease;
}
#ciclo-home .btn-primary-ciclo { background: var(--color_primary); color: #fff; }
#ciclo-home .btn-primary-ciclo:hover { background: #272727; color: #fff; }
#ciclo-home .btn-ghost-ciclo { border: 1.5px solid #d7dcea; color: var(--ciclo-ink); }
#ciclo-home .btn-ghost-ciclo:hover { border-color: var(--color_primary); color: var(--color_primary); }

/* Hero */
.ciclo-hero { background: radial-gradient(1100px 500px at 15% 0%, rgba(185,77,38,0.08), transparent 65%),
                           radial-gradient(800px 400px at 90% 20%, rgba(216,154,65,0.10), transparent 60%),
                           var(--ciclo-bg-soft); }
.ciclo-hero .hero-img {
  width: 125%;
  max-width: none;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(39,39,39,0.18);
  margin-left: -25%;
  margin-top: 5rem;
  position: relative;
  z-index: 1;
}
.ciclo-hero .col-lg-5 { position: relative; z-index: 2; }
@media (max-width: 992px) {
  .ciclo-hero .hero-img { width: 100%; margin-left: 0; }
}

/* Lead-panel: light card that sits in the text column */
.ciclo-hero .lead-panel {
  position: relative;
  z-index: 3;
  background: #ffffff;
  border: 1px solid var(--ciclo-border);
  border-left: 4px solid var(--color_primary);
  border-radius: 14px;
  padding: 1.35rem 1.5rem;
  margin: 0 0 2rem;
  box-shadow: 0 18px 40px rgba(39,39,39,0.10);
  width: 68%;
  max-width: 68%;
}
.ciclo-hero .cta-row {
  width: 100%;
  max-width: 100%;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.ciclo-hero .lead-panel .lead {
  margin: 0;
  font-size: 1.1rem;
  color: var(--ciclo-ink);
  line-height: 1.55;
  max-width: none;
}

@media (max-width: 992px) {
  .ciclo-hero .hero-img { width: 100%; margin-left: 0; }
  .ciclo-hero .lead-panel { width: 100%; }
}

/* Thesis */
.ciclo-thesis { background: var(--ciclo-bg-soft); }

/* Services */
.ciclo-services .section-head { margin-bottom: 3rem; }
.grid-6 { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; }
.svc-card {
  background: #fff; border: 1px solid #eaeef6; border-radius: 14px;
  padding: 1.75rem; transition: all 160ms ease;
}
.svc-card:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(11,22,63,0.08); border-color: #dfe6f3; }
.svc-card h4 { font-size: 1.2rem; margin-bottom: 0.6rem; color: var(--ciclo-ink); }
.svc-card p  { color: #52525c; font-size: 0.98rem; margin: 0; }

/* Products */
.ciclo-products-section { background: var(--ciclo-bg-soft); }
.ciclo-products-section .section-head { margin-bottom: 3rem; }
.ciclo-product-card { text-align: center; }
.ciclo-product-card img { height: 44px; width: auto; margin: 0 auto 1.25rem; display: block; }
.ciclo-product-card h4 { font-size: 1.25rem; margin-bottom: 0.6rem; }
.ciclo-product-card p  { color: #52525c; margin-bottom: 1rem; }
.ciclo-product-card a  { color: var(--color_primary); font-weight: 600; text-decoration: none; }
.ciclo-product-card a:hover { text-decoration: underline; }

/* Why Ciclo */
.ciclo-why .stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 520px; margin: 0 auto; }
.ciclo-why .stats > div { background: #fff; border: 1px solid #eaeef6; border-radius: 14px; padding: 1.5rem 1rem; text-align: center; }
.ciclo-why .stats strong { display: block; font-family: "Space Grotesk", sans-serif; font-size: 2rem; color: var(--color_primary); }
.ciclo-why .stats span { display: block; font-size: 0.85rem; color: #52525c; margin-top: 0.25rem; }

/* CTA */
.ciclo-cta {
  background: linear-gradient(135deg, #272727 0%, #b94d26 100%);
  color: #fff;
}
.ciclo-cta h2,
#ciclo-home .ciclo-cta h2,
#ciclo-portfolio .ciclo-cta h2,
#ciclo-about .ciclo-cta h2,
#ciclo-services-page .ciclo-cta h2 { color: #ffffff; }

.ciclo-cta .sub,
#ciclo-home .ciclo-cta .sub,
#ciclo-portfolio .ciclo-cta .sub,
#ciclo-about .ciclo-cta .sub,
#ciclo-services-page .ciclo-cta .sub {
  color: #ffffff;
  opacity: 1;
  font-size: 1.15rem;
  font-weight: 500;
}
.ciclo-cta .btn-primary-ciclo { background: #fff; color: var(--color_primary); }
.ciclo-cta .btn-primary-ciclo:hover { background: var(--ciclo-accent); color: var(--ciclo-ink); }

/* =========================================================
   Ciclo portfolio (template-ciclo-portfolio.php)
   ========================================================= */
#ciclo-portfolio { color: var(--ciclo-ink); }
#ciclo-portfolio section { padding: 5rem 0; }
#ciclo-portfolio .eyebrow {
  text-transform: uppercase; letter-spacing: 0.14em; font-weight: 600;
  font-size: 0.78rem; color: var(--color_primary); margin-bottom: 1rem;
}
#ciclo-portfolio h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem); line-height: 1.1; font-weight: 700; margin-bottom: 1.25rem;
}
#ciclo-portfolio h1 .accent { color: var(--color_primary); }
#ciclo-portfolio p.lead {
  font-size: 1.15rem; color: #52525c; max-width: 680px; margin: 0 auto;
}

.ciclo-portfolio-hero { background: var(--ciclo-bg-soft); }

.ciclo-portfolio-grid .grid-3 {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.5rem;
}
.project-card {
  background: #fff; border: 1px solid var(--ciclo-border); border-radius: 14px;
  padding: 1.75rem; transition: all 160ms ease;
}
.project-card:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(39,39,39,0.08); border-color: var(--ciclo-accent-soft); }
.project-card .project-tag {
  text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600;
  font-size: 0.72rem; color: var(--ciclo-accent); margin: 0 0 0.75rem;
}
.project-card h3 { font-size: 1.2rem; margin: 0 0 0.6rem; color: var(--ciclo-ink); }
.project-card .project-desc { color: #52525c; font-size: 0.95rem; line-height: 1.55; margin: 0; }

/* =========================================================
   Ciclo About / Services / Contact shared
   ========================================================= */
#ciclo-about, #ciclo-services-page, #ciclo-contact { color: var(--ciclo-ink); }
#ciclo-about section, #ciclo-services-page section, #ciclo-contact section { padding: 5rem 0; }
#ciclo-about .eyebrow, #ciclo-services-page .eyebrow, #ciclo-contact .eyebrow {
  text-transform: uppercase; letter-spacing: 0.14em; font-weight: 600;
  font-size: 0.78rem; color: var(--color_primary); margin-bottom: 1rem;
}
#ciclo-about h1, #ciclo-services-page h1, #ciclo-contact h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem); line-height: 1.1; font-weight: 700; margin-bottom: 1.25rem;
}
#ciclo-about h1 .accent, #ciclo-services-page h1 .accent, #ciclo-contact h1 .accent { color: var(--color_primary); }
#ciclo-about h2, #ciclo-services-page h2, #ciclo-contact h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 700; margin: 0 0 1rem; }
#ciclo-about p.lead, #ciclo-services-page p.lead, #ciclo-contact p.lead { font-size: 1.15rem; color: #52525c; max-width: 700px; }

.ciclo-about-hero, .ciclo-services-hero, .ciclo-contact-hero { background: var(--ciclo-bg-soft); }

/* About mission/vision two-column */
.ciclo-about-mission .row { gap: 2.5rem 0; }
.ciclo-about-mission h2 { font-size: 1.6rem; }
.ciclo-about-mission p { color: #52525c; line-height: 1.6; }

/* Founder stats */
.ciclo-founder { background: var(--ciclo-bg-warm); }
.ciclo-founder .founder-stats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem;
}
.ciclo-founder .founder-stats > div {
  background: #fff; border: 1px solid var(--ciclo-border); border-radius: 14px;
  padding: 1.25rem; text-align: center;
}
.ciclo-founder .founder-stats strong { display: block; font-family: "Space Grotesk", sans-serif; font-size: 1.8rem; color: var(--color_primary); }
.ciclo-founder .founder-stats span { display: block; font-size: 0.9rem; color: var(--ciclo-ink); margin-top: 0.25rem; font-weight: 600; }
.ciclo-founder .founder-stats small { display: block; color: #7a7a7a; font-size: 0.78rem; margin-top: 0.3rem; }

/* Services page rows */
.ciclo-services-list .service-row {
  display: grid; grid-template-columns: minmax(260px, 1fr) 2.2fr; gap: 2.5rem;
  padding: 2.5rem 0; border-top: 1px solid var(--ciclo-border);
}
.ciclo-services-list .service-row:first-child { border-top: none; padding-top: 0; }
.ciclo-services-list .service-num {
  display: inline-block; font-family: "Space Grotesk", sans-serif; font-size: 1.05rem;
  color: var(--color_primary); font-weight: 700; margin-bottom: 0.5rem;
}
.ciclo-services-list .service-row h2 { font-size: 1.7rem; margin: 0; }
.ciclo-services-list .service-lead { font-size: 1.05rem; color: var(--ciclo-ink); margin: 0 0 1rem; }
.ciclo-services-list .service-bullets { list-style: none; padding: 0; margin: 0; }
.ciclo-services-list .service-bullets li {
  position: relative; padding-left: 1.5rem; margin-bottom: 0.6rem; color: #52525c; line-height: 1.55;
}
.ciclo-services-list .service-bullets li::before {
  content: "→"; position: absolute; left: 0; color: var(--ciclo-accent); font-weight: 700;
}

/* Contact form */
.ciclo-contact-body .row { gap: 3rem 0; }
.ciclo-contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.ciclo-contact-form label { display: block; font-weight: 600; color: var(--ciclo-ink); font-size: 0.9rem; margin-bottom: 1rem; }
.ciclo-contact-form input[type="text"],
.ciclo-contact-form input[type="email"],
.ciclo-contact-form textarea {
  width: 100%; margin-top: 0.4rem; padding: 0.75rem 0.9rem;
  border: 1px solid var(--ciclo-border); border-radius: 10px;
  font: inherit; background: #fff; color: var(--ciclo-ink);
  box-sizing: border-box;
}
.ciclo-contact-form input:focus,
.ciclo-contact-form textarea:focus {
  outline: none; border-color: var(--color_primary); box-shadow: 0 0 0 3px rgba(185,77,38,0.15);
}
.ciclo-contact-form .wpcf7-submit,
.ciclo-contact-form button { border: none; cursor: pointer; font-size: 1rem; width: fit-content; }
.ciclo-contact-form .wpcf7 form .wpcf7-response-output {
  border-radius: 10px; padding: 0.9rem 1rem; margin: 1rem 0 0;
  border-width: 1px;
}
.ciclo-contact-form .form-note { color: #7a7a7a; font-size: 0.85rem; margin: 0.5rem 0 0; }
.contact-aside h3 { font-size: 1rem; margin: 0 0 0.5rem; color: var(--ciclo-ink); }
.contact-aside p, .contact-aside ol { color: #52525c; margin: 0 0 1.5rem; line-height: 1.55; }
.contact-aside a { color: var(--color_primary); text-decoration: none; }
.contact-aside a:hover { text-decoration: underline; }

@media (max-width: 768px) {
  #ciclo-about section, #ciclo-services-page section, #ciclo-contact section { padding: 3rem 0; }
  .ciclo-founder .founder-stats { grid-template-columns: 1fr; }
  .ciclo-services-list .service-row { grid-template-columns: 1fr; gap: 1rem; }
  .ciclo-contact-form .form-row { grid-template-columns: 1fr; }
}

/* =========================================================
   Ciclo footer
   ========================================================= */
#ciclo-footer {
  background: #272727;
  color: #d7d7d7;
  padding: 4.5rem 0 2rem;
  font-size: 0.95rem;
}
#ciclo-footer .container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
#ciclo-footer a { color: var(--ciclo-accent-soft); text-decoration: none; }
#ciclo-footer a:hover { color: #fff; }

.ciclo-footer-top { max-width: 520px; margin-bottom: 3rem; }
.footer-logo { height: 36px; width: auto; margin-bottom: 1rem; }
.footer-tag { color: var(--ciclo-accent); font-weight: 600; margin: 0 0 0.5rem; font-size: 1.05rem; font-family: "Space Grotesk", sans-serif; }
.footer-pitch { color: #a7a7a7; line-height: 1.55; margin: 0; }

.ciclo-footer-cols {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
  padding-bottom: 2.5rem; border-bottom: 1px solid #3a3a3a;
}
.ciclo-footer-cols h5 {
  color: #fff; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.12em;
  font-weight: 600; margin: 0 0 1rem;
}
.ciclo-footer-cols ul { list-style: none; padding: 0; margin: 0; }
.ciclo-footer-cols li { margin-bottom: 0.5rem; color: #a7a7a7; }

.ciclo-footer-bottom {
  margin-top: 1.5rem;
  color: #7a7a7a;
  font-size: 0.85rem;
}
.ciclo-footer-bottom .sep { margin: 0 0.75rem; color: #555; }

@media (max-width: 768px) {
  .ciclo-footer-cols { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

/* Responsive */
@media (max-width: 768px) {
  #ciclo-home section, #ciclo-portfolio section { padding: 3rem 0; }
  .ciclo-why .stats { grid-template-columns: 1fr; max-width: 320px; }
}
