/* ===== RESET ===== */ * { margin: 0; padding: 0; box-sizing: border-box; } html { scroll-behavior: smooth; } body { font-family: 'Satoshi', sans-serif; background: #fff; color: #1A1A1A; line-height: 1.6; font-size: 1rem; overflow-x: hidden; } a { text-decoration: none; color: inherit; } ul { list-style: none; } img { max-width: 100%; display: block; } /* ===== VARIÁVEIS ===== */ :root { --primary: #1A1A1A; --accent: #A57865; --bg-light: #F9F9F9; --white: #fff; --text-light: #666; --radius: 12px; --shadow-sm: 0 2px 6px rgba(0, 0, 0, .06); --shadow-md: 0 12px 30px rgba(0, 0, 0, .12); --h1: 3.5rem; --h2: 2.2rem; --h3: 1.3rem; } /* ===== BASE ===== */ .container { max-width: 1200px; margin: auto; padding: 0 1.5rem; } .section { padding: 6rem 0; position: relative; } .section__title { font-family: 'Sora', sans-serif; font-size: var(--h2); font-weight: 700; text-align: center; margin-bottom: 1rem; } .section__subtitle { font-size: 1rem; font-family: 'Satoshi', sans-serif; color: var(--text-light); text-align: center; max-width: 680px; margin: 0 auto 2rem; } /* ===== ANIMAÇÃO SCROLL REVEAL ===== */ .reveal { opacity: 0; transform: translateY(60px) scale(0.98); transition: all 1.1s cubic-bezier(.25, .8, .25, 1); } .reveal.show { opacity: 1; transform: translateY(0) scale(1); } /* ===== HEADER BASE ===== */ .header { position: fixed; top: 0; left: 0; width: 100%; background: rgba(255,255,255,0.9); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(0,0,0,0.05); z-index: 1000; transition: all .4s ease; } .nav { height: 72px; display: flex; justify-content: space-between; align-items: center; } .nav__logo-img { height: 72px; width: auto; object-fit: contain; transition: transform .3s ease; } .nav__logo-img:hover { transform: scale(1.05); } /* ===== NAV LINKS ===== */ .nav__list { display: flex; align-items: center; gap: 2rem; } .nav__link { position: relative; font-weight: 500; color: #1A1A1A; transition: color .3s ease; } .nav__link::after { content: ""; position: absolute; left: 0; bottom: -4px; width: 0; height: 2px; background: #A57865; transition: width .3s ease; } .nav__link:hover { color: #A57865; } .nav__link:hover::after { width: 100%; } /* ===== CTA ===== */ .nav__cta { background: #1A1A1A; color: #fff !important; border-radius: 8px; padding: .6rem 1rem; transition: .3s ease; } .nav__cta:hover { background: #A57865; transform: translateY(-2px); } /* ===== STICKY EFFECT ===== */ .header.scrolled { background: rgba(255,255,255,0.85); box-shadow: 0 4px 25px rgba(0,0,0,0.05); height: 65px; backdrop-filter: blur(14px); } /* ===== MOBILE MENU ===== */ .nav__toggle, .nav__close { background: none; border: none; cursor: pointer; font-size: 1.8rem; display: none; } @media (max-width: 900px) { .nav__toggle { display: block; } .nav__menu { position: fixed; top: 0; right: -100%; width: 80%; max-width: 340px; height: 100vh; background: #fff; box-shadow: -4px 0 20px rgba(0,0,0,0.1); display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: 4rem 2rem; gap: 2rem; transition: right 0.4s ease; } .nav__menu.active { right: 0; } .nav__list { flex-direction: column; align-items: flex-start; gap: 1.5rem; } .nav__close { display: block; position: absolute; top: 1.5rem; right: 1.5rem; font-size: 2rem; color: #1A1A1A; } } /* ===== HERO ===== */ .hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, #fff, #f9f9f9); padding-top: 6rem; text-align: center; } .hero__title { font-family: 'Sora', sans-serif; font-size: var(--h1); font-weight: 700; margin-bottom: 1rem; line-height: 1.2; } .hero__title-line--accent { color: var(--accent); } .hero__subtitle { font-family: 'Satoshi', sans-serif; font-size: 1.1rem; color: var(--text-light); margin-bottom: 2rem; } .hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; } /* ===== BOTÕES ===== */ .btn { padding: .9rem 1.6rem; border-radius: var(--radius); font-weight: 500; border: 2px solid transparent; cursor: pointer; transition: .3s; font-family: 'Satoshi', sans-serif; } .btn--primary { background: var(--primary); color: #fff; } .btn--primary:hover { background: var(--accent); } .btn--outline { border: 2px solid var(--primary); color: var(--primary); } .btn--outline:hover { background: var(--primary); color: #fff; } .btn--full { width: 100%; } /* ====================== SEÇÃO SOLUÇÃO ====================== */ .solucao-section { background: #fdfbfa; border-radius: 48px; padding: 6rem 0 8rem; position: relative; overflow: hidden; } .solucao__content { text-align: center; max-width: 980px; } .solucao__title { font-family: 'Sora', sans-serif; font-size: 2rem; font-weight: 600; color: var(--primary); line-height: 1.4; margin-bottom: 4rem; } .solucao__title strong { color: var(--accent); font-weight: 700; } .solucao__cards { display: flex; justify-content: center; flex-wrap: wrap; gap: 2rem; } .solucao__card { background: #fff; border-radius: 36px; padding: 2rem; width: 280px; box-shadow: 0 6px 25px rgba(0, 0, 0, 0.06); transition: all 0.4s ease; } .solucao__card:hover { transform: translateY(-6px); box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08); } .solucao__icon { background: var(--accent); border-radius: 12px; width: 60px; height: 60px; margin: 0 auto 1.2rem; display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; } .solucao__card:hover .solucao__icon { transform: scale(1.1); } .solucao__icon img { width: 30px; height: 30px; filter: brightness(0) invert(1); } .solucao__card p { font-family: 'Satoshi', sans-serif; font-size: 1rem; color: var(--primary); line-height: 1.5; } .solucao__card strong { color: var(--accent); font-weight: 700; } /* Animações de entrada */ .anim { opacity: 0; transform: translateY(40px); transition: all 0.9s cubic-bezier(.25,.8,.25,1); } .show .anim { opacity: 1; transform: translateY(0); } .anim-delay-1 { transition-delay: 0.1s; } .anim-delay-2 { transition-delay: 0.25s; } .anim-delay-3 { transition-delay: 0.4s; } .anim-delay-4 { transition-delay: 0.55s; } @media (max-width: 768px) { .solucao__title { font-size: 1.5rem; margin-bottom: 2.5rem; } .solucao__cards { flex-direction: column; gap: 1.5rem; } .solucao__card { width: 100%; } } /* ===== SOBRE MIM ===== */ #sobre { background: var(--bg-light); overflow: hidden; } .sobre__grid { display: grid; grid-template-columns: 1fr 1.2fr; align-items: center; gap: 4rem; } .sobre__image { display: flex; justify-content: center; align-items: center; } .sobre__img-wrapper { position: relative; width: 100%; max-width: 420px; aspect-ratio: 1 / 1; border-radius: 50%; overflow: hidden; background: radial-gradient(circle at center, #fff, #f3f3f3); box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1); } .sobre__img-wrapper::before { content: ""; position: absolute; inset: 0; border-radius: 50%; border: 3px solid var(--accent); opacity: 0.6; } .sobre__img-wrapper img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(10%); transition: filter .4s ease, transform .4s ease; } .sobre__img-wrapper:hover img { filter: grayscale(0%); transform: scale(1.03); } .sobre__content .section__title, .sobre__content .section__subtitle { text-align: left; } .sobre__blocos { display: flex; flex-direction: column; gap: 2rem; } .sobre__bloco h3 { font-family: 'Sora', sans-serif; font-size: 1.15rem; font-weight: 600; color: var(--accent); margin-bottom: 0.4rem; } .sobre__bloco p { color: var(--text-light); line-height: 1.7; max-width: 600px; } .sobre__cta { margin-top: 3rem; font-weight: 600; padding: 1rem 2rem; border-radius: 50px; border: 2px solid var(--primary); transition: all 0.3s ease; } .sobre__cta:hover { background: var(--primary); color: #fff; } @media (max-width: 992px) { .sobre__grid { grid-template-columns: 1fr; text-align: center; } .sobre__content .section__title, .sobre__content .section__subtitle { text-align: center; margin: 0 auto 2rem; } .sobre__cta { margin: 2rem auto 0; } .sobre__img-wrapper { max-width: 300px; } } /* Mantém o estilo dos cards anteriores */ .new-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; margin-top: 3rem; } .plan-card { background: #fff; border-radius: 28px; padding: 2.5rem; box-shadow: 0 12px 40px rgba(0,0,0,.08); transition: all 0.4s ease; position: relative; overflow: hidden; } .plan-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 20px 60px rgba(0,0,0,.1); } /* ===== Animações internas ===== */ .anim { opacity: 0; transform: translateY(40px); transition: all 0.7s cubic-bezier(.25,.8,.25,1); } .plan-card.show .anim { opacity: 1; transform: translateY(0); } .anim-delay-1 { transition-delay: .1s; } .anim-delay-2 { transition-delay: .25s; } .anim-delay-3 { transition-delay: .4s; } .anim-delay-4 { transition-delay: .55s; } .anim-delay-5 { transition-delay: .7s; } /* ===== Visual ===== */ .plan-badge { background: #f3e5e0; color: var(--accent); font-weight: 600; font-size: 0.85rem; padding: 0.4rem 0.8rem; border-radius: 999px; display: inline-block; margin-bottom: 1rem; } .plan-badge.highlight { background: #eaf7ed; color: #1f7a42; } .plan-badges { display: flex; gap: .6rem; margin-bottom: 1rem; } .plan-title { font-family: 'Sora', sans-serif; font-size: 1.4rem; font-weight: 700; color: var(--primary); margin-bottom: .8rem; } .plan-desc { color: var(--text-light); line-height: 1.6; margin-bottom: 1.5rem; } .plan-price { font-family: 'Sora'; font-size: 1.8rem; color: var(--primary); margin-bottom: 1.8rem; display: flex; align-items: baseline; gap: .3rem; } .plan-price span { font-size: 1rem; color: var(--text-light); } .plan-btn { background: linear-gradient(90deg, var(--accent), #c49380); color: #fff; font-weight: 600; font-size: 0.95rem; padding: 0.9rem 1.6rem; border: none; border-radius: 999px; cursor: pointer; transition: all .3s ease; } .plan-btn:hover { transform: translateY(-3px); background: linear-gradient(90deg, #c49380, var(--accent)); } /* Destaque */ .plan-card.destaque { background: linear-gradient(145deg, #fff 0%, #f9f5f3 100%); border: 2px solid rgba(165,120,101,.25); } /* ====================== POR QUE CRIAR CONTEÚDO ====================== */ .conteudo-section { background: #fff; padding: 8rem 0; position: relative; overflow: hidden; } /* GRID BASE */ .conteudo__grid { display: grid; grid-template-columns: 1.2fr 1fr; align-items: start; gap: 4rem; position: relative; z-index: 2; } /* COLUNA DE TEXTO */ .conteudo__headline { font-size: 2.8rem; line-height: 1.2; font-weight: 700; color: #1A1A1A; margin-bottom: 1.5rem; opacity: 0; transform: translateY(40px); animation: fadeInUp 1s ease forwards; animation-delay: 0.2s; } .conteudo__headline .accent { color: #A57865; } .conteudo__subhead { font-size: 1.25rem; line-height: 1.5; color: #333; font-weight: 500; margin-bottom: 1.5rem; opacity: 0; transform: translateY(40px); animation: fadeInUp 1s ease forwards; animation-delay: 0.4s; } .conteudo__paragraph { font-size: 1rem; color: #555; line-height: 1.7; max-width: 520px; opacity: 0; transform: translateY(40px); animation: fadeInUp 1s ease forwards; animation-delay: 0.6s; } /* COLUNA DE CARDS */ .conteudo__cards { display: grid; grid-template-columns: 1fr; gap: 1.5rem; position: relative; } /* CARD INDIVIDUAL */ .conteudo__card { background: #fdfdfd; border: 1px solid rgba(0,0,0,0.05); border-radius: 16px; padding: 1.8rem; box-shadow: 0 6px 25px rgba(0,0,0,0.04); transition: all .5s cubic-bezier(.25,.8,.25,1); opacity: 0; transform: translateX(80px); animation: fadeInRight 1s ease forwards; } .conteudo__card:nth-child(1) { animation-delay: 0.5s; } .conteudo__card:nth-child(2) { animation-delay: 0.7s; } .conteudo__card:nth-child(3) { animation-delay: 0.9s; } .conteudo__card:hover { transform: translateY(-6px); box-shadow: 0 12px 35px rgba(0,0,0,0.08); } /* ICONES E TEXTOS DOS CARDS */ .conteudo__icon { width: 42px; height: 42px; margin-bottom: 1rem; opacity: 0.9; transform: scale(0.95); transition: transform .3s ease, opacity .3s ease; } .conteudo__card:hover .conteudo__icon { transform: scale(1.05); opacity: 1; } .conteudo__card h3 { font-size: 1.15rem; margin-bottom: .5rem; color: #1A1A1A; font-weight: 600; } .conteudo__card p { color: #555; font-size: 0.95rem; line-height: 1.6; } /* ====================== ANIMAÇÕES DE ENTRADA E SAÍDA ====================== */ @keyframes fadeInUp { 0% { opacity: 0; transform: translateY(40px); } 60% { opacity: 1; transform: translateY(-5px); } 100% { opacity: 1; transform: translateY(0); } } @keyframes fadeInRight { 0% { opacity: 0; transform: translateX(80px); } 70% { opacity: 1; transform: translateX(-5px); } 100% { opacity: 1; transform: translateX(0); } } @keyframes fadeOutDown { 0% { opacity: 1; transform: translateY(0); } 100% { opacity: 0; transform: translateY(50px); } } /* SAÍDA (para quando quiser adicionar transição reversa) */ .conteudo-section.hide .conteudo__headline, .conteudo-section.hide .conteudo__subhead, .conteudo-section.hide .conteudo__paragraph, .conteudo-section.hide .conteudo__card { animation: fadeOutDown .8s ease forwards; } /* ====================== RESPONSIVIDADE ====================== */ @media (max-width: 1000px) { .conteudo__grid { grid-template-columns: 1fr; gap: 3rem; } .conteudo__headline { font-size: 2.2rem; } .conteudo__subhead { font-size: 1.1rem; } } /* ===== MEU PROCESSO CRIATIVO ===== */ .processo-section { background: #1A1A1A; color: #fff; padding: 8rem 0; position: relative; overflow: hidden; } .processo__content { text-align: center; } .processo-section .section__badge.light { background: rgba(255,255,255,0.08); color: #fff; } .processo-section .section__title.light { color: #fff; } .processo-section .section__subtitle.light { color: #ccc; } .processo__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-top: 3rem; } .processo__step { background: rgba(255,255,255,0.05); border-radius: 14px; padding: 2rem 1.5rem; transition: transform .4s ease, background .4s ease; } .processo__step:hover { transform: translateY(-6px); background: rgba(255,255,255,0.1); } .processo__icon { width: 40px; height: 40px; margin-bottom: 1rem; opacity: 0.9; } .processo__step h3 { font-size: 1.2rem; margin-bottom: .5rem; color: #fff; } .processo__step p { color: #ddd; font-size: 0.95rem; line-height: 1.6; } /* ===== RESPONSIVO ===== */ @media (max-width: 900px) { .section__title { font-size: 1.9rem; } .conteudo__cards, .processo__grid { grid-template-columns: 1fr; } } /* ====================== SEÇÃO DEPOIMENTOS ====================== */ .depoimentos-section { background: #ffffff; padding: 6rem 0 7rem; } .depoimentos__content { text-align: center; max-width: 1100px; } .depoimentos__title { font-family: 'Sora', sans-serif; font-size: 2.3rem; font-weight: 700; color: var(--primary); margin-bottom: 0.5rem; } .depoimentos__subtitle { font-family: 'Satoshi', sans-serif; color: var(--text-light); font-size: 1.05rem; margin-bottom: 4rem; } .depoimentos__cards { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; } .depoimentos__card { background: #fff; border-radius: 24px; box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06); padding: 2.2rem; max-width: 460px; text-align: left; transition: all 0.4s ease; } .depoimentos__card:hover { transform: translateY(-6px); box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08); } .depoimentos__text { font-family: 'Satoshi', sans-serif; font-size: 1.05rem; color: var(--primary); line-height: 1.7; margin-bottom: 1.5rem; } .depoimentos__autor { font-family: 'Satoshi', sans-serif; font-style: italic; color: var(--text-light); display: block; margin-bottom: 1.5rem; } /* Player de áudio */ .depoimentos__audio { width: 100%; height: 40px; border-radius: 12px; background: #f7f7f7; outline: none; } .depoimentos__audio::-webkit-media-controls-panel { background-color: #f7f7f7; border-radius: 12px; } .depoimentos__audio::-webkit-media-controls-play-button { filter: invert(45%) sepia(12%) saturate(500%) hue-rotate(330deg); } .depoimentos__audio::-webkit-media-controls-current-time-display, .depoimentos__audio::-webkit-media-controls-time-remaining-display { color: #333; } /* Animações */ .anim { opacity: 0; transform: translateY(40px); transition: all 0.9s cubic-bezier(.25,.8,.25,1); } .show .anim { opacity: 1; transform: translateY(0); } .anim-delay-1 { transition-delay: 0.1s; } .anim-delay-2 { transition-delay: 0.25s; } .anim-delay-3 { transition-delay: 0.4s; } .anim-delay-4 { transition-delay: 0.55s; } @media (max-width: 768px) { .depoimentos__title { font-size: 1.8rem; } .depoimentos__card { width: 100%; max-width: none; } } /* ===== FAQ SECTION ===== */ .faq-section { background: #fff; padding: 8rem 0; position: relative; } .faq__grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 4rem; align-items: start; } .faq__left h2 { font-size: 2.2rem; margin-bottom: 2rem; color: #1A1A1A; } .faq__item { border-bottom: 1px solid rgba(0,0,0,0.08); margin-bottom: 1rem; overflow: hidden; } .faq__question { width: 100%; background: none; border: none; outline: none; text-align: left; font-weight: 600; font-family: 'Sora', sans-serif; color: #1A1A1A; font-size: 1.05rem; padding: 1.2rem 0; cursor: pointer; position: relative; transition: color .3s ease; } .faq__question::after { content: '+'; position: absolute; right: 0; top: 50%; transform: translateY(-50%); font-size: 1.4rem; color: #A57865; transition: transform .4s ease; } .faq__item.active .faq__question::after { transform: translateY(-50%) rotate(45deg); } .faq__answer { max-height: 0; overflow: hidden; transition: max-height .5s ease, opacity .5s ease; opacity: 0; } .faq__item.active .faq__answer { max-height: 300px; opacity: 1; } .faq__answer p { color: #555; font-size: 0.95rem; padding: 0 0 1.2rem 0; } /* ===== FORM ===== */ .faq__right { background: rgba(255,255,255,0.7); backdrop-filter: blur(12px); border-radius: 16px; padding: 2.5rem; box-shadow: 0 8px 30px rgba(0,0,0,0.05); animation: fadeUp 1s ease; } .faq__cta-title { font-size: 1.5rem; margin-bottom: .3rem; color: #1A1A1A; } .faq__cta-subtitle { font-size: 1rem; margin-bottom: 1.5rem; color: #555; } .faq__form { display: flex; flex-direction: column; gap: 1rem; } .faq__form textarea { width: 100%; min-height: 150px; border: 1px solid #ddd; border-radius: 10px; padding: 1rem; font-size: 1rem; resize: vertical; font-family: 'Satoshi', sans-serif; transition: border .3s ease, box-shadow .3s ease; } .faq__form textarea:focus { border-color: #A57865; box-shadow: 0 0 0 3px rgba(165,120,101,0.15); outline: none; } /* Responsivo */ @media (max-width: 900px) { .faq__grid { grid-template-columns: 1fr; gap: 3rem; } } /* ====================== FOOTER ====================== */ .footer { background: #1a1a1a; color: #f5f5f5; padding: 5rem 0 2.5rem; position: relative; } .footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; align-items: start; margin-bottom: 3rem; } .footer__logo { width: 72px; margin-bottom: 1.6rem; } .footer__desc { font-family: 'Satoshi', sans-serif; font-size: 1rem; color: #d2d2d2; line-height: 1.7; max-width: 300px; } .footer__title { font-family: 'Sora', sans-serif; font-weight: 600; margin-bottom: 1.5rem; font-size: 1.1rem; color: #f5f5f5; } .footer__links li, .footer__contact li { margin-bottom: 0.7rem; } .footer__links a, .footer__contact a { color: #cfcfcf; text-decoration: none; font-family: 'Satoshi', sans-serif; transition: all 0.3s ease; } .footer__links a:hover, .footer__contact a:hover { color: #A57865; } .footer__social { display: flex; gap: 0.8rem; margin-top: 1rem; } .footer__social img { width: 26px; height: 26px; filter: brightness(0) invert(1); transition: all 0.3s ease; } .footer__social img:hover { transform: scale(1.15); filter: brightness(0) invert(0.8) sepia(1) hue-rotate(320deg); } /* Bottom line */ .footer__bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; } .footer__bottom p { font-family: 'Satoshi', sans-serif; font-size: 0.9rem; color: #bcbcbc; } .footer__backtop { display: flex; align-items: center; gap: 0.5rem; color: #fff; font-family: 'Satoshi', sans-serif; text-decoration: none; font-size: 0.9rem; transition: all 0.3s ease; } .footer__backtop:hover { transform: translateY(-3px); color: #A57865; } /* Responsivo */ @media (max-width: 950px) { .footer__grid { grid-template-columns: 1fr; gap: 2.5rem; } .footer__bottom { flex-direction: column; gap: 1rem; text-align: center; } } /* ===== CARRINHO ===== */ .cart__overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,.5); opacity: 0; visibility: hidden; transition: .3s; z-index: 900; } .cart__overlay.show { opacity: 1; visibility: visible; } .cart__popup { position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%) scale(.8); width: 90%; max-width: 500px; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-md); opacity: 0; visibility: hidden; transition: .3s; z-index: 1000; display: flex; flex-direction: column; } .cart__popup.show { opacity: 1; visibility: visible; transform: translate(-50%, -50%) scale(1); } /* ===== RESPONSIVO ===== */ @media(max-width:768px){ .nav__menu { position: fixed; top: 0; right: -100%; width: 70%; height: 100%; background: #fff; flex-direction: column; gap: 2rem; padding: 5rem 2rem; transition: .3s; } .nav__menu.show-menu { right: 0; } .nav__toggle, .nav__close { display: block; } .hero { padding-top: 7rem; } }/* ===== RESET ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Satoshi', sans-serif;
  background: #fff;
  color: #1A1A1A;
  line-height: 1.6;
  font-size: 1rem;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ===== VARIÁVEIS ===== */
:root {
  --primary: #1A1A1A;
  --accent: #A57865;
  --bg-light: #F9F9F9;
  --white: #fff;
  --text-light: #666;
  --radius: 12px;
  --shadow-sm: 0 2px 6px rgba(0, 0, 0, .06);
  --shadow-md: 0 12px 30px rgba(0, 0, 0, .12);
  --h1: 3.5rem;
  --h2: 2.2rem;
  --h3: 1.3rem;
}

/* ===== BASE ===== */
.container { max-width: 1200px; margin: auto; padding: 0 1.5rem; }
.section { padding: 6rem 0; position: relative; }
.section__title {
  font-family: 'Sora', sans-serif;
  font-size: var(--h2);
  font-weight: 700;
  text-align: center;
  margin-bottom: 1rem;
}
.section__subtitle {
  font-size: 1rem;
  font-family: 'Satoshi', sans-serif;
  color: var(--text-light);
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2rem;
}

/* ===== ANIMAÇÃO SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(60px) scale(0.98);
  transition: all 1.1s cubic-bezier(.25, .8, .25, 1);
}
.reveal.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ===== HEADER BASE ===== */
.header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  z-index: 1000;
  transition: all .4s ease;
}

