.elementor-4609 .elementor-element.elementor-element-6b85d35{--display:flex;}/* Start custom CSS *//* ========================================
   CSS PERSONALIZADO PARA ELEMENTOR PRO
   Site: Meu Primeiro Passo no Idioma Japonês
   ======================================== */

/* === IMPORTS === */
/* Se mantiver os <link> no HTML, pode remover o @import abaixo. */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@600;700;800;900&display=swap');

/* === VARIÁVEIS CSS === */
:root {
    /* Cores */
    --color-primary: hsl(0, 84%, 45%);
    --color-primary-dark: hsl(0, 84%, 35%);
    --color-primary-light: hsl(0, 84%, 55%);
    --color-white: hsl(0, 0%, 100%);
    --color-black: hsl(0, 0%, 5%);
    --color-gray-light: hsl(0, 0%, 96%);
    --color-gray: hsl(0, 0%, 45%);
    --color-gray-dark: hsl(0, 0%, 10%);
    --color-border: hsl(0, 0%, 90%);
    --color-green: hsl(142, 76%, 36%);
    
    /* Fontes */
    --font-inter: 'Inter', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif; /* NEW (fallbacks) */
    --font-poppins: 'Poppins', system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif; /* NEW (fallbacks) */
    
    /* Sombras */
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 60px -20px rgba(220, 38, 38, 0.3);
    --shadow-xl: 0 10px 30px rgba(0, 0, 0, 0.2);
    
    /* Transições */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === RESET BÁSICO === */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-inter);
    color: var(--color-black);
    line-height: 1.6;
    background-color: var(--color-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-poppins);
    letter-spacing: -0.02em; /* NEW: leve fechamento para “massa” de texto */
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, hsl(0, 84%, 25%) 0%, hsl(0, 84%, 45%) 100%);
    padding: 5rem 1rem;
}

.hero-decorative { position: absolute; inset: 0; opacity: 0.1; }

.hero-blob {
    position: absolute;
    background: var(--color-white);
    border-radius: 50%;
    filter: blur(80px);
}
.hero-blob-1 { top: 5rem; left: 2.5rem; width: 18rem; height: 18rem; }
.hero-blob-2 { bottom: 5rem; right: 2.5rem; width: 24rem; height: 24rem; }

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
    animation: fadeIn 1s ease-out;
}

.hero-badge {
    display: inline-block;
    margin-bottom: 1.5rem;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.hero-badge span {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600; /* 500 -> 600 para legibilidade */
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.06em; /* NEW */
}

.hero-title {
    font-weight: 900;
    font-size: clamp(2.6rem, 6vw + 1rem, 5.6rem); /* NEW: escala ligeiramente maior */
    color: var(--color-white);
    margin-bottom: 1.5rem;
    line-height: 0.95; /* NEW: mais compacto, igual à arte */
    letter-spacing: -0.02em; /* NEW */
}

/* Destaque “japonês” no estilo do print */
.hero-title-highlight {
    background: var(--color-white);
    color: var(--color-primary);
    padding: 0.1em 0.35em;         /* NEW: mais justo ao texto */
    display: inline-block;
    border-radius: 0.4rem;         /* NEW: cantos arredondados */
    line-height: 1;
    font-weight: 900;
    transform: rotate(-1deg);
    box-shadow: 0 4px 0 rgba(0,0,0,0.06); /* NEW: leve relevo */
}

.hero-subtitle {
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-white);
    color: var(--color-primary);
    font-family: var(--font-poppins);
    font-weight: 800;          /* 700 -> 800 para “punch” visual */
    font-size: 1.125rem;
    padding: 1.75rem 3rem;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
}
.hero-button:hover { background: rgba(255, 255, 255, 0.9); transform: scale(1.05); }
.hero-button svg { transition: var(--transition); }
.hero-button:hover svg { transform: translateY(0.25rem); }

