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

  :root {
    --sage: #7A9E7E;
    --sage-light: #B5CEAC;
    --sage-dark: #4E7353;
    --cream: #F5F0E8;
    --cream-dark: #EDE5D5;
    --beige: #D4C5A9;
    --beige-dark: #B8A98A;
    --text-dark: #2C2B27;
    --text-mid: #6B6660;
    --text-light: #9B9590;
    --white: #FDFCF9;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
  }

  /* NAV */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(245, 240, 232, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--beige);
    padding: 0 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    transition: background 0.3s;
  }

  .nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--sage-dark);
    text-decoration: none;
  }

  .nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
  }

  .nav-links a {
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-mid);
    transition: color 0.25s;
  }

  .nav-links a:hover { color: var(--sage-dark); }

  .nav-cta {
    background: var(--sage-dark);
    color: var(--cream) !important;
    padding: 0.5rem 1.25rem;
    border-radius: 2px;
    transition: background 0.25s !important;
  }

  .nav-cta:hover { background: var(--sage) !important; color: var(--white) !important; }

  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
  }
  .hamburger span {
    width: 24px; height: 1.5px;
    background: var(--text-dark);
    display: block;
    transition: 0.3s;
  }

  /* HERO */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 100px 5% 60px;
    gap: 4rem;
    position: relative;
    overflow: hidden;
  }

  .hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 55%;
    height: 110%;
    background: var(--cream-dark);
    border-radius: 60% 0 0 60%;
    z-index: 0;
  }

  .hero-content { position: relative; z-index: 1; }

  .hero-eyebrow {
    font-size: 0.78rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--sage);
    font-weight: 500;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }

  .hero-eyebrow::before {
    content: '';
    width: 36px; height: 1px;
    background: var(--sage);
    display: block;
  }

  .hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
  }

  .hero h1 em {
    font-style: italic;
    color: var(--sage-dark);
  }

  .hero-desc {
    font-size: 1rem;
    color: var(--text-mid);
    max-width: 420px;
    line-height: 1.8;
    margin-bottom: 2.5rem;
  }

  .hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
  }

  .btn-primary {
    background: var(--sage-dark);
    color: var(--cream);
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 2px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.25s, transform 0.2s;
  }

  .btn-primary:hover { background: var(--sage); transform: translateY(-1px); }

  .btn-ghost {
    color: var(--sage-dark);
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.25s;
  }

  .btn-ghost:hover { gap: 0.8rem; }
  .btn-ghost::after { content: '→'; }

  .hero-image {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .hero-photo-wrap {
    width: 380px;
    height: 480px;
    position: relative;
  }

  .hero-photo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg, var(--sage-light) 0%, var(--beige) 100%);
    border-radius: 200px 200px 160px 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
    position: relative;
  }

  .silhouette {
    width: 65%;
    height: 85%;
    position: absolute;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .silhouette-head {
    width: 72px; height: 72px;
    background: var(--beige-dark);
    border-radius: 50%;
    margin-bottom: -4px;
    opacity: 0.7;
  }

  .silhouette-body {
    width: 160px;
    height: 320px;
    background: var(--sage-dark);
    border-radius: 80px 80px 0 0;
    opacity: 0.55;
  }

  .hero-badge {
    position: absolute;
    bottom: -20px;
    left: -30px;
    background: var(--white);
    border: 1px solid var(--beige);
    border-radius: 4px;
    padding: 1rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  }

  .badge-icon {
    width: 40px; height: 40px;
    background: var(--cream-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
  }

  .badge-text strong {
    display: block;
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
  }

  .badge-text span {
    font-size: 0.75rem;
    color: var(--text-light);
  }

  /* SECTION BASE */
  section { padding: 100px 5%; }

  .section-label {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--sage);
    font-weight: 500;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }

  .section-label::before {
    content: '';
    width: 30px; height: 1px;
    background: var(--sage);
    display: block;
  }

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
  }

  .section-title em { font-style: italic; color: var(--sage-dark); }

  /* SOBRE MIM */
  #sobre {
    background: var(--white);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }

  .sobre-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
  }

  .stat-card {
    padding: 1.5rem;
    border: 1px solid var(--beige);
    border-radius: 2px;
    background: var(--cream);
  }

  .stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--sage-dark);
    line-height: 1;
    margin-bottom: 0.3rem;
  }

  .stat-label {
    font-size: 0.82rem;
    color: var(--text-mid);
    letter-spacing: 0.03em;
  }

  .sobre-image-col {
    position: relative;
  }

  .sobre-img-wrap {
    width: 100%;
    height: 500px;
    background: linear-gradient(140deg, var(--sage-light) 0%, var(--cream-dark) 60%, var(--beige) 100%);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
  }

  .sobre-accent {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 120px;
    height: 120px;
    border: 2px solid var(--sage-light);
    border-radius: 50%;
    opacity: 0.4;
  }

  .sobre-quote {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: rgba(253, 252, 249, 0.92);
    backdrop-filter: blur(8px);
    border-left: 3px solid var(--sage);
    padding: 1rem 1.2rem;
    border-radius: 0 2px 2px 0;
  }

  .sobre-quote p {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.5;
  }

  .sobre-desc {
    color: var(--text-mid);
    line-height: 1.85;
    margin-bottom: 1rem;
    font-size: 0.97rem;
  }

  .formacao-list {
    list-style: none;
    margin-top: 1.5rem;
  }

  .formacao-list li {
    padding: 0.8rem 0;
    border-top: 1px solid var(--beige);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    font-size: 0.9rem;
    color: var(--text-mid);
  }

  .formacao-list li::before {
    content: '◆';
    color: var(--sage-light);
    font-size: 0.5rem;
    margin-top: 6px;
    flex-shrink: 0;
  }

  .formacao-list li strong {
    display: block;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.9rem;
  }

  /* SERVIÇOS */
  #servicos {
    background: var(--cream);
  }

  .servicos-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: end;
    margin-bottom: 4rem;
  }

  .servicos-intro {
    color: var(--text-mid);
    font-size: 0.97rem;
    line-height: 1.8;
  }

  .servicos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: var(--beige);
    border: 1.5px solid var(--beige);
  }

  .servico-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    transition: background 0.3s;
    cursor: default;
    position: relative;
    overflow: hidden;
  }

  .servico-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 0; height: 3px;
    background: var(--sage);
    transition: width 0.4s ease;
  }

  .servico-card:hover { background: var(--cream); }
  .servico-card:hover::before { width: 100%; }

  .servico-icon {
    width: 48px; height: 48px;
    background: var(--cream-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
  }

  .servico-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
  }

  .servico-card p {
    font-size: 0.88rem;
    color: var(--text-mid);
    line-height: 1.75;
  }

  .servico-duracao {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--beige);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--sage);
    font-weight: 500;
  }

  /* CTA FAIXA */
  .cta-strip {
    background: var(--sage-dark);
    padding: 80px 5%;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 3rem;
  }

  .cta-strip h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 300;
    color: var(--cream);
    line-height: 1.25;
  }

  .cta-strip h2 em { font-style: italic; color: var(--sage-light); }

  .btn-light {
    background: var(--cream);
    color: var(--sage-dark);
    padding: 1rem 2.2rem;
    border: none;
    border-radius: 2px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
    transition: background 0.25s;
    font-weight: 500;
  }

  .btn-light:hover { background: var(--white); }

  /* CONTACTO */
  #contacto {
    background: var(--white);
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: start;
  }

  .contacto-info h2 { margin-bottom: 1rem; }

  .contacto-desc {
    color: var(--text-mid);
    font-size: 0.97rem;
    line-height: 1.85;
    margin-bottom: 2.5rem;
  }

  .contacto-items {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
  }

  .contacto-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
  }

  .contacto-item-icon {
    width: 40px; height: 40px;
    background: var(--cream-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
  }

  .contacto-item-text strong {
    display: block;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 0.1rem;
  }

  .contacto-item-text span {
    font-size: 0.97rem;
    color: var(--text-dark);
  }

  /* FORM */
  .contacto-form-wrap {
    background: var(--cream);
    border: 1px solid var(--beige);
    border-radius: 2px;
    padding: 2.5rem;
  }

  .form-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 2rem;
  }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .form-group {
    margin-bottom: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
  }

  .form-group label {
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-mid);
    font-weight: 500;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    background: var(--white);
    border: 1px solid var(--beige);
    border-radius: 2px;
    padding: 0.75rem 1rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.93rem;
    color: var(--text-dark);
    outline: none;
    transition: border-color 0.25s;
    -webkit-appearance: none;
  }

  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--sage);
  }

  .form-group textarea { resize: vertical; min-height: 110px; }

  .form-submit {
    width: 100%;
    background: var(--sage-dark);
    color: var(--cream);
    border: none;
    padding: 1rem;
    border-radius: 2px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 0.5rem;
    transition: background 0.25s, transform 0.2s;
    font-weight: 500;
  }

  .form-submit:hover { background: var(--sage); transform: translateY(-1px); }

  .form-success {
    display: none;
    text-align: center;
    padding: 2rem;
    color: var(--sage-dark);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-style: italic;
  }

  /* FOOTER */
  footer {
    background: var(--text-dark);
    padding: 50px 5% 30px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    align-items: start;
  }

  .footer-brand .nav-logo { color: var(--sage-light); font-size: 1.4rem; display: block; margin-bottom: 0.8rem; }
  .footer-brand p { font-size: 0.85rem; color: rgba(245,240,232,0.5); line-height: 1.7; }

  .footer-col h4 {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--sage-light);
    margin-bottom: 1rem;
    font-weight: 500;
  }

  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 0.5rem; }
  .footer-col ul li a {
    text-decoration: none;
    font-size: 0.88rem;
    color: rgba(245,240,232,0.55);
    transition: color 0.25s;
  }
  .footer-col ul li a:hover { color: var(--cream); }

  .footer-bottom {
    background: var(--text-dark);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 16px 5%;
    text-align: center;
    font-size: 0.78rem;
    color: rgba(245,240,232,0.3);
  }

  /* SCROLL ANIMATIONS */
  .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible { opacity: 1; transform: none; }

  /* RESPONSIVE */
  @media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; padding-top: 110px; }
    .hero::before { display: none; }
    .hero-photo-wrap { width: 280px; height: 360px; }
    #sobre, #contacto { grid-template-columns: 1fr; }
    .sobre-image-col { order: -1; }
    .sobre-img-wrap { height: 300px; }
    .servicos-header { grid-template-columns: 1fr; gap: 1rem; }
    .servicos-grid { grid-template-columns: 1fr; }
    .cta-strip { grid-template-columns: 1fr; text-align: center; }
    footer { grid-template-columns: 1fr; }
    .nav-links { display: none; position: fixed; top: 70px; left: 0; right: 0; background: var(--cream); border-bottom: 1px solid var(--beige); flex-direction: column; padding: 1.5rem 5%; gap: 1rem; }
    .nav-links.open { display: flex; }
    .hamburger { display: flex; }
    .form-row { grid-template-columns: 1fr; }
  }

  .assistant-trigger{
  position:fixed;
  right:30px;
  bottom:30px;

  display:flex;
  align-items:center;
  gap:10px;

  padding:14px 18px;

  border:none;

  border-radius:100px;

  background:#fff;

  cursor:pointer;

  font-size:14px;
  font-weight:500;

  color:#4E7353;

  box-shadow:
      0 20px 50px rgba(0,0,0,.12);

  z-index:999999;

  transition:.3s;
}