.nav {
  height: 72px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo-img {
  height: 72px;
  width: auto;
  object-fit: contain;
  transition: transform .3s ease;
}
.nav__logo-img:hover { transform: scale(1.05); }

/* ===== NAV LINKS ===== */
.nav__list {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__link {
  position: relative;
  font-weight: 500;
  color: #1A1A1A;
  transition: color .3s ease;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: #A57865;
  transition: width .3s ease;
}
.nav__link:hover { color: #A57865; }
.nav__link:hover::after { width: 100%; }

/* ===== CTA ===== */
.nav__cta {
  background: #1A1A1A;
  color: #fff !important;
  border-radius: 8px;
  padding: .6rem 1rem;
  transition: .3s ease;
}
.nav__cta:hover {
  background: #A57865;
  transform: translateY(-2px);
}

/* ===== STICKY EFFECT ===== */
.header.scrolled {
  background: rgba(255,255,255,0.85);
  box-shadow: 0 4px 25px rgba(0,0,0,0.05);
  height: 65px;
  backdrop-filter: blur(14px);
}

/* ===== MOBILE MENU ===== */
.nav__toggle,
.nav__close {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.8rem;
  display: none;
}

@media (max-width: 900px) {
  .nav__toggle { display: block; }

  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 340px;
    height: 100vh;
    background: #fff;
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 4rem 2rem;
    gap: 2rem;
    transition: right 0.4s ease;
  }
  .nav__menu.active { right: 0; }

  .nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .nav__close {
    display: block;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2rem;
    color: #1A1A1A;
  }
}


/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fff, #f9f9f9);
  padding-top: 6rem;
  text-align: center;
}
.hero__title {
  font-family: 'Sora', sans-serif;
  font-size: var(--h1);
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.hero__title-line--accent { color: var(--accent); }
.hero__subtitle {
  font-family: 'Satoshi', sans-serif;
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}
.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
/* ====================== FAIXA LOOP ÚNICA ====================== */
.loop-banner {
  position: relative;
  overflow: hidden;
  background: transparent;
  height: 65px;
}

/* Faixa mocha */
.loop-row {
  position: absolute;
  top: 0;
  left: -5%;
  width: 110%;
  height: 65px;
  background: #A57865;
  clip-path: polygon(0 10%, 100% 0%, 100% 90%, 0% 100%);
  display: flex;
  align-items: center;
  z-index: 1;
}

/* Texto em movimento */
.loop-track {
  display: flex;
  gap: 2.5rem;
  white-space: nowrap;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: #F5F5F5;
  text-transform: capitalize;
  letter-spacing: 0.3px;
  animation: moveLeft 35s linear infinite;
}

@keyframes moveLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Interação */
.loop-track span {
  display: inline-block;
  transition: opacity .3s ease, transform .3s ease;
}
.loop-track span:hover {
  opacity: 1;
  transform: translateY(-2px);
}

/* Gradientes laterais */
.loop-banner::before,
.loop-banner::after {
  content: "";
  position: absolute;
  top: 0;
  width: 10%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.loop-banner::before {
  left: 0;
  background: linear-gradient(90deg, #fff 0%, transparent 100%);
}
.loop-banner::after {
  right: 0;
  background: linear-gradient(-90deg, #fff 0%, transparent 100%);
}

/* Responsivo */
@media (max-width: 768px) {
  .loop-banner { height: 55px; }
  .loop-row { height: 55px; }
  .loop-track { font-size: 0.9rem; gap: 1.5rem; animation-duration: 28s; }
}

/* ===== BOTÕES ===== */
.btn {
  padding: .9rem 1.6rem;
  border-radius: var(--radius);
  font-weight: 500;
  border: 2px solid transparent;
  cursor: pointer;
  transition: .3s;
  font-family: 'Satoshi', sans-serif;
}
.btn--primary { background: var(--primary); color: #fff; }
.btn--primary:hover { background: var(--accent); }
.btn--outline { border: 2px solid var(--primary); color: var(--primary); }
.btn--outline:hover { background: var(--primary); color: #fff; }
.btn--full { width: 100%; }

/* ====================== SEÇÃO SOLUÇÃO ====================== */
.solucao-section {
  background: #fdfbfa;
  border-radius: 48px;
  padding: 6rem 0 8rem;
  position: relative;
  overflow: hidden;
}

.solucao__content {
  text-align: center;
  max-width: 980px;
}

.solucao__title {
  font-family: 'Sora', sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.4;
  margin-bottom: 4rem;
}
.solucao__title strong {
  color: var(--accent);
  font-weight: 700;
}

.solucao__cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.solucao__card {
  background: #fff;
  border-radius: 36px;
  padding: 2rem;
  width: 280px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.06);
  transition: all 0.4s ease;
}
.solucao__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
}

.solucao__icon {
  background: var(--accent);
  border-radius: 12px;
  width: 60px;
  height: 60px;
  margin: 0 auto 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.solucao__card:hover .solucao__icon {
  transform: scale(1.1);
}

.solucao__icon img {
  width: 30px;
  height: 30px;
  filter: brightness(0) invert(1);
}

.solucao__card p {
  font-family: 'Satoshi', sans-serif;
  font-size: 1rem;
  color: var(--primary);
  line-height: 1.5;
}
.solucao__card strong {
  color: var(--accent);
  font-weight: 700;
}

/* Animações de entrada */
.anim {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s cubic-bezier(.25,.8,.25,1);
}
.show .anim {
  opacity: 1;
  transform: translateY(0);
}
.anim-delay-1 { transition-delay: 0.1s; }
.anim-delay-2 { transition-delay: 0.25s; }
.anim-delay-3 { transition-delay: 0.4s; }
.anim-delay-4 { transition-delay: 0.55s; }

@media (max-width: 768px) {
  .solucao__title { font-size: 1.5rem; margin-bottom: 2.5rem; }
  .solucao__cards { flex-direction: column; gap: 1.5rem; }
  .solucao__card { width: 100%; }
}

/* ===== SOBRE MIM ===== */
#sobre {
  background: var(--bg-light);
  overflow: hidden;
}
.sobre__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  gap: 4rem;
}
.sobre__image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.sobre__img-wrapper {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  background: radial-gradient(circle at center, #fff, #f3f3f3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}
.sobre__img-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid var(--accent);
  opacity: 0.6;
}
.sobre__img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(10%);
  transition: filter .4s ease, transform .4s ease;
}
.sobre__img-wrapper:hover img {
  filter: grayscale(0%);
  transform: scale(1.03);
}
.sobre__content .section__title,
.sobre__content .section__subtitle { text-align: left; }
.sobre__blocos {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.sobre__bloco h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.4rem;
}
.sobre__bloco p {
  color: var(--text-light);
  line-height: 1.7;
  max-width: 600px;
}
.sobre__cta {
  margin-top: 3rem;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 50px;
  border: 2px solid var(--primary);
  transition: all 0.3s ease;
}
.sobre__cta:hover {
  background: var(--primary);
  color: #fff;
}
@media (max-width: 992px) {
  .sobre__grid { grid-template-columns: 1fr; text-align: center; }
  .sobre__content .section__title, .sobre__content .section__subtitle {
    text-align: center; margin: 0 auto 2rem;
  }
  .sobre__cta { margin: 2rem auto 0; }
  .sobre__img-wrapper { max-width: 300px; }
}

/* Mantém o estilo dos cards anteriores */
.new-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.plan-card {
  background: #fff;
  border-radius: 28px;
  padding: 2.5rem;
  box-shadow: 0 12px 40px rgba(0,0,0,.08);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.plan-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0,0,0,.1);
}

/* ===== Animações internas ===== */
.anim {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s cubic-bezier(.25,.8,.25,1);
}
.plan-card.show .anim {
  opacity: 1;
  transform: translateY(0);
}
.anim-delay-1 { transition-delay: .1s; }
.anim-delay-2 { transition-delay: .25s; }
.anim-delay-3 { transition-delay: .4s; }
.anim-delay-4 { transition-delay: .55s; }
.anim-delay-5 { transition-delay: .7s; }

/* ===== Visual ===== */
.plan-badge {
  background: #f3e5e0;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 1rem;
}

.plan-badge.highlight {
  background: #eaf7ed;
  color: #1f7a42;
}

.plan-badges { display: flex; gap: .6rem; margin-bottom: 1rem; }
.plan-title { font-family: 'Sora', sans-serif; font-size: 1.4rem; font-weight: 700; color: var(--primary); margin-bottom: .8rem; }
.plan-desc { color: var(--text-light); line-height: 1.6; margin-bottom: 1.5rem; }
.plan-price { font-family: 'Sora'; font-size: 1.8rem; color: var(--primary); margin-bottom: 1.8rem; display: flex; align-items: baseline; gap: .3rem; }
.plan-price span { font-size: 1rem; color: var(--text-light); }

.plan-btn {
  background: linear-gradient(90deg, var(--accent), #c49380);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.9rem 1.6rem;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: all .3s ease;
}
.plan-btn:hover {
  transform: translateY(-3px);
  background: linear-gradient(90deg, #c49380, var(--accent));
}

/* Destaque */
.plan-card.destaque {
  background: linear-gradient(145deg, #fff 0%, #f9f5f3 100%);
  border: 2px solid rgba(165,120,101,.25);
}
/* ====================== POR QUE CRIAR CONTEÚDO ====================== */
.conteudo-section {
  background: #fff;
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

/* GRID BASE */
.conteudo__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: start;
  gap: 4rem;
  position: relative;
  z-index: 2;
}

/* COLUNA DE TEXTO */
.conteudo__headline {
  font-size: 2.8rem;
  line-height: 1.2;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.2s;
}
.conteudo__headline .accent {
  color: #A57865;
}

.conteudo__subhead {
  font-size: 1.25rem;
  line-height: 1.5;
  color: #333;
  font-weight: 500;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.4s;
}

.conteudo__paragraph {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  max-width: 520px;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.6s;
}

/* COLUNA DE CARDS */
.conteudo__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  position: relative;
}

/* CARD INDIVIDUAL */
.conteudo__card {
  background: #fdfdfd;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 16px;
  padding: 1.8rem;
  box-shadow: 0 6px 25px rgba(0,0,0,0.04);
  transition: all .5s cubic-bezier(.25,.8,.25,1);
  opacity: 0;
  transform: translateX(80px);
  animation: fadeInRight 1s ease forwards;
}
.conteudo__card:nth-child(1) { animation-delay: 0.5s; }
.conteudo__card:nth-child(2) { animation-delay: 0.7s; }
.conteudo__card:nth-child(3) { animation-delay: 0.9s; }

.conteudo__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}

/* ICONES E TEXTOS DOS CARDS */
.conteudo__icon {
  width: 42px;
  height: 42px;
  margin-bottom: 1rem;
  opacity: 0.9;
  transform: scale(0.95);
  transition: transform .3s ease, opacity .3s ease;
}
.conteudo__card:hover .conteudo__icon {
  transform: scale(1.05);
  opacity: 1;
}
.conteudo__card h3 {
  font-size: 1.15rem;
  margin-bottom: .5rem;
  color: #1A1A1A;
  font-weight: 600;
}
.conteudo__card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ======================
   ANIMAÇÕES DE ENTRADA E SAÍDA
====================== */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(40px); }
  60% { opacity: 1; transform: translateY(-5px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
  0% { opacity: 0; transform: translateX(80px); }
  70% { opacity: 1; transform: translateX(-5px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes fadeOutDown {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(50px); }
}

/* SAÍDA (para quando quiser adicionar transição reversa) */
.conteudo-section.hide .conteudo__headline,
.conteudo-section.hide .conteudo__subhead,
.conteudo-section.hide .conteudo__paragraph,
.conteudo-section.hide .conteudo__card {
  animation: fadeOutDown .8s ease forwards;
}

/* ======================
   RESPONSIVIDADE
====================== */
@media (max-width: 1000px) {
  .conteudo__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .conteudo__headline {
    font-size: 2.2rem;
  }
  .conteudo__subhead {
    font-size: 1.1rem;
  }
}


/* ===== MEU PROCESSO CRIATIVO ===== */
.processo-section {
  background: #1A1A1A;
  color: #fff;
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.processo__content {
  text-align: center;
}

.processo-section .section__badge.light {
  background: rgba(255,255,255,0.08);
  color: #fff;
}

.processo-section .section__title.light {
  color: #fff;
}

.processo-section .section__subtitle.light {
  color: #ccc;
}

.processo__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.processo__step {
  background: rgba(255,255,255,0.05);
  border-radius: 14px;
  padding: 2rem 1.5rem;
  transition: transform .4s ease, background .4s ease;
}
.processo__step:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.1);
}
.processo__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
  opacity: 0.9;
}
.processo__step h3 {
  font-size: 1.2rem;
  margin-bottom: .5rem;
  color: #fff;
}
.processo__step p {
  color: #ddd;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 900px) {
  .section__title { font-size: 1.9rem; }
  .conteudo__cards, .processo__grid { grid-template-columns: 1fr; }
}


/* ====================== SEÇÃO DEPOIMENTOS ====================== */
.depoimentos-section {
  background: #ffffff;
  padding: 6rem 0 7rem;
}

.depoimentos__content {
  text-align: center;
  max-width: 1100px;
}

.depoimentos__title {
  font-family: 'Sora', sans-serif;
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.depoimentos__subtitle {
  font-family: 'Satoshi', sans-serif;
  color: var(--text-light);
  font-size: 1.05rem;
  margin-bottom: 4rem;
}

.depoimentos__cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.depoimentos__card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  padding: 2.2rem;
  max-width: 460px;
  text-align: left;
  transition: all 0.4s ease;
}
.depoimentos__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.depoimentos__text {
  font-family: 'Satoshi', sans-serif;
  font-size: 1.05rem;
  color: var(--primary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.depoimentos__autor {
  font-family: 'Satoshi', sans-serif;
  font-style: italic;
  color: var(--text-light);
  display: block;
  margin-bottom: 1.5rem;
}

/* Player de áudio */
.depoimentos__audio {
  width: 100%;
  height: 40px;
  border-radius: 12px;
  background: #f7f7f7;
  outline: none;
}
.depoimentos__audio::-webkit-media-controls-panel {
  background-color: #f7f7f7;
  border-radius: 12px;
}
.depoimentos__audio::-webkit-media-controls-play-button {
  filter: invert(45%) sepia(12%) saturate(500%) hue-rotate(330deg);
}
.depoimentos__audio::-webkit-media-controls-current-time-display,
.depoimentos__audio::-webkit-media-controls-time-remaining-display {
  color: #333;
}

/* Animações */
.anim {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s cubic-bezier(.25,.8,.25,1);
}
.show .anim {
  opacity: 1;
  transform: translateY(0);
}
.anim-delay-1 { transition-delay: 0.1s; }
.anim-delay-2 { transition-delay: 0.25s; }
.anim-delay-3 { transition-delay: 0.4s; }
.anim-delay-4 { transition-delay: 0.55s; }

@media (max-width: 768px) {
  .depoimentos__title { font-size: 1.8rem; }
  .depoimentos__card { width: 100%; max-width: none; }
}



/* ===== FAQ SECTION ===== */
.faq-section {
  background: #fff;
  padding: 8rem 0;
  position: relative;
}

.faq__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: start;
}

.faq__left h2 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  color: #1A1A1A;
}

.faq__item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq__question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  text-align: left;
  font-weight: 600;
  font-family: 'Sora', sans-serif;
  color: #1A1A1A;
  font-size: 1.05rem;
  padding: 1.2rem 0;
  cursor: pointer;
  position: relative;
  transition: color .3s ease;
}

.faq__question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: #A57865;
  transition: transform .4s ease;
}

.faq__item.active .faq__question::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s ease, opacity .5s ease;
  opacity: 0;
}

.faq__item.active .faq__answer {
  max-height: 300px;
  opacity: 1;
}

.faq__answer p {
  color: #555;
  font-size: 0.95rem;
  padding: 0 0 1.2rem 0;
}

/* ===== FORM ===== */
.faq__right {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.05);
  animation: fadeUp 1s ease;
}

