/* ============================================================
   CICINHO DE ASSIS — CSS GLOBAL LIMPO E CORRIGIDO
   Tema: Cicinho de Assis
   ============================================================ */

/* ============================================================
   Variáveis globais
   ============================================================ */

:root {
  --cic-bg-900: #211912;
  --cic-bg-800: #2e2218;
  --cic-bg-700: #3a2c20;
  --cic-bg-600: #4a3829;

  --cic-cream: #f4e9d8;
  --cic-ink: #f5ecdf;
  --cic-ink-soft: #d7c4a9;
  --cic-ink-muted: #a48d72;

  --cic-gold: #e0ad33;
  --cic-gold-bright: #f4c84e;
  --cic-terra: #c1502e;
  --cic-green: #2f9a52;

  --cic-line: rgba(224, 173, 51, 0.18);
}

/* ============================================================
   Base
   ============================================================ */

body.cicinho-body {
  background: var(--cic-bg-800);
  color: var(--cic-ink);
  font-family: "Archivo", "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.cicinho-body h1,
body.cicinho-body h2,
body.cicinho-body h3,
body.cicinho-body h4 {
  font-family: "Playfair Display", Georgia, serif;
}

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

body.cicinho-body a {
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease, filter 0.2s ease;
}

/* Evita elementos invisíveis por falha de animação do Elementor */
body.cicinho-body .elementor-invisible {
  visibility: visible !important;
  opacity: 1 !important;
}

/* Eyebrow / kicker reaproveitável */
.cic-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-weight: 600;
}

/* ============================================================
   Marquee
   ============================================================ */

.cic-marquee {
  overflow: hidden;
  -webkit-mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.cic-marquee__track {
  display: flex;
  gap: 18px;
  align-items: center;
  width: max-content;
  animation: cic-scrollx 38s linear infinite;
}

.cic-marquee:hover .cic-marquee__track {
  animation-play-state: paused;
}

.cic-marquee__item {
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-size: 26px;
  color: var(--cic-ink-soft);
  white-space: nowrap;
}

.cic-marquee__item::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cic-terra);
  flex: none;
}

@keyframes cic-scrollx {
  to {
    transform: translateX(-50%);
  }
}

/* ============================================================
   Contador regressivo
   ============================================================ */

.cic-countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.cic-cd__cell {
  background: var(--cic-bg-900);
  border: 1px solid var(--cic-line);
  border-radius: 12px;
  padding: 22px 10px;
  text-align: center;
}

.cic-cd__v {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 800;
  font-size: clamp(30px, 4vw, 46px);
  color: var(--cic-gold);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.cic-cd__l {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cic-ink-muted);
  margin-top: 8px;
}

/* ============================================================
   Divisor sanfona
   ============================================================ */

.cic-bellows {
  height: 18px;
  width: 100%;
  background: repeating-linear-gradient(
    90deg,
    var(--cic-bg-900) 0 6px,
    rgba(224, 173, 51, 0.20) 6px 8px,
    var(--cic-bg-700) 8px 16px,
    rgba(224, 173, 51, 0.20) 16px 18px
  );
  transform-origin: left center;
  animation: cic-breathe 4.5s ease-in-out infinite;
  opacity: 0.6;
}

@keyframes cic-breathe {
  0%,
  100% {
    transform: scaleX(1);
  }

  50% {
    transform: scaleX(1.04);
  }
}

/* ============================================================
   Cards / efeitos
   ============================================================ */

.cic-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.cic-card:hover {
  transform: translateY(-6px);
}

.cic-zoom img {
  transition: transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.cic-zoom:hover img {
  transform: scale(1.07);
}

.cic-recorte img {
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

.cic-shine .elementor-button {
  position: relative;
  overflow: hidden;
}

.cic-shine .elementor-button::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-18deg);
  transition: left 0.6s ease;
}

.cic-shine .elementor-button:hover::after {
  left: 140%;
}

/* Linha do tempo */
.cic-tl-line {
  position: relative;
}

.cic-tl-line::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(var(--cic-line), var(--cic-gold), var(--cic-line));
  transform: translateX(-50%);
}

/* Tag pulsante */
.cic-pulse {
  animation: cic-pulse 2s ease-in-out infinite;
}

@keyframes cic-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(193, 80, 46, 0.5);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(193, 80, 46, 0);
  }
}

/* Reduz animação para quem prefere menos movimento */
@media (prefers-reduced-motion: reduce) {
  .cic-marquee__track,
  .cic-bellows,
  .cic-pulse {
    animation: none !important;
  }

  .cic-card,
  .cic-zoom img,
  .cic-shine .elementor-button::after {
    transition: none !important;
  }
}

/* ============================================================
   HEADER GLOBAL
   ============================================================ */

.cicinho-site-header {
  width: 100%;
  background: var(--cic-bg-800);
  border-bottom: 1px solid rgba(224, 173, 51, 0.08);
  position: relative;
  z-index: 999;
}

.cicinho-header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 30px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cicinho-brand {
  text-decoration: none;
  flex: 0 0 auto;
}

.cicinho-brand-title {
  display: block;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
  color: var(--cic-gold);
}

.cicinho-main-navigation {
  flex: 1;
  display: flex;
  justify-content: center;
}

.cicinho-main-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 42px;
}

.cicinho-main-menu li {
  margin: 0;
  padding: 0;
}

.cicinho-main-menu a {
  color: var(--cic-ink);
  text-decoration: none;
  font-family: "Archivo", Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.1;
}

.cicinho-main-menu a:hover,
.cicinho-main-menu .current-menu-item > a,
.cicinho-main-menu .current_page_item > a {
  color: var(--cic-gold);
}

.cicinho-header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  min-height: 20px;
  padding: 12px 23px;
  border-radius: 12px;
  background: var(--cic-gold);
  color: #1c120b;
  font-family: "Archivo", Arial, sans-serif;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}

.cicinho-header-cta:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
  color: #1c120b;
}

/* Header tablet */
@media (max-width: 1024px) {
  .cicinho-header-inner {
    padding: 24px 20px;
    gap: 22px;
  }

  .cicinho-main-menu {
    gap: 24px;
  }

  .cicinho-brand-title {
    font-size: 23px;
  }

  .cicinho-header-cta {
    min-width: 112px;
    min-height: 50px;
    padding: 13px 22px;
  }
}

/* ============================================================
   HEADER MOBILE GLOBAL — HAMBÚRGUER GERENCIÁVEL
   ============================================================ */

.cicinho-mobile-bar,
.cicinho-mobile-drawer,
.cicinho-mobile-overlay {
  display: none;
}

@media (min-width: 768px) {
  .cicinho-mobile-bar,
  .cicinho-mobile-drawer,
  .cicinho-mobile-overlay {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .cicinho-site-header {
    background: #211912;
    position: relative;
    z-index: 999;
  }

  .cicinho-header-inner {
    max-width: 100%;
    padding: 0 !important;
    display: block !important;
  }

  .cicinho-desktop-brand,
  .cicinho-main-navigation,
  .cicinho-desktop-cta {
    display: none !important;
  }

  .cicinho-mobile-bar {
    display: grid;
    grid-template-columns: 1fr 42px 112px;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: #211912;
    border-bottom: 1px solid rgba(224, 173, 51, 0.10);
  }

  .cicinho-mobile-brand {
    color: var(--cic-gold);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
  }

  .cicinho-mobile-toggle {
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    display: inline-flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 7px;
    cursor: pointer;
    padding: 0;
  }

  .cicinho-mobile-toggle span {
    width: 20px;
    height: 2px;
    display: block;
    background: var(--cic-gold);
    border-radius: 999px;
  }

  .cicinho-mobile-cta {
    min-height: 42px;
    border-radius: 6px;
    background: var(--cic-gold);
    color: #1c120b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    font-family: "Archivo", Arial, sans-serif;
    font-size: 12px;
    font-weight: 800;
    text-decoration: none;
  }

  .cicinho-mobile-cta:hover {
    color: #1c120b;
  }

  .cicinho-mobile-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.58);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease;
    z-index: 998;
  }

  .cicinho-mobile-drawer {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: min(82vw, 320px);
    height: 100vh;
    background: #211912;
    border-right: 1px solid rgba(224, 173, 51, 0.18);
    transform: translateX(-102%);
    transition: transform 0.28s ease;
    z-index: 999;
    padding: 58px 24px 28px;
    box-shadow: 18px 0 40px rgba(0, 0, 0, 0.42);
  }

  body.admin-bar .cicinho-mobile-drawer {
    top: 46px;
    height: calc(100vh - 46px);
  }

  .cicinho-mobile-close {
    position: absolute;
    top: 16px;
    right: 18px;
    width: 32px;
    height: 32px;
    border: 0;
    background: transparent;
    color: var(--cic-gold);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
  }

  .cicinho-mobile-menu {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .cicinho-mobile-menu li {
    margin: 0 0 20px;
    padding: 0;
  }

  .cicinho-mobile-menu a {
    color: #f5ecdf;
    font-family: "Archivo", Arial, sans-serif;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none;
  }

  .cicinho-mobile-menu .current-menu-item > a,
  .cicinho-mobile-menu .current_page_item > a,
  .cicinho-mobile-menu a:hover {
    color: var(--cic-gold);
  }

  body.cicinho-mobile-menu-open {
    overflow: hidden;
  }

  body.cicinho-mobile-menu-open .cicinho-mobile-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  body.cicinho-mobile-menu-open .cicinho-mobile-drawer {
    transform: translateX(0);
  }
}