.assistant-trigger:hover{
  transform:translateY(-4px);
}

.assistant-dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background:#7A9E7E;
}

.assistant-panel{
  position:fixed;

  right:30px;
  bottom:95px;

  width:390px;

  background:white;

  border-radius:28px;

  overflow:hidden;

  display:none;

  box-shadow:
      0 35px 80px rgba(0,0,0,.15);

  z-index:999999;
}

.assistant-top{
  background:linear-gradient(
      135deg,
      #7A9E7E,
      #B5CEAC
  );

  color:white;

  padding:22px;

  display:flex;
  align-items:center;
  gap:14px;
}

.assistant-avatar{
  width:52px;
  height:52px;

  border-radius:50%;

  background:white;

  color:#4E7353;

  display:flex;
  align-items:center;
  justify-content:center;

  font-weight:600;
}

.assistant-top h3{
  margin:0;
  font-size:16px;
}

.assistant-top p{
  margin:0;
  opacity:.8;
  font-size:13px;
}

.assistant-top button{
  margin-left:auto;
  background:none;
  border:none;
  color:white;
  cursor:pointer;
}

.assistant-body{
  padding:22px;
}

.assistant-message{
  background:#F5F0E8;

  padding:16px;

  border-radius:16px;

  line-height:1.7;

  margin-bottom:18px;
}