.faq__cta-title {
  font-size: 1.5rem;
  margin-bottom: .3rem;
  color: #1A1A1A;
}

.faq__cta-subtitle {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: #555;
}

.faq__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq__form textarea {
  width: 100%;
  min-height: 150px;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 1rem;
  font-size: 1rem;
  resize: vertical;
  font-family: 'Satoshi', sans-serif;
  transition: border .3s ease, box-shadow .3s ease;
}

.faq__form textarea:focus {
  border-color: #A57865;
  box-shadow: 0 0 0 3px rgba(165,120,101,0.15);
  outline: none;
}

/* Responsivo */
@media (max-width: 900px) {
  .faq__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}


/* ====================== FOOTER ====================== */
.footer {
  background: #1a1a1a;
  color: #f5f5f5;
  padding: 5rem 0 2.5rem;
  position: relative;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 3rem;
}

.footer__logo {
  width: 72px;
  margin-bottom: 1.6rem;
}

.footer__desc {
  font-family: 'Satoshi', sans-serif;
  font-size: 1rem;
  color: #d2d2d2;
  line-height: 1.7;
  max-width: 300px;
}

.footer__title {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  color: #f5f5f5;
}

.footer__links li,
.footer__contact li {
  margin-bottom: 0.7rem;
}

.footer__links a,
.footer__contact a {
  color: #cfcfcf;
  text-decoration: none;
  font-family: 'Satoshi', sans-serif;
  transition: all 0.3s ease;
}
.footer__links a:hover,
.footer__contact a:hover {
  color: #A57865;
}