.hero-live-indicator {
    margin-top: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem; /* NEW: 0.875 -> 0.9 para melhor leitura */
}
.pulse-dot {
    width: 0.5rem; height: 0.5rem;
    background: var(--color-green);
    border-radius: 50%;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* ========================================
   FORM SECTION
   ======================================== */
.form-section { padding: 5rem 1rem; background: var(--color-white); }
.form-container { max-width: 42rem; margin: 0 auto; }
.form-header { text-align: center; margin-bottom: 3rem; }

.form-badge {
    display: inline-block;
    margin-bottom: 1rem;
    padding: 0.5rem 1.5rem;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 9999px;
}
.form-badge span {
    color: var(--color-primary);
    font-weight: 700; /* 600 -> 700 */
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.06em; /* NEW */
}

.form-title {
    font-weight: 900;
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--color-black);
    margin-bottom: 1rem;
    letter-spacing: -0.02em; /* NEW */
    line-height: 1; /* NEW */
}

.form-subtitle {
    font-size: 1.125rem;
    color: var(--color-gray);
    max-width: 32rem;
    margin: 0 auto;
}

.registration-form {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: var(--shadow-card);
}

.form-group { margin-bottom: 1.5rem; }
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600; /* 500 -> 600 */
    color: var(--color-black);
    font-size: 0.9rem; /* 0.875 -> 0.9 */
}

/* ========= CONTORNO VISÍVEL NO INPUT ========= */
.form-group input {
    width: 100%;
    padding: 0.9rem 1rem;
    background: var(--color-white);
    border: 2px solid #e5e7eb;      /* contorno visível */
    border-radius: 0.75rem;          /* pode ajustar para 0 se quiser quadrado */
    font-size: 1rem;
    color: var(--color-black);
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.form-group input::placeholder { color: #9ca3af; }
.form-group input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.12);
}

/* estados de validação usados pelo JS */
.form-group.is-error input{
  border-color: var(--color-primary);
  box-shadow: 0 0 0 4px rgba(220,38,38,.15);
}
.form-group.is-success input{
  border-color: var(--color-green);
  box-shadow: 0 0 0 4px rgba(16,185,129,.12);
}

/* mensagens */
.field-hint{ display:block; margin-top:.35rem; color:#6b7280; font-size:.85rem; }
.field-error{ display:none; margin-top:.35rem; color: var(--color-primary); font-weight:600; font-size:.85rem; }
.field-error.show{ display:block; }

.form-submit-button {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--color-primary);
    color: var(--color-white);
    font-family: var(--font-poppins);
    font-weight: 800; /* 700 -> 800 */
    font-size: 1.125rem;
    border: none;
    border-radius: 0.75rem;
    cursor: pointer;
    transition: var(--transition);
}
.form-submit-button:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.form-event-details { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.event-detail-item {
    display: flex; align-items: center; gap: 0.75rem;
    padding: 1rem; background: var(--color-gray-light); border-radius: 0.5rem;
}
.event-detail-item svg { color: var(--color-primary); flex-shrink: 0; }
.event-detail-item span { font-weight: 600; color: var(--color-black); } /* 500 -> 600 */

/* ========================================
   BENEFITS SECTION
   ======================================== */
.benefits-section { padding: 5rem 1rem; background: var(--color-white); }
.benefits-container { max-width: 80rem; margin: 0 auto; }
.benefits-header { text-align: center; margin-bottom: 4rem; }

.benefits-badge {
    display: inline-block; margin-bottom: 1rem; padding: 0.5rem 1.5rem;
    background: rgba(220, 38, 38, 0.1); border-radius: 9999px;
}
.benefits-badge span {
    color: var(--color-primary);
    font-weight: 700; /* 600 -> 700 */
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.06em; /* NEW */
}

.benefits-title {
    font-weight: 900;
    font-size: clamp(2rem, 5vw, 3.75rem);
    color: var(--color-black);
    margin-bottom: 1rem;
    letter-spacing: -0.02em; /* NEW */
    line-height: 1; /* NEW */
}

.benefits-subtitle {
    font-size: 1.25rem;
    color: var(--color-gray);
    max-width: 42rem;
    margin: 0 auto;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 64rem;
    margin: 0 auto;
}
@media (min-width: 768px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }

.benefit-card {
    position: relative;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: var(--shadow-card);
    transition: var(--transition);
}
.benefit-card:hover {
    border-color: rgba(220, 38, 38, 0.5);
    box-shadow: var(--shadow-lg);
    transform: translateY(-0.5rem);
}

.benefit-number {
    position: absolute;
    top: -1.5rem; left: -1.5rem;
    width: 4rem; height: 4rem;
    background: var(--color-primary);
    border-radius: 1rem;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-poppins);
    font-weight: 900; font-size: 1.875rem; color: var(--color-white);
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
}
.benefit-card:hover .benefit-number { transform: scale(1.1) rotate(6deg); }