.assistant-actions{
  display:grid;
  gap:10px;
}

.assistant-actions button{
  border:none;

  background:white;

  border:1px solid #E5DED2;

  padding:14px;

  text-align:left;

  border-radius:14px;

  cursor:pointer;

  transition:.25s;
}

.assistant-actions button:hover{
  background:#F5F0E8;
}

#faqResponse{
  margin-top:15px;

  background:#F5F0E8;

  border-radius:14px;

  line-height:1.7;

  overflow:hidden;

  max-height:0;
  opacity:0;

  transition:
      max-height .45s ease,
      opacity .35s ease,
      padding .35s ease;

  padding:0 15px;
}

#faqResponse.show{
  max-height:300px;
  opacity:1;
  padding:15px;
}

.typing{
  display:flex;
  gap:5px;
  align-items:center;
}

.typing span{
  width:7px;
  height:7px;

  border-radius:50%;

  background:#7A9E7E;

  animation:typing 1.2s infinite;
}

.typing span:nth-child(2){
  animation-delay:.2s;
}

.typing span:nth-child(3){
  animation-delay:.4s;
}

@keyframes typing{

  0%,60%,100%{
    transform:translateY(0);
    opacity:.4;
  }

  30%{
    transform:translateY(-4px);
    opacity:1;
  }

}