.footer__social {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
}
.footer__social img {
  width: 26px;
  height: 26px;
  filter: brightness(0) invert(1);
  transition: all 0.3s ease;
}
.footer__social img:hover {
  transform: scale(1.15);
  filter: brightness(0) invert(0.8) sepia(1) hue-rotate(320deg);
}

/* Bottom line */
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer__bottom p {
  font-family: 'Satoshi', sans-serif;
  font-size: 0.9rem;
  color: #bcbcbc;
}

.footer__backtop {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-family: 'Satoshi', sans-serif;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.footer__backtop:hover {
  transform: translateY(-3px);
  color: #A57865;
}

/* Responsivo */
@media (max-width: 950px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .footer__bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}
/* ====================== HERO BRANDING ====================== */
.branding__hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 3rem;
}
.branding__hero-title {
  font-family: 'Sora';
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 1.2rem;
  color: var(--primary);
}
.branding__hero-subtitle {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 2rem;
}
.branding__hero-image img {
  width: 100%;
  max-width: 600px;
  filter: drop-shadow(0 10px 25px rgba(0,0,0,0.08));
  transition: transform .5s ease;
}
.branding__hero-image:hover img { transform: scale(1.03); }

/* ====================== MÉTODO ORBI ====================== */
.metodo-orbi {
  background: #fff;
  padding: 12rem 0; /* mais respiro */
  position: relative;
  overflow: visible; /* evita recortes no hover */
}