.benefit-icon {
    width: 3.5rem; height: 3.5rem;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 0.75rem;
    display: flex; align-items: center; justify-content: center;
    margin-top: 1rem; margin-bottom: 1.5rem;
    transition: var(--transition);
}
.benefit-card:hover .benefit-icon { background: rgba(220, 38, 38, 0.2); }
.benefit-icon svg { color: var(--color-primary); }

.benefit-title {
    font-weight: 800; /* 700 -> 800 */
    font-size: 1.25rem;
    color: var(--color-black);
    margin-bottom: 0.5rem;
}
.benefit-subtitle {
    font-family: var(--font-poppins);
    font-weight: 700; /* 600 -> 700 */
    font-size: 1.125rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}
.benefit-description { color: var(--color-gray); line-height: 1.7; }

.benefit-highlight {
    position: absolute; bottom: 0; left: 0; width: 100%; height: 0.25rem;
    background: linear-gradient(90deg, rgba(220, 38, 38, 0) 0%, rgba(220, 38, 38, 1) 50%, rgba(220, 38, 38, 0) 100%);
    opacity: 0; transition: var(--transition);
}
.benefit-card:hover .benefit-highlight { opacity: 1; }

/* ========================================
   CTA BANNER SECTION
   ======================================== */
.cta-banner {
    padding: 4rem 1rem;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
}
.cta-content { max-width: 64rem; margin: 0 auto; text-align: center; }

.cta-header {
    display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-bottom: 1rem;
}
.cta-header svg { color: var(--color-white); animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }
.cta-header span {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700; /* 600 -> 700 */
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.06em; /* NEW */
}

.cta-title {
    font-weight: 900;
    font-size: clamp(1.875rem, 5vw, 3rem);
    color: var(--color-white);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em; /* NEW */
    line-height: 1; /* NEW */
}

.cta-subtitle {
    font-size: clamp(1.125rem, 3vw, 1.25rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 42rem;
    margin-left: auto; margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 1.75rem 3rem;
    background: var(--color-white);
    color: var(--color-primary);
    font-family: var(--font-poppins);
    font-weight: 800; /* 700 -> 800 */
    font-size: 1.125rem;
    border: none; border-radius: 9999px; cursor: pointer;
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
}
.cta-button:hover { background: rgba(255, 255, 255, 0.9); transform: scale(1.05); }

.cta-features {
    margin-top: 2rem; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1.5rem;
}
.cta-feature-item { display: flex; align-items: center; gap: 0.5rem; color: rgba(255, 255, 255, 0.8); font-size: 0.9rem; } /* 0.875 -> 0.9 */
.cta-dot { width: 0.5rem; height: 0.5rem; background: var(--color-green); border-radius: 50%; }

/* ========================================
   TOAST NOTIFICATION
   ======================================== */
.toast {
    position: fixed; bottom: 2rem; right: 2rem;
    background: var(--color-black); color: var(--color-white);
    padding: 1rem 1.5rem; border-radius: 0.5rem; box-shadow: var(--shadow-xl);
    opacity: 0; transform: translateY(2rem);
    transition: var(--transition); z-index: 1000;
}
.toast-show { opacity: 1; transform: translateY(0); }
.toast-success { background: var(--color-green); }
.toast-error { background: var(--color-primary); }

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(1rem); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0.5; }
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 768px) {
    .hero-section { min-height: 100vh; padding: 3rem 1rem; }
    .form-section, .benefits-section, .cta-banner { padding: 3rem 1rem; }
    .registration-form { padding: 1.5rem; }
    .toast { right: 1rem; left: 1rem; bottom: 1rem; }
}