.bot-message{
  background:white;
  border-radius:18px 18px 18px 4px;
  padding:14px;
  box-shadow:
    0 8px 20px rgba(0,0,0,.06);

  animation:messageAppear .35s ease;
}

@keyframes messageAppear{

  from{
    opacity:0;
    transform:translateY(12px);
  }

  to{
    opacity:1;
    transform:translateY(0);
  }

}

.language-switcher{
  display:flex;
  gap:6px;
  margin-left:auto;
  margin-right:20px;
}

.lang-btn{
  border:none;
  background:transparent;
  cursor:pointer;

  padding:6px 10px;

  border-radius:8px;

  font-size:12px;
  font-weight:600;

  color:var(--text-mid);

  transition:.25s;
}

.lang-btn:hover{
  background:rgba(122,158,126,.1);
}

.lang-btn.active{
  background:var(--sage-dark);
  color:white;
}

@media(max-width:900px){

  .language-switcher{
    margin-right:10px;
  }

}

/* Correção Navbar Idiomas */
.language-switcher-wrapper{
  display:flex;
  align-items:center;
  margin-left:20px;
}

.language-switcher{
  display:flex;
  gap:6px;
  margin-left:20px;
  margin-right:0;
}

.whatsapp-premium{
    position:fixed;
    left:25px;
    bottom:25px;
    width:68px;
    height:68px;
    border-radius:50%;
    background:linear-gradient(135deg,#25D366,#128C7E);
    display:flex;
    align-items:center;
    justify-content:center;
    color:white;
    text-decoration:none;
    z-index:9999;
    box-shadow:0 15px 40px rgba(37,211,102,.35);
    transition:.3s;
}

.whatsapp-premium:hover{
    transform:scale(1.08);
}

.whatsapp-premium i{
    font-size:34px;
}

/* POPUP */

.wa-popup{
    position:fixed;
    left:25px;
    bottom:110px;
    z-index:10000;
    opacity:0;
    visibility:hidden;
    transform:translateY(20px);
    transition:.3s;
}

.wa-popup.active{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.wa-card{
    width:340px;
    background:rgba(255,255,255,.95);
    backdrop-filter:blur(20px);
    border-radius:24px;
    overflow:hidden;
    box-shadow:
    0 25px 60px rgba(0,0,0,.18);
    border:1px solid rgba(255,255,255,.4);
}

.wa-header{
    background:linear-gradient(
    135deg,
    #25D366,
    #128C7E
    );
    color:white;
    padding:18px;
    display:flex;
    align-items:center;
    gap:12px;
}

.wa-avatar{
    width:48px;
    height:48px;
    border-radius:50%;
    background:rgba(255,255,255,.2);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
}

.wa-header h3{
    margin:0;
    font-size:16px;
}

.wa-header span{
    font-size:12px;
    opacity:.85;
}

#closeWhatsapp{
    margin-left:auto;
    background:none;
    border:none;
    color:white;
    cursor:pointer;
    font-size:18px;
}

#waMessage{
    width:100%;
    min-height:130px;
    border:none;
    resize:none;
    padding:20px;
    font-size:15px;
    outline:none;
    font-family:inherit;
}

.wa-send{
    width:calc(100% - 30px);
    margin:15px;
    border:none;
    border-radius:14px;
    background:#25D366;
    color:white;
    padding:14px;
    cursor:pointer;
    font-weight:600;
    transition:.3s;
}

.wa-send:hover{
    background:#1ebd5c;
}