/* ===== HEADER ===== */
.metodo__header {
  text-align: center;
  margin-bottom: 8rem;
}

.metodo__tag {
  display: inline-block;
  background: rgba(165,120,101,0.1);
  color: #A57865;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.metodo__title {
  font-family: 'Sora', sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
  color: #1A1A1A;
  margin: 1.5rem 0 1rem;
}

.metodo__subtitle {
  color: #666;
  font-family: 'Satoshi', sans-serif;
  font-size: 1rem;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== TIMELINE ===== */
.metodo__timeline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  max-width: 1200px;
  margin: 10rem auto 0;
}

.metodo__timeline::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, rgba(165,120,101,0.15), rgba(165,120,101,0.05));
  transform: translateY(-50%);
  z-index: 0;
}

/* ===== STEP ===== */
.metodo__step {
  position: relative;
  z-index: 2;
  flex: 1;
  text-align: center;
}

/* Intercalação dos cards */
.metodo__step.top .metodo__card {
  bottom: 190%;
}
.metodo__step.bottom .metodo__card {
  top: 190%;
}

/* ===== CARD ===== */
.metodo__card {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 18px;
  padding: 2.2rem 2rem;
  width: 260px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.08);
  transition: all 0.45s ease;
  overflow: hidden;
}

.metodo__card h3 {
  font-family: 'Sora', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 0.6rem;
}