/* ============================================================
   FOOTER GLOBAL
   ============================================================ */

.cicinho-site-footer {
  background: #211912;
  color: var(--cic-ink);
  border-top: 1px solid rgba(224, 173, 51, 0.08);
}

.cicinho-footer-inner {
  max-width: 1026px;
  margin: 0 auto;
  padding: 58px 24px 38px;
  display: grid;
  grid-template-columns: 1.35fr 0.85fr 1fr;
  gap: 72px;
  align-items: start;
}

.cicinho-footer-column h3 {
  margin: 0 0 42px;
  color: var(--cic-gold);
  font-family: "Archivo", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.cicinho-footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.cicinho-footer-logo {
  margin: 0 0 18px;
  color: var(--cic-gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

.cicinho-footer-logo:hover {
  color: var(--cic-gold-bright);
}

.cicinho-footer-description {
  max-width: 390px;
  margin: 0;
  color: #d7c4a9;
  font-family: "Archivo", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.65;
}

/* Menu footer */

.cicinho-footer-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.cicinho-footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cicinho-footer-menu li {
  margin: 0 0 22px;
  padding: 0;
}

.cicinho-footer-menu li:last-child {
  margin-bottom: 0;
}

.cicinho-footer-menu a {
  color: var(--cic-ink);
  font-family: "Archivo", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.1;
  text-decoration: none;
  display: inline-block;
}

.cicinho-footer-menu a:hover,
.cicinho-footer-menu .current-menu-item > a,
.cicinho-footer-menu .current_page_item > a {
  color: var(--cic-gold);
  transform: translateX(3px);
}

/* Ícones footer */

.cicinho-footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.cicinho-footer-contact h3 {
  margin-bottom: 42px;
}

.cicinho-footer-icons-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 14px;
}

.cicinho-footer-icons-menu li {
  margin: 0;
  padding: 0;
}

.cicinho-footer-icons-menu a {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(224, 173, 51, 0.10);
  border: 1px solid rgba(224, 173, 51, 0.24);
  color: var(--cic-gold);
  text-decoration: none;
  font-size: 0;
  line-height: 0;
}

.cicinho-footer-icons-menu a:hover {
  transform: translateY(-2px);
  background: var(--cic-gold);
  border-color: var(--cic-gold);
  color: #1c120b;
}

.cicinho-footer-icons-menu a::before {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  background: currentColor;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

/* WhatsApp */
.cicinho-social-whatsapp > a::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.52 3.48A11.78 11.78 0 0 0 12.15 0C5.6 0 .28 5.32.28 11.87c0 2.1.55 4.15 1.6 5.96L.18 24l6.32-1.66a11.86 11.86 0 0 0 5.65 1.44h.01c6.55 0 11.87-5.32 11.87-11.87 0-3.17-1.23-6.15-3.5-8.43ZM12.16 21.78h-.01a9.83 9.83 0 0 1-5.01-1.37l-.36-.21-3.75.98 1-3.65-.24-.38a9.8 9.8 0 0 1-1.5-5.28C2.28 6.43 6.7 2 12.16 2c2.64 0 5.13 1.03 7 2.9a9.84 9.84 0 0 1 2.9 7c0 5.45-4.43 9.88-9.9 9.88Zm5.42-7.4c-.3-.15-1.76-.87-2.03-.97-.27-.1-.47-.15-.67.15-.2.3-.77.97-.94 1.17-.17.2-.35.22-.64.07-.3-.15-1.25-.46-2.38-1.47a8.9 8.9 0 0 1-1.65-2.05c-.17-.3-.02-.46.13-.61.13-.13.3-.35.45-.52.15-.17.2-.3.3-.5.1-.2.05-.37-.02-.52-.07-.15-.67-1.62-.92-2.22-.24-.58-.5-.5-.67-.51h-.57c-.2 0-.52.07-.8.37-.27.3-1.05 1.02-1.05 2.5s1.07 2.9 1.22 3.1c.15.2 2.1 3.22 5.1 4.51.71.3 1.27.49 1.7.63.71.23 1.36.2 1.87.12.57-.08 1.76-.72 2-1.42.25-.7.25-1.3.17-1.42-.07-.13-.27-.2-.57-.35Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20.52 3.48A11.78 11.78 0 0 0 12.15 0C5.6 0 .28 5.32.28 11.87c0 2.1.55 4.15 1.6 5.96L.18 24l6.32-1.66a11.86 11.86 0 0 0 5.65 1.44h.01c6.55 0 11.87-5.32 11.87-11.87 0-3.17-1.23-6.15-3.5-8.43ZM12.16 21.78h-.01a9.83 9.83 0 0 1-5.01-1.37l-.36-.21-3.75.98 1-3.65-.24-.38a9.8 9.8 0 0 1-1.5-5.28C2.28 6.43 6.7 2 12.16 2c2.64 0 5.13 1.03 7 2.9a9.84 9.84 0 0 1 2.9 7c0 5.45-4.43 9.88-9.9 9.88Zm5.42-7.4c-.3-.15-1.76-.87-2.03-.97-.27-.1-.47-.15-.67.15-.2.3-.77.97-.94 1.17-.17.2-.35.22-.64.07-.3-.15-1.25-.46-2.38-1.47a8.9 8.9 0 0 1-1.65-2.05c-.17-.3-.02-.46.13-.61.13-.13.3-.35.45-.52.15-.17.2-.3.3-.5.1-.2.05-.37-.02-.52-.07-.15-.67-1.62-.92-2.22-.24-.58-.5-.5-.67-.51h-.57c-.2 0-.52.07-.8.37-.27.3-1.05 1.02-1.05 2.5s1.07 2.9 1.22 3.1c.15.2 2.1 3.22 5.1 4.51.71.3 1.27.49 1.7.63.71.23 1.36.2 1.87.12.57-.08 1.76-.72 2-1.42.25-.7.25-1.3.17-1.42-.07-.13-.27-.2-.57-.35Z'/%3E%3C/svg%3E");
}

/* Instagram */
.cicinho-social-instagram > a::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.75 2h8.5A5.76 5.76 0 0 1 22 7.75v8.5A5.76 5.76 0 0 1 16.25 22h-8.5A5.76 5.76 0 0 1 2 16.25v-8.5A5.76 5.76 0 0 1 7.75 2Zm0 2A3.75 3.75 0 0 0 4 7.75v8.5A3.75 3.75 0 0 0 7.75 20h8.5A3.75 3.75 0 0 0 20 16.25v-8.5A3.75 3.75 0 0 0 16.25 4h-8.5Zm8.75 2.25a1.25 1.25 0 1 1 0 2.5 1.25 1.25 0 0 1 0-2.5ZM12 7a5 5 0 1 1 0 10 5 5 0 0 1 0-10Zm0 2a3 3 0 1 0 0 6 3 3 0 0 0 0-6Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.75 2h8.5A5.76 5.76 0 0 1 22 7.75v8.5A5.76 5.76 0 0 1 16.25 22h-8.5A5.76 5.76 0 0 1 2 16.25v-8.5A5.76 5.76 0 0 1 7.75 2Zm0 2A3.75 3.75 0 0 0 4 7.75v8.5A3.75 3.75 0 0 0 7.75 20h8.5A3.75 3.75 0 0 0 20 16.25v-8.5A3.75 3.75 0 0 0 16.25 4h-8.5Zm8.75 2.25a1.25 1.25 0 1 1 0 2.5 1.25 1.25 0 0 1 0-2.5ZM12 7a5 5 0 1 1 0 10 5 5 0 0 1 0-10Zm0 2a3 3 0 1 0 0 6 3 3 0 0 0 0-6Z'/%3E%3C/svg%3E");
}

/* E-mail */
.cicinho-social-email > a::before {
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 4h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2Zm0 2v.35l8 5.15 8-5.15V6H4Zm16 12V8.73l-7.46 4.8a1 1 0 0 1-1.08 0L4 8.73V18h16Z'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 4h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2Zm0 2v.35l8 5.15 8-5.15V6H4Zm16 12V8.73l-7.46 4.8a1 1 0 0 1-1.08 0L4 8.73V18h16Z'/%3E%3C/svg%3E");
}

.cicinho-footer-bottom {
  max-width: 1026px;
  margin: 0 auto;
  padding: 28px 24px 36px;
  border-top: 1px solid rgba(244, 233, 216, 0.12);
  text-align: center;
}

.cicinho-footer-bottom p {
  margin: 0;
  color: #b99f7d;
  font-family: "Archivo", Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.3;
}

/* Footer tablet */
@media (max-width: 1024px) {
  .cicinho-footer-inner {
    max-width: 820px;
    grid-template-columns: 1fr 1fr;
    gap: 48px 64px;
    padding: 52px 24px 34px;
  }

  .cicinho-footer-brand {
    grid-column: 1 / -1;
  }

  .cicinho-footer-description {
    max-width: 620px;
  }

  .cicinho-footer-bottom {
    max-width: 820px;
  }
}

/* Footer mobile */
@media (max-width: 767px) {
  .cicinho-footer-inner {
    grid-template-columns: 1fr;
    gap: 38px;
    padding: 44px 22px 32px;
    text-align: center;
  }

  .cicinho-footer-brand,
  .cicinho-footer-nav,
  .cicinho-footer-contact {
    align-items: center;
  }

  .cicinho-footer-logo {
    font-size: 25px;
    margin-bottom: 14px;
  }

  .cicinho-footer-description {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.55;
  }

  .cicinho-footer-column h3,
  .cicinho-footer-contact h3 {
    margin-bottom: 24px;
    font-size: 10px;
    letter-spacing: 0.28em;
  }

  .cicinho-footer-menu li {
    margin-bottom: 14px;
  }

  .cicinho-footer-icons-menu {
    justify-content: center;
  }

  .cicinho-footer-icons-menu a {
    width: 42px;
    height: 42px;
  }

  .cicinho-footer-bottom {
    padding: 22px 22px 30px;
  }

  .cicinho-footer-bottom p {
    font-size: 11px;
    line-height: 1.5;
  }
}

/* ============================================================
   AGENDA — DINÂMICA
   Página Agenda: page-id-13
   ============================================================ */

body.page-id-13 .elementor-invisible {
  visibility: visible !important;
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}

/* Próximo show da agenda */

.cic-next-show-box {
  background: #3a2c20;
  border: 1px solid var(--cic-gold);
  border-left: 6px solid var(--cic-gold);
  border-radius: 14px;
  padding: 34px 38px;
  color: var(--cic-ink);
}

.cic-next-label {
  margin: 0 0 14px;
  color: var(--cic-terra);
  font-family: "Archivo", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.cic-next-show-box h3 {
  margin: 0 0 18px;
  color: var(--cic-ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.1;
}

.cic-next-date {
  margin: 0 0 22px;
  color: var(--cic-gold);
  font-family: "Archivo", Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
}

.cic-next-description {
  max-width: 760px;
  margin: 0 0 30px;
  color: var(--cic-ink-soft);
  font-family: "Archivo", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.6;
}

.cic-next-countdown {
  max-width: 390px;
  margin: 0 auto;
  gap: 10px;
}

.cic-next-countdown .cic-cd__cell {
  padding: 14px 8px;
  border-radius: 10px;
}

.cic-next-countdown .cic-cd__v {
  font-size: clamp(24px, 3vw, 34px);
}

.cic-next-countdown .cic-cd__l {
  font-size: 9px;
  margin-top: 6px;
}

.cic-next-button {
  display: inline-flex;
  margin-top: 26px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 8px;
  background: var(--cic-gold);
  color: #1c120b;
  font-family: "Archivo", Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.cic-next-button:hover {
  color: #1c120b;
  filter: brightness(1.05);
}

/* Lista de shows */

.cic-show-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cic-show-row {
  display: grid;
  grid-template-columns: 180px 1fr 230px;
  align-items: center;
  gap: 34px;
  background: #3a2c20;
  border: 1px solid var(--cic-gold);
  border-radius: 12px;
  padding: 18px 22px;
  transition: transform 0.25s ease, background 0.25s ease;
}

.cic-show-row:hover {
  transform: translateX(6px);
}

.cic-show-date-box {
  min-height: 118px;
  border-radius: 9px;
  background: #211912;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cic-show-date-box strong {
  display: block;
  color: var(--cic-gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
}

.cic-show-date-box span {
  display: block;
  margin-top: 18px;
  color: var(--cic-ink-muted);
  font-family: "Archivo", Arial, sans-serif;
  font-size: 11px;
}

.cic-show-info h4 {
  margin: 0 0 16px;
  color: var(--cic-ink);
  font-family: "Archivo", Arial, sans-serif;
  font-size: 18px;
  font-weight: 800;
}

.cic-show-info p {
  margin: 0;
  color: var(--cic-ink-muted);
  font-family: "Archivo", Arial, sans-serif;
  font-size: 13px;
  line-height: 1.5;
}

.cic-show-action {
  display: flex;
  justify-content: flex-end;
}

.cic-show-action a,
.cic-show-action span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 7px 18px;
  border-radius: 999px;
  font-family: "Archivo", Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.cic-show-status-gratuito .cic-show-action a,
.cic-show-status-gratuito .cic-show-action span,
.cic-show-status-prevenda .cic-show-action a,
.cic-show-status-prevenda .cic-show-action span {
  background: rgba(47, 154, 82, 0.30);
  color: #74e093;
}

.cic-show-status-ingressos .cic-show-action a,
.cic-show-status-ingressos .cic-show-action span {
  background: var(--cic-gold);
  color: #1c120b;
}

.cic-show-status-encerrado .cic-show-action span {
  background: rgba(193, 80, 46, 0.30);
  color: #ffb3a7;
}

.cic-agenda-empty {
  color: var(--cic-ink-soft);
}

/* Agenda mobile */
@media (max-width: 767px) {
  .cic-next-show-box {
    padding: 26px 20px;
    text-align: center;
  }

  .cic-next-countdown {
    max-width: 100%;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }

  .cic-next-countdown .cic-cd__cell {
    padding: 12px 6px;
  }

  .cic-show-row {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    padding: 18px !important;
  }

  .cic-show-date-box {
    width: 100%;
    min-height: 86px;
  }

  .cic-show-info {
    text-align: center;
  }

  .cic-show-info h4 {
    font-size: 17px;
    line-height: 1.3;
  }

  .cic-show-action {
    justify-content: stretch;
  }

  .cic-show-action a,
  .cic-show-action span {
    width: 100%;
  }
}

/* ============================================================
   HOME — PRÓXIMO SHOW DINÂMICO
   ============================================================ */

.cic-home-next-show {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  align-items: center;
  gap: 56px;
  width: 100%;
  color: var(--cic-ink);
}

.cic-home-next-label {
  margin: 0 0 30px;
  color: var(--cic-terra);
  font-family: "Archivo", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.cic-home-next-show h2 {
  margin: 0 0 26px;
  color: var(--cic-ink);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.08;
}

.cic-home-next-date {
  margin: 0 0 28px;
  color: var(--cic-gold);
  font-family: "Archivo", Arial, sans-serif;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
}

.cic-home-next-description {
  max-width: 560px;
  margin: 0 0 34px;
  color: var(--cic-ink-soft);
  font-family: "Archivo", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.75;
}

.cic-home-next-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.cic-home-next-btn {
  min-width: 214px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border-radius: 6px;
  font-family: "Archivo", Arial, sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.cic-home-next-btn:hover {
  transform: translateY(-2px);
}

.cic-home-next-btn-primary {
  background: var(--cic-gold);
  color: #1c120b;
}

.cic-home-next-btn-primary:hover {
  color: #1c120b;
  filter: brightness(1.05);
}

.cic-home-next-btn-secondary {
  background: transparent;
  color: var(--cic-ink);
  border: 1px solid rgba(224, 173, 51, 0.45);
}

.cic-home-next-btn-secondary:hover {
  background: rgba(224, 173, 51, 0.08);
  color: var(--cic-gold);
}

.cic-home-next-countdown-wrap {
  display: flex;
  justify-content: flex-end;
}

.cic-home-next-countdown {
  max-width: 380px;
  width: 100%;
  gap: 14px;
}

.cic-home-next-countdown .cic-cd__cell {
  padding: 18px 10px;
  border-radius: 10px;
}

.cic-home-next-countdown .cic-cd__v {
  font-size: clamp(26px, 3vw, 40px);
}

.cic-home-next-countdown .cic-cd__l {
  font-size: 9px;
  margin-top: 8px;
}

/* Home próximo show mobile */
@media (max-width: 767px) {
  .cic-home-next-show {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .cic-home-next-label {
    margin-bottom: 18px;
  }

  .cic-home-next-show h2 {
    font-size: 34px;
  }

  .cic-home-next-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cic-home-next-btn {
    width: 100%;
  }

  .cic-home-next-countdown-wrap {
    justify-content: center;
  }

  .cic-home-next-countdown {
    max-width: 100%;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
  }

  .cic-home-next-countdown .cic-cd__cell {
    padding: 12px 6px;
  }
}

/* ============================================================
   CONTATO — LAYOUT FINAL DO FORMULÁRIO
   Página: page-id-15
   ============================================================ */

/* Área onde existe o WPForms */
body.page-id-15 .elementor-section:has(.wpforms-container) {
  padding: 70px 24px 90px !important;
}

body.page-id-15 .elementor-section:has(.wpforms-container) > .elementor-container {
  max-width: 1180px !important;
  display: grid !important;
  grid-template-columns: minmax(280px, 0.85fr) minmax(560px, 1.25fr) !important;
  gap: 72px !important;
  align-items: flex-start !important;
}

body.page-id-15 .elementor-section:has(.wpforms-container) .elementor-column {
  width: auto !important;
  max-width: 100% !important;
}

body.page-id-15 .elementor-section:has(.wpforms-container) .elementor-widget-wrap {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Remove título duplicado externo acima do formulário */
body.page-id-15 .elementor-column:has(.wpforms-container) .elementor-widget-heading {
  display: none !important;
}

/* Card do WPForms */
body.page-id-15 .wpforms-container {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 56px 64px !important;
  background: #3a2a20 !important;
  border: 1px solid rgba(224, 173, 51, 0.22) !important;
  border-top: 6px solid #e0ad33 !important;
  border-radius: 22px !important;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34) !important;
  position: relative !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
}

body.page-id-15 .wpforms-container::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, #e0ad33 0%, #f0bd35 52%, #c1502e 100%);
}

/* Título e descrição do WPForms */
body.page-id-15 .wpforms-title {
  margin: 0 0 16px !important;
  color: #f7eadb !important;
  font-family: "Playfair Display", Georgia, serif !important;
  font-size: clamp(34px, 4vw, 48px) !important;
  font-weight: 800 !important;
  line-height: 1.08 !important;
}

body.page-id-15 .wpforms-description {
  max-width: 620px !important;
  margin: 0 0 42px !important;
  color: #c9b8a8 !important;
  font-family: "Archivo", Arial, sans-serif !important;
  font-size: 18px !important;
  line-height: 1.5 !important;
}

/* Grid dos campos */
body.page-id-15 .wpforms-field-container {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  column-gap: 28px !important;
  row-gap: 26px !important;
}

body.page-id-15 .wpforms-container .wpforms-field {
  padding: 0 !important;
  margin: 0 !important;
}

/*
   Estrutura esperada:
   1 Nome Completo
   2 WhatsApp
   3 E-mail
   4 Tipo de Evento
   5 Data do Evento
   6 Cidade
   7 Mensagem Adicional
*/

body.page-id-15 .wpforms-field-container .wpforms-field:nth-child(3),
body.page-id-15 .wpforms-field-container .wpforms-field:nth-child(4),
body.page-id-15 .wpforms-field-container .wpforms-field:nth-child(7) {
  grid-column: 1 / -1 !important;
}

/* Labels */
body.page-id-15 .wpforms-field-label {
  margin: 0 0 12px !important;
  color: #dfd0bf !important;
  font-family: "Archivo", Arial, sans-serif !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  letter-spacing: 0.10em !important;
  text-transform: uppercase !important;
  line-height: 1.2 !important;
}

body.page-id-15 .wpforms-required-label {
  color: #e0ad33 !important;
}

/* Campos */
body.page-id-15 .wpforms-container input[type="text"],
body.page-id-15 .wpforms-container input[type="email"],
body.page-id-15 .wpforms-container input[type="tel"],
body.page-id-15 .wpforms-container input[type="date"],
body.page-id-15 .wpforms-container input[type="number"],
body.page-id-15 .wpforms-container select,
body.page-id-15 .wpforms-container textarea {
  width: 100% !important;
  max-width: 100% !important;
  min-height: 64px !important;
  padding: 0 24px !important;
  background: #1d1612 !important;
  border: 1px solid #3d3028 !important;
  border-radius: 12px !important;
  color: #f7eadb !important;
  font-family: "Archivo", Arial, sans-serif !important;
  font-size: 17px !important;
  line-height: 1.4 !important;
  box-shadow: none !important;
  outline: none !important;
  box-sizing: border-box !important;
}

body.page-id-15 .wpforms-container textarea {
  min-height: 150px !important;
  padding-top: 20px !important;
  resize: vertical !important;
}

body.page-id-15 .wpforms-container ::placeholder {
  color: #b79d86 !important;
  opacity: 1 !important;
}

body.page-id-15 .wpforms-container input:focus,
body.page-id-15 .wpforms-container select:focus,
body.page-id-15 .wpforms-container textarea:focus {
  border-color: #e0ad33 !important;
  box-shadow: 0 0 0 3px rgba(224, 173, 51, 0.14) !important;
}

/* Botão */
body.page-id-15 .wpforms-submit-container {
  margin-top: 38px !important;
  padding: 0 !important;
}

body.page-id-15 .wpforms-container button[type="submit"],
body.page-id-15 .wpforms-container .wpforms-submit {
  width: 100% !important;
  min-height: 68px !important;
  padding: 18px 28px !important;
  background: #2fa45a !important;
  border: none !important;
  border-radius: 12px !important;
  color: #ffffff !important;
  font-family: "Archivo", Arial, sans-serif !important;
  font-size: 19px !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  cursor: pointer !important;
  box-shadow: none !important;
}

body.page-id-15 .wpforms-container button[type="submit"]:hover,
body.page-id-15 .wpforms-container .wpforms-submit:hover {
  background: #27934f !important;
  color: #ffffff !important;
  transform: translateY(-2px);
}

/* Coluna esquerda do contato */
body.page-id-15 .elementor-section:has(.wpforms-container) .elementor-column:not(:has(.wpforms-container)) {
  min-width: 0 !important;
}

body.page-id-15 .elementor-section:has(.wpforms-container) .elementor-column:not(:has(.wpforms-container)) .elementor-heading-title {
  word-break: normal !important;
  overflow-wrap: normal !important;
}

body.page-id-15 .elementor-section:has(.wpforms-container) .elementor-column:not(:has(.wpforms-container)) p {
  max-width: 420px !important;
}

/* Redes sociais na coluna esquerda */
body.page-id-15 .elementor-section:has(.wpforms-container) .elementor-column:not(:has(.wpforms-container)) .elementor-widget-button {
  display: inline-block !important;
  width: auto !important;
  margin-right: 10px !important;
  margin-bottom: 10px !important;
}

body.page-id-15 .elementor-section:has(.wpforms-container) .elementor-column:not(:has(.wpforms-container)) .elementor-button {
  width: auto !important;
  min-width: 150px !important;
  white-space: nowrap !important;
}

/* Contato mobile */
@media (max-width: 767px) {
  body.page-id-15 .elementor-section:has(.wpforms-container) {
    padding: 44px 18px 64px !important;
  }

  body.page-id-15 .elementor-section:has(.wpforms-container) > .elementor-container {
    display: flex !important;
    flex-direction: column !important;
    gap: 42px !important;
    max-width: 100% !important;
  }

  body.page-id-15 .elementor-section:has(.wpforms-container) .elementor-column {
    width: 100% !important;
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }

  body.page-id-15 .elementor-column:has(.wpforms-container) {
    order: 2 !important;
  }

  body.page-id-15 .elementor-section:has(.wpforms-container) .elementor-column:not(:has(.wpforms-container)) {
    order: 1 !important;
  }

  body.page-id-15 .wpforms-container {
    padding: 34px 22px !important;
    border-radius: 18px !important;
  }

  body.page-id-15 .wpforms-title {
    font-size: 34px !important;
    line-height: 1.05 !important;
  }

  body.page-id-15 .wpforms-description {
    margin-bottom: 30px !important;
    font-size: 15px !important;
  }

  body.page-id-15 .wpforms-field-container {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  body.page-id-15 .wpforms-field-container .wpforms-field {
    grid-column: 1 / -1 !important;
  }

  body.page-id-15 .wpforms-field-label {
    font-size: 12px !important;
    letter-spacing: 0.08em !important;
  }

  body.page-id-15 .wpforms-container input[type="text"],
  body.page-id-15 .wpforms-container input[type="email"],
  body.page-id-15 .wpforms-container input[type="tel"],
  body.page-id-15 .wpforms-container input[type="date"],
  body.page-id-15 .wpforms-container input[type="number"],
  body.page-id-15 .wpforms-container select,
  body.page-id-15 .wpforms-container textarea {
    min-height: 54px !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    font-size: 15px !important;
  }

  body.page-id-15 .wpforms-container textarea {
    min-height: 120px !important;
    padding-top: 16px !important;
  }

  body.page-id-15 .wpforms-container button[type="submit"],
  body.page-id-15 .wpforms-container .wpforms-submit {
    min-height: 56px !important;
    font-size: 15px !important;
  }

  body.page-id-15 .elementor-section:has(.wpforms-container) .elementor-column:not(:has(.wpforms-container)) .elementor-widget-button {
    display: block !important;
    width: 100% !important;
    margin-right: 0 !important;
    margin-bottom: 12px !important;
  }

  body.page-id-15 .elementor-section:has(.wpforms-container) .elementor-column:not(:has(.wpforms-container)) .elementor-button {
    width: 100% !important;
    min-width: 0 !important;
    white-space: normal !important;
  }
}

/* ============================================================
   RESPONSIVIDADE GERAL
   ============================================================ */

@media (max-width: 767px) {
  body.cicinho-body .elementor-section .elementor-container,
  body.cicinho-body .e-con-inner {
    max-width: 100% !important;
  }

  body.cicinho-body .elementor-widget-heading h1,
  body.cicinho-body .elementor-widget-heading h2 {
    word-break: normal;
    overflow-wrap: break-word;
  }

  body.cicinho-body .elementor-button {
    white-space: normal;
    text-align: center;
  }
}

/* ============================================================
   CONTATO — Ajuste fino final do formulário
   Página: page-id-15
   ============================================================ */

/* Dá mais espaço para o formulário no desktop */
body.page-id-15 .elementor-section:has(.wpforms-container) > .elementor-container {
  max-width: 1240px !important;
  grid-template-columns: minmax(300px, 0.75fr) minmax(640px, 1.35fr) !important;
  gap: 64px !important;
}

/* Card um pouco mais largo e equilibrado */
body.page-id-15 .wpforms-container {
  padding: 58px 64px !important;
}

/* Força o grid principal dos campos */
body.page-id-15 .wpforms-field-container {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  column-gap: 28px !important;
  row-gap: 26px !important;
}

/* E-mail sempre largura total */
body.page-id-15 .wpforms-field-email {
  grid-column: 1 / -1 !important;
}

/* Tipo de evento sempre largura total */
body.page-id-15 .wpforms-field-select,
body.page-id-15 .wpforms-field-container .wpforms-field:nth-of-type(4) {
  grid-column: 1 / -1 !important;
}

/* Data e cidade lado a lado */
body.page-id-15 .wpforms-field-date-time,
body.page-id-15 .wpforms-field-container .wpforms-field:nth-of-type(5) {
  grid-column: 1 / 2 !important;
}

body.page-id-15 .wpforms-field-date-time + .wpforms-field,
body.page-id-15 .wpforms-field-container .wpforms-field:nth-of-type(6) {
  grid-column: 2 / 3 !important;
}

/* Mensagem adicional sempre largura total */
body.page-id-15 .wpforms-field-textarea,
body.page-id-15 .wpforms-field-container .wpforms-field:nth-of-type(7) {
  grid-column: 1 / -1 !important;
}

/* Textarea mais confortável */
body.page-id-15 .wpforms-container textarea {
  width: 100% !important;
  min-height: 150px !important;
}

/* Botão mais parecido com a referência */
body.page-id-15 .wpforms-container button[type="submit"],
body.page-id-15 .wpforms-container .wpforms-submit {
  min-height: 66px !important;
  border-radius: 12px !important;
  font-size: 18px !important;
  background: #2fa45a !important;
}

/* Ajuste da coluna esquerda para não ficar muito distante */
body.page-id-15 .elementor-section:has(.wpforms-container) .elementor-column:not(:has(.wpforms-container)) {
  padding-top: 20px !important;
}

/* Mobile: tudo em uma coluna, sem quebrar */
@media (max-width: 767px) {
  body.page-id-15 .elementor-section:has(.wpforms-container) > .elementor-container {
    display: flex !important;
    flex-direction: column !important;
    gap: 38px !important;
  }

  body.page-id-15 .wpforms-container {
    padding: 34px 22px !important;
  }

  body.page-id-15 .wpforms-field-container {
    grid-template-columns: 1fr !important;
    gap: 20px !important;c
  }

  body.page-id-15 .wpforms-field-container .wpforms-field,
  body.page-id-15 .wpforms-field-email,
  body.page-id-15 .wpforms-field-select,
  body.page-id-15 .wpforms-field-date-time,
  body.page-id-15 .wpforms-field-textarea {
    grid-column: 1 / -1 !important;
  }

  body.page-id-15 .wpforms-title {
    font-size: 32px !important;
  }

  body.page-id-15 .wpforms-description {
    font-size: 15px !important;
  }
}

/* ============================================================
   CORREÇÃO FINAL — CONTATO / WPForms MOBILE
   Página: page-id-15
   Formulário: #wpforms-456
   ============================================================ */

/* Remove o campo oculto do WPForms da lógica visual */
body.page-id-15 #wpforms-456-field_1-container {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  width: 0 !important;
  overflow: hidden !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Garante que o container do formulário não fique estreito */
body.page-id-15 .elementor-element-ac229cc,
body.page-id-15 .elementor-element-ac229cc > .e-con-inner,
body.page-id-15 .elementor-element-4ba33b5,
body.page-id-15 .elementor-element-4ba33b5 .elementor-widget-container,
body.page-id-15 .elementor-element-4ba33b5 .elementor-shortcode {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
}

/* Card do formulário */
body.page-id-15 #wpforms-456 {
  width: 100% !important;
  max-width: 720px !important;
  margin: 0 auto !important;
  padding: 54px 60px !important;
  background: #3a2a20 !important;
  border: 1px solid rgba(224, 173, 51, 0.22) !important;
  border-top: 6px solid #e0ad33 !important;
  border-radius: 22px !important;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34) !important;
  box-sizing: border-box !important;
}

/* Título e descrição */
body.page-id-15 #wpforms-456 .wpforms-title {
  margin: 0 0 14px !important;
  color: #f7eadb !important;
  font-family: "Playfair Display", Georgia, serif !important;
  font-size: clamp(34px, 4vw, 46px) !important;
  font-weight: 800 !important;
  line-height: 1.08 !important;
}

body.page-id-15 #wpforms-456 .wpforms-description {
  margin: 0 0 40px !important;
  color: #c9b8a8 !important;
  font-family: "Archivo", Arial, sans-serif !important;
  font-size: 17px !important;
  line-height: 1.5 !important;
}

/* Grid correto usando IDs reais dos campos */
body.page-id-15 #wpforms-456 .wpforms-field-container {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  column-gap: 28px !important;
  row-gap: 24px !important;
}

body.page-id-15 #wpforms-456 .wpforms-field {
  padding: 0 !important;
  margin: 0 !important;
  min-width: 0 !important;
}

/* Nome completo */
body.page-id-15 #wpforms-456-field_9-container {
  grid-column: 1 / 2 !important;
}

/* WhatsApp */
body.page-id-15 #wpforms-456-field_2-container {
  grid-column: 2 / 3 !important;
}