.hero-photo-placeholder {
  width: 350px;
  height: 470px;
  border-radius: 180px;
  overflow: hidden;
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-photo-wrap{
    width:min(420px,100%);
    height:520px;
}

.hero-photo-wrap::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(169,184,157,.25);
    top: -30px;
    right: -40px;
}

.hero-photo-wrap::after {
    content: "";
    position: absolute;
    width: 90px;
    height: 90px;
    border: 1px solid rgba(169,184,157,.4);
    border-radius: 50%;
    bottom: 30px;
    left: -20px;
}

.hero-photo {
    width: 90%;
    height: 100%;
    object-fit: cover;

    border-radius: 45% 55% 35% 65% / 55% 40% 60% 45%;

    box-shadow:
        0 30px 60px rgba(0,0,0,.08),
        0 5px 15px rgba(0,0,0,.05);
}

.sobre-img-wrap{
  position: relative;
}

.sobre-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}

.sobre-quote{
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 16px;
}

/* ===========================
   HERO MOBILE
=========================== */

@media (max-width: 768px){

  .hero{
    grid-template-columns:1fr;
    gap:2rem;
    padding:95px 24px 40px;
    min-height:auto;
    text-align:left;
  }

  .hero-content{
    width:100%;
  }

  .hero h1{
    font-size:clamp(2.2rem,10vw,3rem);
    line-height:1.1;
    margin-bottom:1rem;
  }

  .hero-desc{
    max-width:100%;
    font-size:1rem;
    line-height:1.7;
    margin-bottom:2rem;
  }

  .hero-actions{
    gap:14px;
  }

  .btn-primary{
    padding:.9rem 1.5rem;
    font-size:.82rem;
  }

  .hero-image{
    margin-top:0;
    justify-content:center;
  }

  .hero-photo-wrap{
    width:min(82vw,320px);
    height:420px;
  }

  .hero-photo{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center top;
  }

  .hero-photo-wrap::before{
    width:130px;
    height:130px;
    top:-15px;
    right:-15px;
  }

  .hero-photo-wrap::after{
    width:70px;
    height:70px;
    left:-10px;
    bottom:15px;
  }

}

@media (max-width:390px){

    .hero{
        padding:90px 20px 35px;
    }

    .hero h1{
        font-size:2rem;
    }

    .hero-desc{
        font-size:.95rem;
    }

    .hero-photo-wrap{
        width:290px;
        height:385px;
    }

}

@media (max-width:768px){

.hero-actions{
    flex-direction:column;
    align-items:flex-start;
}

.btn-primary{
    width:100%;
    text-align:center;
}

.btn-ghost{
    margin-left:2px;
}

}

.assistant-actions button,
.assistant-actions a{
    color: var(--text-dark) !important;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}
/* ==========================
   CHATBOT MOBILE
========================== */

@media (max-width:768px){

  .assistant-panel{

    width:90%;
    max-width:340px;

    right:50%;
    transform:translateX(50%);

    bottom:85px;

    border-radius:22px;
  }

  .assistant-top{
    padding:18px;
  }

  .assistant-avatar{
    width:44px;
    height:44px;
    font-size:15px;
  }

  .assistant-top h3{
    font-size:15px;
  }

  .assistant-top p{
    font-size:12px;
  }

  .assistant-body{
    padding:18px;
  }

  .assistant-message{
    padding:14px;
    font-size:14px;
  }

  .assistant-actions button{
    padding:12px 14px;
    font-size:14px;
  }

}

@media (max-width:768px){

.assistant-trigger{
    padding:12px 16px;
    font-size:13px;
    right:18px;
    bottom:18px;
}

.assistant-dot{
    width:8px;
    height:8px;
}

}

@media (max-width:768px){

.assistant-panel{
    width:88%;
    max-width:330px;
}

.assistant-message{
    font-size:13.5px;
}

.assistant-actions button{
    font-size:13px;
    padding:11px 14px;
}

}
/* ==========================
   WHATSAPP MOBILE
========================== */

@media (max-width:768px){

  .whatsapp-premium{
      width:56px;
      height:56px;

      left:18px;
      bottom:18px;
  }

  .whatsapp-premium i{
      font-size:28px;
  }

  .wa-popup{
      left:12px;
      right:12px;
      bottom:84px;
  }

  .wa-card{
      width:100%;
      max-width:none;
      border-radius:20px;
  }

}
@media (max-width:768px){

  .whatsapp-premium{
      width:52px;
      height:52px;
  }

  .whatsapp-premium i{
      font-size:26px;
  }

}