.metodo__card p {
  font-family: 'Satoshi', sans-serif;
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  opacity: 0;
  max-height: 0;
  transition: all 0.5s ease;
}

/* ===== INTERAÇÃO ===== */
.metodo__card:hover {
  transform: translateX(-50%) scale(1.07);
  border-color: #A57865;
  box-shadow: 0 20px 45px rgba(165,120,101,0.15);
  z-index: 5;
}

.metodo__card:hover p {
  opacity: 1;
  max-height: 200px;
  margin-top: 0.5rem;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 992px) {
  .metodo__timeline {
    flex-direction: column;
    gap: 6rem;
  }

  .metodo__timeline::before {
    width: 3px;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }

  .metodo__step.top .metodo__card,
  .metodo__step.bottom .metodo__card {
    position: relative;
    top: auto;
    bottom: auto;
    margin-top: 2rem;
  }

  .metodo__card {
    width: 90%;
  }
}


/* ====================== PLANOS DE BRANDING ====================== */
/* ====================== SERVIÇOS DE BRANDING ====================== */
.branding-plans {
  background: #F9F9F9;
  padding: 10rem 0;
  position: relative;
}

.branding__header {
  text-align: center;
  margin-bottom: 6rem;
}

.branding__title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  color: #1A1A1A;
  margin-bottom: 1rem;
}