/* E-mail largura total */
body.page-id-15 #wpforms-456-field_3-container {
  grid-column: 1 / -1 !important;
}

/* Tipo de evento largura total */
body.page-id-15 #wpforms-456-field_13-container {
  grid-column: 1 / -1 !important;
}

/* Data do evento, quando você adicionar no WPForms */
body.page-id-15 #wpforms-456 .wpforms-field-date-time,
body.page-id-15 #wpforms-456 .wpforms-field-date {
  grid-column: 1 / 2 !important;
}

/* Cidade */
body.page-id-15 #wpforms-456-field_12-container {
  grid-column: 2 / 3 !important;
}

/* Se ainda não tiver campo Data, Cidade ocupa largura total temporariamente */
body.page-id-15 #wpforms-456-field_13-container + #wpforms-456-field_12-container {
  grid-column: 1 / -1 !important;
}

/* Mensagem adicional largura total */
body.page-id-15 #wpforms-456-field_7-container {
  grid-column: 1 / -1 !important;
}

/* Labels */
body.page-id-15 #wpforms-456 .wpforms-field-label {
  margin: 0 0 12px !important;
  color: #dfd0bf !important;
  font-family: "Archivo", Arial, sans-serif !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  letter-spacing: 0.10em !important;
  text-transform: uppercase !important;
  line-height: 1.2 !important;
}