/* ====== Cartão do formulário / container externo ====== */
.form-section { background: #f7f7f8; }

.form-section .form-container{
  background: #fff !important;
  border: 1px solid var(--color-border) !important;
  border-radius: 1.25rem !important;
  padding: 2.5rem !important;
  box-shadow: 0 10px 30px rgba(0,0,0,.06) !important;
}

/* Caixa clara dos detalhes (padrão do print) */
.form-section .form-event-details{
  margin-top: 1.25rem !important;
  background: #fff5f5 !important;
  border: 1px solid #f8d7da !important;
  border-radius: .9rem !important;
  padding: 1rem 1.25rem !important;
  display: flex !important;
  gap: 1.25rem !important;
  align-items: center !important;
  flex-wrap: wrap !important;
}
.form-section .event-detail-item{
  background: transparent !important;
  color: var(--color-black) !important;
  padding: 0 !important;
  margin: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: .5rem !important;
}
.form-section .event-detail-item svg{ color: var(--color-primary) !important; }

@media (min-width: 768px){
  .form-section .event-detail-item{
    position: relative; padding-right: 1rem;
  }
  .form-section .event-detail-item:not(:last-child)::after{
    content: ""; position: absolute; right: 0; top: 50%;
    width: 1px; height: 22px; background: #f3b4b8; transform: translateY(-50%);
  }
}
/* ====== DIVISÓRIA SUPERIOR DA SEÇÃO (mais grossa e vermelha) ====== */
.form-section{
  position: relative;
  background: #f7f7f8; /* cinza claro ao redor, já estava assim */
}
.form-section::before{
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 6px;                     /* aumenta a espessura da divisória */
  background: var(--color-primary);/* vermelho */
  z-index: 0;
}

/* ====== CARTÃO DO FORMULÁRIO COM BORDA VERMELHA E MAIS GROSSA ====== */
.form-section .form-container{
  background: #fff !important;                       /* fundo branco do quadrado */
  border: 2px solid var(--color-primary) !important; /* borda vermelha +1px mais grossa */
  border-radius: 1.25rem !important;
  padding: 2.5rem !important;
  box-shadow: 0 10px 30px rgba(0,0,0,.06) !important;
  position: relative;
  z-index: 1; /* fica acima da divisória */
}

/* (opcional) Se quiser que a caixinha dos detalhes tenha a mesma borda vermelha */
.form-section .form-event-details{
  border: 2px solid var(--color-primary) !important;
  background: #fff !important;      /* mantém branco por dentro */
}

/* (opcional) Se também quiser os INPUTS com borda vermelha sempre: descomente
.form-group input{
  border-color: var(--color-primary) !important;
}
*/
/* ===========================
   BENEFITS — borda vermelha sempre
   =========================== */
.benefits-section .benefit-card{
  border: 2px solid var(--color-primary) !important;      /* contorno vermelho permanente */
  border-radius: 1rem;                                     /* mantém o raio atual */
  box-shadow:
    0 4px 20px rgba(0,0,0,.06),                            /* sombra base */
    0 0 0 4px rgba(220,38,38,.12) !important;              /* “anel” vermelho suave ao redor */
  transform: translateY(0);                                /* sem deslocamento inicial */
}

/* Deixa a faixa de destaque inferior sempre visível */
.benefits-section .benefit-card .benefit-highlight{
  opacity: 1 !important;
}

/* Ícone com fundo levemente avermelhado (coerente com o contorno) */
.benefits-section .benefit-card .benefit-icon{
  background: rgba(220,38,38,.12) !important;
}

/* Mantém um hover mais forte, mas já começa circulado */
.benefits-section .benefit-card:hover{
  transform: translateY(-6px);
  box-shadow:
    0 20px 60px -20px rgba(220,38,38,.28),
    0 0 0 6px rgba(220,38,38,.16) !important;              /* anel um pouco mais forte no hover */
}

/* (opcional) se quiser o contorno AINDA mais marcado sempre, use 3px: */
/*
.benefits-section .benefit-card{
  border-width: 3px !important;
  box-shadow:
    0 4px 20px rgba(0,0,0,.06),
    0 0 0 6px rgba(220,38,38,.14) !important;
}
*/
/* --- CTA/Hero: manter a cor do texto SEMPRE vermelha (sem azul) --- */

/* estilo base */
a.cta-button,
a.hero-button {
  color: var(--color-primary) !important;   /* texto vermelho */
  background: #fff;                         /* pílula branca, se estiver usando assim */
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border-radius: 9999px;
}

/* garantir a MESMA cor em todos os estados */
a.cta-button:hover,
a.cta-button:focus,
a.cta-button:active,
a.cta-button:visited,
a.hero-button:hover,
a.hero-button:focus,
a.hero-button:active,
a.hero-button:visited {
  color: var(--color-primary) !important;   /* não muda para azul */
  text-decoration: none !important;
  background: #fff;                         /* mantém a mesma cor do fundo */
}

/* se houver regras globais fortes do tema, aumenta a especificidade: */
.cta-banner .cta-content a.cta-button:hover,
.hero-section .hero-content a.hero-button:hover {
  color: var(--color-primary) !important;
}

/* ícone acompanha a cor do texto */
a.cta-button svg,
a.hero-button svg { color: currentColor; }
/* ===== ABOUT / BIO ===== */
.about-section{
  background: #121212;                /* fundo escuro */
  color: #e9ecef;
  padding: 5rem 1rem;
}
.about-container{
  max-width: 80rem;
  margin: 0 auto;
}
.text-primary{ color: var(--color-primary); }

.about-header{
  text-align: center;
  margin-bottom: 2.5rem;
}
.about-title{
  font-family: var(--font-poppins);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #fff;
  font-size: clamp(2rem, 3.5vw, 3rem);
}
.about-subtitle{
  margin-top: .75rem;
  font-size: clamp(1.125rem, 1.8vw, 1.5rem);
  color: #ffb3b8;                     /* tom suave para combinar com o vermelho */
}

.about-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
@media (min-width: 992px){
  .about-grid{
    grid-template-columns: 1fr 1.1fr; /* foto | texto */
    gap: 3rem;
  }
}

/* foto com moldura na identidade */
.about-photo{
  margin: 0;
}
.about-photo img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1rem;
  background: #000;
  border: 2px solid var(--color-primary);      /* contorno vermelho */
  box-shadow: 0 10px 30px rgba(0,0,0,.35),
              0 0 0 6px rgba(220,38,38,.10);   /* halo vermelho suave */
}