.branding__subtitle {
  color: #555;
  font-family: 'Satoshi', sans-serif;
  font-size: 1rem;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== GRID ===== */
.branding__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  justify-content: center;
  align-items: stretch;
}

/* ===== CARD BASE ===== */
.branding__card {
  background: #fff;
  border-radius: 22px;
  padding: 3rem 2.2rem 2.8rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
  text-align: left;
  position: relative;
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.08);
}
.branding__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(165,120,101,0.15);
  border-color: #A57865;
}

/* ===== ICON ===== */
.branding__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(165,120,101,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.branding__icon img {
  width: 24px;
  height: 24px;
}

/* ===== PRICE ===== */
.branding__price {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  color: #1A1A1A;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
}

/* ===== CONTENT ===== */
.branding__name {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  color: #1A1A1A;
  font-size: 1.25rem;
  margin-bottom: 0.8rem;
}
.branding__desc {
  color: #555;
  font-family: 'Satoshi', sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.branding__list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}
.branding__list li {
  color: #333;
  font-family: 'Satoshi', sans-serif;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.2rem;
}
.branding__list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #A57865;
}

/* ===== BUTTON ===== */
.branding__btn {
  display: inline-block;
  text-align: center;
  background: #A57865;
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.9rem 1.6rem;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.branding__btn:hover {
  background: #1A1A1A;
}

/* ===== CARD MÉTODO ORBI ===== */
.branding__card--orbi {
  background: #1A1A1A;
  color: #fff;
  border: 2px solid #A57865;
  box-shadow: 0 18px 50px rgba(0,0,0,0.4);
}
.branding__card--orbi:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 70px rgba(0,0,0,0.6);
}
.branding__card--orbi .branding__icon {
  background: rgba(255,255,255,0.1);
}
.branding__card--orbi .branding__icon img {
  filter: brightness(0) invert(1);
}
.branding__card--orbi .branding__price,
.branding__card--orbi .branding__name,
.branding__card--orbi .branding__desc,
.branding__card--orbi .branding__list li {
  color: #fff;
}
.branding__card--orbi .branding__list li::before {
  color: #fff;
  opacity: 0.6;
}
.branding__card--orbi .branding__btn {
  background: #fff;
  color: #1A1A1A;
}
.branding__card--orbi .branding__btn:hover {
  background: #A57865;
  color: #fff;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
  .branding__title { font-size: 2rem; }
  .branding__cards { grid-template-columns: 1fr; }
}