body.page-id-15 #wpforms-456 .wpforms-required-label {
  color: #e0ad33 !important;
}

/* Campos */
body.page-id-15 #wpforms-456 input[type="text"],
body.page-id-15 #wpforms-456 input[type="email"],
body.page-id-15 #wpforms-456 input[type="tel"],
body.page-id-15 #wpforms-456 input[type="date"],
body.page-id-15 #wpforms-456 input[type="number"],
body.page-id-15 #wpforms-456 select,
body.page-id-15 #wpforms-456 textarea {
  width: 100% !important;
  max-width: 100% !important;
  min-height: 60px !important;
  padding: 0 22px !important;
  background: #1d1612 !important;
  border: 1px solid #3d3028 !important;
  border-radius: 12px !important;
  color: #f7eadb !important;
  font-family: "Archivo", Arial, sans-serif !important;
  font-size: 16px !important;
  line-height: 1.4 !important;
  box-shadow: none !important;
  outline: none !important;
  box-sizing: border-box !important;
}

body.page-id-15 #wpforms-456 textarea {
  min-height: 145px !important;
  padding-top: 18px !important;
  resize: vertical !important;
}

body.page-id-15 #wpforms-456 ::placeholder {
  color: #b79d86 !important;
  opacity: 1 !important;
}