/* texto */
.about-content p{
  margin: 0 0 1rem 0;
  line-height: 1.75;
  color: #e8e8e8;
  font-size: 1.05rem;
}
.about-content p:last-child{ margin-bottom: 0; }
.about-content .about-strong{
  color: #fff;
  font-weight: 700;
}

/* alinhamento com seu grid geral em telas grandes */
@media (min-width: 1280px){
  .about-container{ max-width: 70rem; }
}/* ==== ABOUT em fundo claro / texto escuro ==== */
.about-section{
  background: var(--color-white);
  color: var(--color-black);
}

.about-title{
  color: var(--color-black);
}

.about-subtitle{
  color: var(--color-black);
  opacity: .9;                /* levemente mais suave */
}

.text-primary{ color: var(--color-primary); } /* mantém "Kenji Sensei" em vermelho */

/* Texto do corpo em preto (ou cinza-escuro da identidade) */
.about-content p{
  color: var(--color-gray-dark);
}
.about-content .about-strong{
  color: var(--color-black);
}

/* Foto com borda vermelha e halo suave em fundo claro */
.about-photo img{
  background: #fff;
  border: 2px solid var(--color-primary);
  box-shadow:
    0 10px 24px rgba(0,0,0,.08),
    0 0 0 6px rgba(220,38,38,.08);
}