/* ====================== CONTATO ====================== */
.contato-section {
  background: #f9f9f9;
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
}

.contato__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: start;
  gap: 4rem;
}

.contato__text h2 {
  font-family: 'Sora', sans-serif;
  font-size: 3rem;
  line-height: 1.2;
  color: #1A1A1A;
  font-weight: 700;
  margin-bottom: 1rem;
}
.contato__text .accent { color: #A57865; }

.contato__subtitle {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.7;
  max-width: 520px;
}

/* ===== FORM ===== */
.contato__form {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  animation: fadeInUp 1s ease forwards;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.form__group label {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  color: #1A1A1A;
  font-size: 0.95rem;
}

.form__group span {
  color: #A57865;
}

.form__group input,
.form__group textarea {
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 0.9rem 1rem;
  font-family: 'Satoshi', sans-serif;
  font-size: 0.95rem;
  color: #333;
  outline: none;
  transition: border .3s ease, box-shadow .3s ease;
}

.form__group input:focus,
.form__group textarea:focus {
  border-color: #A57865;
  box-shadow: 0 0 0 3px rgba(165,120,101,0.15);
}

.form__group textarea {
  min-height: 120px;
  resize: vertical;
}

.form__note {
  font-size: 0.8rem;
  color: #999;
}

.btn.btn--primary {
  background: linear-gradient(90deg, #A57865, #c49380);
  border: none;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  padding: 1rem 1.6rem;
  cursor: pointer;
  transition: all .3s ease;
}
.btn.btn--primary:hover {
  transform: translateY(-3px);
  background: linear-gradient(90deg, #c49380, #A57865);
}

/* ===== ANIMAÇÃO ===== */
@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(50px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ===== RESPONSIVO ===== */
@media (max-width: 992px) {
  .contato__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .contato__text h2 { font-size: 2.2rem; }
  .contato__form { padding: 2rem 1.5rem; }
}

/* ===== CARRINHO ===== */
.cart__overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,.5);
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  z-index: 900;
}
.cart__overlay.show { opacity: 1; visibility: visible; }
.cart__popup {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(.8);
  width: 90%; max-width: 500px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  z-index: 1000;
  display: flex;
  flex-direction: column;
}
.cart__popup.show { opacity: 1; visibility: visible; transform: translate(-50%, -50%) scale(1); }

/* ===== RESPONSIVO ===== */
@media(max-width:768px){
  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100%;
    background: #fff;
    flex-direction: column;
    gap: 2rem;
    padding: 5rem 2rem;
    transition: .3s;
  }
  .nav__menu.show-menu { right: 0; }
  .nav__toggle, .nav__close { display: block; }
  .hero { padding-top: 7rem; }
}