body.page-id-15 #wpforms-456 input:focus,
body.page-id-15 #wpforms-456 select:focus,
body.page-id-15 #wpforms-456 textarea:focus {
  border-color: #e0ad33 !important;
  box-shadow: 0 0 0 3px rgba(224, 173, 51, 0.14) !important;
}

/* Botão */
body.page-id-15 #wpforms-456 .wpforms-submit-container {
  margin-top: 34px !important;
  padding: 0 !important;
}

body.page-id-15 #wpforms-456 button[type="submit"],
body.page-id-15 #wpforms-456 .wpforms-submit {
  width: 100% !important;
  min-height: 64px !important;
  padding: 18px 28px !important;
  background: #2fa45a !important;
  border: none !important;
  border-radius: 12px !important;
  color: #ffffff !important;
  font-family: "Archivo", Arial, sans-serif !important;
  font-size: 18px !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  cursor: pointer !important;
}

body.page-id-15 #wpforms-456 button[type="submit"]:hover,
body.page-id-15 #wpforms-456 .wpforms-submit:hover {
  background: #27934f !important;
  color: #ffffff !important;
  transform: translateY(-2px);
}

/* ============================================================
   MOBILE — contato utilizável
   ============================================================ */

@media (max-width: 767px) {

  /* Quebra a área de contato em blocos verticais */
  body.page-id-15 .elementor-element-f393abb,
  body.page-id-15 .elementor-element-10f8865,
  body.page-id-15 .elementor-element-ac229cc,
  body.page-id-15 .elementor-element-ac229cc > .e-con-inner,
  body.page-id-15 .elementor-element-4ba33b5 {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    position: relative !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    box-sizing: border-box !important;
  }

  /* Espaçamento lateral seguro */
  body.page-id-15 .elementor-element-10f8865 > .e-con-inner,
  body.page-id-15 .elementor-element-ac229cc > .e-con-inner {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  /* Formulário vai para baixo da área de contato */
  body.page-id-15 .elementor-element-ac229cc {
    margin-top: 36px !important;
  }

  /* Card do formulário no mobile */
  body.page-id-15 #wpforms-456 {
    max-width: 100% !important;
    width: 100% !important;
    padding: 30px 20px !important;
    border-radius: 18px !important;
  }

  body.page-id-15 #wpforms-456 .wpforms-title {
    font-size: 30px !important;
    line-height: 1.05 !important;
    word-break: normal !important;
    overflow-wrap: break-word !important;
  }

  body.page-id-15 #wpforms-456 .wpforms-description {
    margin-bottom: 28px !important;
    font-size: 14px !important;
    line-height: 1.55 !important;
  }

  /* Todos os campos em uma coluna */
  body.page-id-15 #wpforms-456 .wpforms-field-container {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  body.page-id-15 #wpforms-456 .wpforms-field,
  body.page-id-15 #wpforms-456-field_9-container,
  body.page-id-15 #wpforms-456-field_2-container,
  body.page-id-15 #wpforms-456-field_3-container,
  body.page-id-15 #wpforms-456-field_13-container,
  body.page-id-15 #wpforms-456-field_12-container,
  body.page-id-15 #wpforms-456-field_7-container,
  body.page-id-15 #wpforms-456 .wpforms-field-date-time,
  body.page-id-15 #wpforms-456 .wpforms-field-date {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  body.page-id-15 #wpforms-456 .wpforms-field-label {
    font-size: 11px !important;
    letter-spacing: 0.08em !important;
  }

  body.page-id-15 #wpforms-456 input[type="text"],
  body.page-id-15 #wpforms-456 input[type="email"],
  body.page-id-15 #wpforms-456 input[type="tel"],
  body.page-id-15 #wpforms-456 input[type="date"],
  body.page-id-15 #wpforms-456 input[type="number"],
  body.page-id-15 #wpforms-456 select,
  body.page-id-15 #wpforms-456 textarea {
    min-height: 52px !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    font-size: 15px !important;
  }

  body.page-id-15 #wpforms-456 textarea {
    min-height: 120px !important;
    padding-top: 16px !important;
  }

  body.page-id-15 #wpforms-456 button[type="submit"],
  body.page-id-15 #wpforms-456 .wpforms-submit {
    min-height: 56px !important;
    font-size: 15px !important;
  }

  /* Evita palavras gigantes quebradas na coluna de contato */
  body.page-id-15 .elementor-element-10f8865 .elementor-heading-title,
  body.page-id-15 .elementor-element-10f8865 p {
    word-break: normal !important;
    overflow-wrap: break-word !important;
  }

  /* Botões de redes sociais em largura usável */
  body.page-id-15 .elementor-element-10f8865 .elementor-widget-button,
  body.page-id-15 .elementor-element-10f8865 .elementor-button-wrapper,
  body.page-id-15 .elementor-element-10f8865 .elementor-button {
    width: 100% !important;
    max-width: 100% !important;
  }
}