/* ====== FORM: MOBILE LARGO E LEGÍVEL ====== */
@media (max-width: 640px) {

  /* ocupa bem a largura, com respiro nas bordas */
  .form-section .form-container{
    max-width: 100% !important;
    width: 100% !important;
    margin-inline: 1rem !important;     /* 16px de margem lateral */
    padding: 1.25rem 1rem !important;    /* mais compacto no topo/lados */
    border-radius: 1rem !important;
  }

  /* cabeçalho: fontes um pouco menores e sem limitar a largura do texto */
  .form-header{ text-align: left; }
  .form-title{
    font-size: clamp(1.75rem, 8vw, 2.25rem) !important; /* menor só no mobile */
    line-height: 1.05 !important;
  }
  .form-subtitle{
    max-width: none !important;
    margin: .5rem 0 1rem !important;
    font-size: 1rem !important;
  }

  /* cada campo usa a largura total, com toque confortável (iOS 16px evita zoom) */
  .registration-form{
    padding: 0 !important;
    display: grid;
    gap: .875rem; /* espaço entre campos */
  }
  .form-group{
    padding: .65rem .85rem !important;   /* borda/contorno continuam visíveis */
    border-radius: .75rem !important;
  }
  .form-group label{
    font-size: .9rem !important;
    margin-bottom: .35rem !important;
  }
  .form-group input{
    width: 100% !important;
    font-size: 16px !important;          /* evita zoom ao focar no iOS */
    padding: .75rem .25rem !important;
  }

  /* botão 100% */
  .form-submit-button{
    width: 100% !important;
    font-size: 1.05rem !important;
    padding: 1rem 1.25rem !important;
    border-radius: .75rem !important;
    margin-top: .25rem !important;
  }

  /* caixinha dos detalhes: pilha vertical, leitura fácil */
  .form-section .form-event-details{
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: .75rem !important;
    padding: .9rem 1rem !important;
    margin-top: 1rem !important;
  }
  .form-section .event-detail-item{
    padding-right: 0 !important;
  }
  .form-section .event-detail-item:not(:last-child)::after{
    display: none !important;            /* tira divisor vertical no mobile */
  }
}/* ====== AJUSTE DEFINITIVO MOBILE DO FORM (retinho e largo) ====== */
@media (max-width: 640px){

  /* zera assimetrias de espaçamento na seção */
  .form-section{
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  /* card centralizado e largo, com respiro igual nas laterais */
  .form-section .form-container{
    width: 100% !important;
    max-width: none !important;
    margin: 0 auto !important;
    padding: 1.25rem 1rem !important;      /* 16px nas laterais */
    box-sizing: border-box !important;
    border-radius: 1rem !important;
  }

  /* evita o “amassado” causado por grid */
  .registration-form{
    display: block !important;
    padding: 0 !important;
  }

  /* cada grupo ocupa toda a largura, com contorno e espaçamento confortáveis */
  .form-group{
    display: block !important;
    width: 100% !important;
    margin: 0 0 .875rem 0 !important;
    padding: .6rem .75rem !important;      /* mantém o “cartão”/contorno do campo */
    border-radius: .75rem !important;
    box-sizing: border-box !important;
  }

  .form-group label{
    display: block !important;
    margin: 0 0 .35rem 0 !important;
    font-size: .95rem !important;
  }

  /* INPUTS 100% + ALTURA MÍNIMA (visíveis e sem quebrar) */
  .form-group input{
    display: block !important;
    width: 100% !important;
    min-height: 48px !important;           /* altura confortável */
    padding: .75rem .85rem !important;
    border: 2px solid var(--color-border) !important;
    border-radius: .6rem !important;
    background: #fff !important;
    color: var(--color-black) !important;
    font-size: 16px !important;            /* evita zoom no iOS */
    box-sizing: border-box !important;
  }

  /* foco visível, sem “pular” */
  .form-group input:focus{
    border-color: var(--color-primary) !important;
    box-shadow: 0 0 0 4px rgba(220,38,38,.12) !important;
    outline: none !important;
  }

  /* botão 100% da linha, sem desalinhamento */
  .form-submit-button{
    display: block !important;
    width: 100% !important;
    margin-top: .25rem !important;
    font-size: 1.05rem !important;
    padding: 1rem 1.25rem !important;
    border-radius: .75rem !important;
    box-sizing: border-box !important;
  }

  /* “Detalhes do evento” em coluna, sem divisor vertical */
  .form-section .form-event-details{
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: .75rem !important;
    padding: .9rem 1rem !important;
    margin-top: 1rem !important;
  }
  .form-section .event-detail-item{
    padding-right: 0 !important;
  }
  .form-section .event-detail-item:not(:last-child)::after{
    display: none !important;
  }
}
/* === Campos com CARTÃO visível (todas as telas) === */
.form-section .form-group{
  background: #f6f7f9 !important;              /* preenchimento claro */
  border: 2px solid #e3e6ea !important;        /* borda mais visível */
  border-radius: .75rem !important;
  padding: .8rem 1rem !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.6),
              0 1px 2px rgba(0,0,0,.04) !important;  /* leve relevo */
}

/* label acima, com contraste */
.form-section .form-group label{
  color: var(--color-gray-dark) !important;
  font-weight: 600 !important;
  margin-bottom: .4rem !important;
}

/* input sem borda própria (usa a da .form-group) e com boa legibilidade */
.form-section .form-group input{
  background: transparent !important;
  border: 0 !important;
  outline: none !important;
  width: 100% !important;
  min-height: 48px !important;
  padding: .55rem 0 !important;
  color: var(--color-black) !important;
  font-size: 16px !important;                  /* evita zoom no iOS */
}

/* placeholder com contraste melhor */
.form-section .form-group input::placeholder{
  color: #8b93a1 !important;
}

/* foco: destaca o cartão completo */
.form-section .form-group:focus-within{
  border-color: var(--color-primary) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.6),
              0 0 0 4px rgba(220,38,38,.12) !important;
  background: #fff !important;                 /* no foco fica mais claro */
}

/* Hover (desktop): sutil, sem “pular” */
@media (hover:hover){
  .form-section .form-group:hover{
    border-color: #d7dbe0 !important;
  }
}

/* Ajuste mobile: mantém largura total confortável */
@media (max-width: 640px){
  .form-section .form-container{
    padding: 1.25rem 1rem !important;
  }
  .form-section .form-group{
    margin-bottom: .9rem !important;
  }
}
/* ===== About (Fala Galera) – desktop ===== */
#about-kenji .about-container{
  display: grid;
  grid-template-columns: 1fr 1.2fr;   /* foto | texto */
  grid-template-areas: "photo text";
  gap: 40px;
  align-items: center;
}

#about-kenji .about-photo{ grid-area: photo; }
#about-kenji .about-text { grid-area: text; }

/* ===== Tablet/Celular: empilha FOTO em cima e TEXTO embaixo ===== */
@media (max-width: 1024px){
  #about-kenji .about-container{
    grid-template-columns: 1fr !important;      /* uma coluna */
    grid-template-areas: "photo" "text";        /* ordem desejada */
    gap: 24px;
  }

  #about-kenji .about-photo{
    justify-self: center;                       /* centraliza a imagem */
    max-width: 560px;                           /* evita ficar gigante */
    width: 100%;
  }

  #about-kenji .about-text{
    padding-top: 4px;                           /* respiro entre foto e texto */
  }
}

/* (Opcional) telas bem pequenas */
@media (max-width: 480px){
  #about-kenji .about-container{ gap: 18px; }
}
html, body {
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: hidden;
  width: 100%;
}

body > * {
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
}

.elementor-section {
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.elementor-container,
.elementor-column {
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box;
}
html, body {
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: hidden;
  width: 100%;
}

body > * {
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
}

.elementor-section {
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.elementor-container,
.elementor-column {
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box;
}/* End custom CSS */