/* ============================================================
   AJUSTE FINAL — Centralizar menu hambúrguer no mobile
   ============================================================ */

@media (max-width: 767px) {
  .cicinho-mobile-bar {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    min-height: 66px !important;
    padding: 12px 14px !important;
  }

  .cicinho-mobile-brand {
    flex: 0 1 auto !important;
    max-width: 145px !important;
    font-size: 18px !important;
    line-height: 1 !important;
    white-space: nowrap !important;
  }

  .cicinho-mobile-toggle {
    position: absolute !important;
    left: 50% !important;
    top: 50% !important;
    transform: translate(-50%, -50%) !important;

    width: 42px !important;
    height: 42px !important;
    display: inline-flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    padding: 0 !important;
    margin: 0 !important;
  }

  .cicinho-mobile-toggle span {
    width: 22px !important;
    height: 2px !important;
    margin: 0 !important;
  }

  .cicinho-mobile-cta {
    flex: 0 0 auto !important;
    min-width: 96px !important;
    max-width: 104px !important;
    min-height: 40px !important;
    padding: 9px 10px !important;
    font-size: 11px !important;
  }
}

/* ============================================================
   HEADER — Logo + telefone
   ============================================================ */

.cicinho-brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.cicinho-brand-logo,
.cicinho-brand-logo .custom-logo-link {
  display: inline-flex;
  align-items: center;
}

.cicinho-brand-logo img,
.cicinho-brand .custom-logo {
  display: block;
  width: auto;
  max-width: 190px;
  max-height: 58px;
  object-fit: contain;
}

.cicinho-brand-phone {
  color: var(--cic-ink-soft);
  font-family: "Archivo", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
}

@media (max-width: 767px) {
  .cicinho-mobile-brand {
    display: inline-flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: center !important;
    gap: 4px !important;
    max-width: 135px !important;
    text-decoration: none !important;
  }

  .cicinho-mobile-logo,
  .cicinho-mobile-logo .custom-logo-link {
    display: inline-flex !important;
    align-items: center !important;
  }

  .cicinho-mobile-logo img,
  .cicinho-mobile-brand .custom-logo {
    display: block !important;
    width: auto !important;
    max-width: 122px !important;
    max-height: 38px !important;
    object-fit: contain !important;
  }

  .cicinho-mobile-brand-text {
    color: var(--cic-gold);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 18px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
  }

  .cicinho-mobile-phone {
    color: var(--cic-ink-soft);
    font-family: "Archivo", Arial, sans-serif;
    font-size: 9px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
  }
}

/* ============================================================
   FOOTER V2 — Modelo BNEXUS / Cicinho
   ============================================================ */

.cicinho-footer-v2 {
  background: #2b1d14;
  color: var(--cic-ink);
  border-top: 1px solid rgba(224, 173, 51, 0.08);
}

.cicinho-footer-v2-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 66px 24px 36px;
}

.cicinho-footer-v2-brand-mobile {
  display: none;
}

.cicinho-footer-v2-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.75fr 0.9fr 0.95fr;
  gap: 72px;
  align-items: flex-start;
}

.cicinho-footer-v2-col h3 {
  margin: 0 0 24px;
  color: #ffffff;
  font-family: "Archivo", Arial, sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
  text-transform: none;
}

.cicinho-footer-v2-agency-logo {
  display: inline-flex;
  width: 132px;
  height: 116px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(244, 233, 216, 0.14);
  overflow: hidden;
}

.cicinho-footer-v2-agency-logo img {
  display: block;
  max-width: 118px;
  max-height: 100px;
  object-fit: contain;
}

.cicinho-footer-v2 .cicinho-footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.cicinho-footer-v2 .cicinho-footer-menu li {
  margin: 0 0 12px;
  padding: 0;
}

.cicinho-footer-v2 .cicinho-footer-menu a {
  color: #ffffff;
  font-family: "Archivo", Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.25;
  text-decoration: none;
}

.cicinho-footer-v2 .cicinho-footer-menu a:hover,
.cicinho-footer-v2 .cicinho-footer-menu .current-menu-item > a {
  color: var(--cic-gold);
}

.cicinho-footer-v2 .cicinho-footer-icons-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 14px;
}

.cicinho-footer-v2 .cicinho-footer-icons-menu a {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: rgba(244, 233, 216, 0.12);
  border: 0;
  color: var(--cic-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
}

.cicinho-footer-v2 .cicinho-footer-icons-menu a::before {
  content: "";
  width: 22px;
  height: 22px;
  display: block;
  background: currentColor;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.cicinho-footer-v2-bottom {
  margin-top: 36px;
  padding-top: 34px;
  border-top: 1px solid rgba(244, 233, 216, 0.75);
  text-align: center;
}

.cicinho-footer-v2-bottom p {
  margin: 0;
  color: #ffffff;
  font-family: "Archivo", Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
}

/* Mobile footer baseado no modelo enviado */
@media (max-width: 767px) {
  .cicinho-footer-v2-wrap {
    padding: 44px 30px 32px;
  }

  .cicinho-footer-v2-brand-mobile {
    display: block;
    margin-bottom: 42px;
  }

  .cicinho-footer-v2-title {
    display: inline-block;
    color: var(--cic-gold);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 30px;
    font-style: italic;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
  }

  .cicinho-footer-v2-brand-mobile p {
    margin: 10px 0 0;
    color: #ffffff;
    font-family: "Archivo", Arial, sans-serif;
    font-size: 14px;
    line-height: 1.4;
  }

  .cicinho-footer-v2-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 38px 34px;
    align-items: flex-start;
  }

  .cicinho-footer-v2-assessoria {
    order: 4;
  }

  .cicinho-footer-v2-menu {
    order: 1;
  }

  .cicinho-footer-v2-social {
    order: 2;
  }

  .cicinho-footer-v2-institucional {
    order: 3;
  }

  .cicinho-footer-v2-col h3 {
    margin-bottom: 18px;
    font-size: 21px;
  }

  .cicinho-footer-v2 .cicinho-footer-menu li {
    margin-bottom: 11px;
  }

  .cicinho-footer-v2 .cicinho-footer-menu a {
    font-size: 15px;
  }

  .cicinho-footer-v2 .cicinho-footer-icons-menu {
    gap: 6px;
  }

  .cicinho-footer-v2 .cicinho-footer-icons-menu a {
    width: 60px;
    height: 60px;
    border-radius: 12px;
  }

  .cicinho-footer-v2-agency-logo {
    width: 118px;
    height: 98px;
  }

  .cicinho-footer-v2-agency-logo img {
    max-width: 104px;
    max-height: 84px;
  }

  .cicinho-footer-v2-bottom {
    margin-top: 38px;
    padding-top: 24px;
    text-align: left;
  }

  .cicinho-footer-v2-bottom p {
    font-size: 15px;
    line-height: 1.55;
  }
}

@media (max-width: 380px) {
  .cicinho-footer-v2-wrap {
    padding-left: 24px;
    padding-right: 24px;
  }

  .cicinho-footer-v2-grid {
    gap: 34px 24px;
  }

  .cicinho-footer-v2 .cicinho-footer-icons-menu a {
    width: 54px;
    height: 54px;
  }
}

/* ============================================================
   ALMA DO FORRÓ — Ajuste de espaçamento dos blocos de músicas
   Página: page-id-14
   ============================================================ */

/* Desktop */
@media (min-width: 768px) {
  body.page-id-14 .elementor-section,
  body.page-id-14 .e-con {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  /* Reduz espaço geral entre blocos principais da página */
  body.page-id-14 .elementor-widget {
    margin-bottom: 18px !important;
  }

  /* Ajusta containers internos para não criarem buracos verticais */
  body.page-id-14 .e-con-inner {
    gap: 24px !important;
  }

  body.page-id-14 .e-con.e-child,
  body.page-id-14 .e-con-full {
    gap: 18px !important;
  }

  /* Cards/blocos de música */
  body.page-id-14 .elementor-widget-image,
  body.page-id-14 .elementor-widget-heading,
  body.page-id-14 .elementor-widget-text-editor,
  body.page-id-14 .elementor-widget-icon,
  body.page-id-14 .elementor-widget-button {
    margin-bottom: 12px !important;
  }

  /* Remove altura mínima exagerada que pode vir do Elementor */
  body.page-id-14 .elementor-section,
  body.page-id-14 .elementor-container,
  body.page-id-14 .e-con,
  body.page-id-14 .e-con-inner {
    min-height: 0 !important;
  }
}

/* Mobile — mantém mais compacto sem quebrar */
@media (max-width: 767px) {
  body.page-id-14 .elementor-section,
  body.page-id-14 .e-con {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  body.page-id-14 .e-con-inner {
    gap: 22px !important;
  }

  body.page-id-14 .e-con.e-child,
  body.page-id-14 .e-con-full {
    gap: 16px !important;
  }

  body.page-id-14 .elementor-widget {
    margin-bottom: 14px !important;
  }

  body.page-id-14 .elementor-section,
  body.page-id-14 .elementor-container,
  body.page-id-14 .e-con,
  body.page-id-14 .e-con-inner {
    min-height: 0 !important;
  }
}

/* ============================================================
   AJUSTE FINAL — Header com logo BNEXUS + Cicinho
   ============================================================ */

.cicinho-header-brand-group {
  display: flex;
  align-items: center;
  gap: 34px;
  flex: 0 0 auto;
}

.cicinho-header-agency-logo {
  width: 82px;
  height: 82px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(244, 233, 216, 0.12);
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
}

.cicinho-header-agency-logo img {
  display: block;
  max-width: 72px;
  max-height: 72px;
  object-fit: contain;
}

.cicinho-brand {
  display: inline-flex;
  flex-direction: column;
  gap: 6px;
  text-decoration: none;
}

.cicinho-brand-title {
  color: var(--cic-gold);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 34px;
  font-style: italic;
  font-weight: 800;
  line-height: 1;
}

.cicinho-brand-phone {
  color: var(--cic-ink-soft);
  font-family: "Archivo", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

/* Ajusta header desktop para o novo layout */
@media (min-width: 768px) {
  .cicinho-header-inner {
    max-width: 1180px;
    padding-top: 26px;
    padding-bottom: 26px;
    gap: 36px;
  }

  .cicinho-main-navigation {
    flex: 1;
  }

  .cicinho-main-menu {
    gap: 34px;
  }
}

/* Header mobile suave */
@media (max-width: 767px) {
  .cicinho-mobile-bar {
    display: grid !important;
    grid-template-columns: 1fr 42px 96px !important;
    align-items: center !important;
    gap: 10px !important;
    min-height: 64px !important;
    padding: 10px 12px !important;
  }

  .cicinho-mobile-brand {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    max-width: 150px !important;
    text-decoration: none !important;
  }

  .cicinho-mobile-logo-small {
    width: 36px !important;
    height: 36px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: rgba(244, 233, 216, 0.12) !important;
    border-radius: 6px !important;
    overflow: hidden !important;
    flex: 0 0 36px !important;
  }

  .cicinho-mobile-logo-small img {
    display: block !important;
    max-width: 32px !important;
    max-height: 32px !important;
    object-fit: contain !important;
  }

  .cicinho-mobile-brand-text {
    color: var(--cic-gold) !important;
    font-family: "Playfair Display", Georgia, serif !important;
    font-size: 15px !important;
    font-style: italic !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    white-space: nowrap !important;
  }

  .cicinho-mobile-toggle {
    align-items: center !important;
    justify-content: center !important;
  }

  .cicinho-mobile-cta {
    min-width: 88px !important;
    max-width: 96px !important;
    min-height: 38px !important;
    font-size: 11px !important;
    padding: 8px 10px !important;
  }
}

/* ============================================================
   AJUSTE FINAL — Footer V2 desktop e mobile suave
   ============================================================ */

.cicinho-footer-v2 {
  background: #2b1d14 !important;
}

.cicinho-footer-v2-wrap {
  max-width: 1180px !important;
  padding: 58px 24px 34px !important;
}

.cicinho-footer-v2-grid {
  display: grid !important;
  grid-template-columns: 1.1fr 0.75fr 0.95fr 0.9fr !important;
  gap: 72px !important;
  align-items: flex-start !important;
}

.cicinho-footer-v2-col h3 {
  color: #fff !important;
  font-family: "Archivo", Arial, sans-serif !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  margin-bottom: 20px !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.cicinho-footer-v2-agency-logo {
  width: 122px !important;
  height: 100px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: rgba(244, 233, 216, 0.12) !important;
  border-radius: 10px !important;
  overflow: hidden !important;
}

.cicinho-footer-v2-agency-logo img {
  display: block !important;
  max-width: 108px !important;
  max-height: 86px !important;
  object-fit: contain !important;
}

.cicinho-footer-v2 .cicinho-footer-menu a {
  color: #fff !important;
  font-size: 14px !important;
  font-weight: 400 !important;
}

.cicinho-footer-v2 .cicinho-footer-menu a:hover {
  color: var(--cic-gold) !important;
}

.cicinho-footer-v2 .cicinho-footer-icons-menu a {
  width: 54px !important;
  height: 54px !important;
  border-radius: 12px !important;
  background: rgba(244, 233, 216, 0.12) !important;
  border: 0 !important;
}

.cicinho-footer-v2-bottom {
  margin-top: 36px !important;
  padding-top: 28px !important;
  border-top: 1px solid rgba(244, 233, 216, 0.72) !important;
}

.cicinho-footer-v2-bottom p {
  color: #fff !important;
  font-size: 14px !important;
}

/* Mobile footer igual ao modelo, mais leve */
@media (max-width: 767px) {
  .cicinho-footer-v2-wrap {
    padding: 42px 28px 30px !important;
  }

  .cicinho-footer-v2-brand-mobile {
    display: block !important;
    margin-bottom: 36px !important;
  }

  .cicinho-footer-v2-title {
    color: var(--cic-gold) !important;
    font-family: "Playfair Display", Georgia, serif !important;
    font-size: 28px !important;
    font-style: italic !important;
    font-weight: 800 !important;
    text-decoration: none !important;
  }

  .cicinho-footer-v2-brand-mobile p {
    margin: 8px 0 0 !important;
    color: #fff !important;
    font-size: 13px !important;
  }

  .cicinho-footer-v2-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 34px 26px !important;
  }

  .cicinho-footer-v2-menu {
    order: 1 !important;
  }

  .cicinho-footer-v2-social {
    order: 2 !important;
  }

  .cicinho-footer-v2-institucional {
    order: 3 !important;
  }

  .cicinho-footer-v2-assessoria {
    order: 4 !important;
  }

  .cicinho-footer-v2-col h3 {
    font-size: 19px !important;
    margin-bottom: 16px !important;
  }

  .cicinho-footer-v2 .cicinho-footer-menu li {
    margin-bottom: 9px !important;
  }

  .cicinho-footer-v2 .cicinho-footer-menu a {
    font-size: 14px !important;
  }

  .cicinho-footer-v2 .cicinho-footer-icons-menu {
    gap: 6px !important;
  }

  .cicinho-footer-v2 .cicinho-footer-icons-menu a {
    width: 52px !important;
    height: 52px !important;
  }

  .cicinho-footer-v2-agency-logo {
    width: 112px !important;
    height: 92px !important;
  }

  .cicinho-footer-v2-agency-logo img {
    max-width: 98px !important;
    max-height: 78px !important;
  }

  .cicinho-footer-v2-bottom {
    margin-top: 34px !important;
    padding-top: 22px !important;
    text-align: left !important;
  }

  .cicinho-footer-v2-bottom p {
    font-size: 13px !important;
    line-height: 1.55 !important;
  }
}