@import url("main.css");

    /* ── CURSOR ── */
    .cursor {
      width: 10px; height: 10px;
      background: var(--green-light);
      border-radius: 50%;
      position: fixed; top: 0; left: 0;
      pointer-events: none; z-index: 9999;
      transition: transform 0.15s ease, opacity 0.2s;
      mix-blend-mode: multiply;
    }
    .cursor-ring {
      width: 36px; height: 36px;
      border: 1.5px solid var(--green-mid);
      border-radius: 50%;
      position: fixed; top: 0; left: 0;
      pointer-events: none; z-index: 9998;
      transition: transform 0.35s cubic-bezier(.17,.67,.4,1.2), opacity 0.2s;
      opacity: 0.5;
    }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 5vw;
      height: 80px;
      background: rgba(255,255,255,0.92);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(45,122,80,0.1);
      transition: box-shadow 0.3s;
    }
    nav.scrolled { box-shadow: 0 4px 32px rgba(26,71,49,0.08); }

    .nav-logo {
      font-family: 'Lato', serif;
      font-size: 1.35rem; font-weight: 600;
      color: var(--green-dark); letter-spacing: 0.02em;
      text-decoration: none;
    }
    .nav-logo span { color: var(--green-light); font-style: italic; }

    .nav-links { display: flex; gap: 2.2rem; list-style: none; }
    .nav-links a {
      text-decoration: none;
      font-size: 0.85rem; font-weight: 500; letter-spacing: 0.06em;
      color: var(--text-mid); text-transform: uppercase;
      position: relative; padding-bottom: 3px;
      transition: color 0.2s;
    }
    .nav-links a::after {
      content: ''; position: absolute; bottom: 0; left: 0;
      width: 0; height: 1.5px;
      background: var(--green-light);
      transition: width 0.3s ease;
    }
    .nav-links a:hover { color: var(--green-dark); }
    .nav-links a:hover::after { width: 100%; }

   /* .nav-cta {
      background: var(--green-dark); color: var(--white) !important;
      padding: 0.75rem 1.9rem; border-radius: 50px;
      font-size: 0.82rem !important; font-weight: 600 !important;
      transition: background 0.25s, transform 0.2s, box-shadow 0.25s !important;
    }
    .nav-cta::after { display: none !important; }
    .nav-cta:hover {
      background: var(--green-mid) !important;
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(26,71,49,0.22) !important;
    }*/

    /* ── HERO ── */
    #hero {
      min-height: 100vh;
      display: grid; grid-template-columns: 1fr 1fr;
      align-items: center;
      padding: 0 6vw;
      background: var(--white);
      position: relative; overflow: hidden;
      border-bottom: 1px solid #b6b6b6;
    }

    .hero-bg-circle {
      position: absolute; right: -5vw; top: 50%;
      transform: translateY(-50%);
      width: 52vw; height: 52vw;
      border-radius: 50%;
      background: radial-gradient(circle at 40% 40%, #c9ead8, #e8f5ee 70%, transparent);
      z-index: 0;
    }
    .hero-bg-lines {
      position: absolute; inset: 0; z-index: 0;
      background-image:
        linear-gradient(rgba(45,122,80,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(45,122,80,0.04) 1px, transparent 1px);
      background-size: 60px 60px;
    }

    .hero-content { position: relative; z-index: 1; }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: var(--green-pale); color: var(--green-mid);
      padding: 0.4rem 1rem; border-radius: 50px;
      font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em;
      text-transform: uppercase; margin-bottom: 2rem;
      opacity: 0; transform: translateY(20px);
      animation: fadeUp 0.8s 0.2s forwards;
    }
    .hero-badge::before {
      content: ''; width: 7px; height: 7px;
      border-radius: 50%; background: var(--green-light);
    }

    .hero-title {
      font-family: 'Lato', serif;
      font-size: clamp(2.8rem, 5vw, 4.5rem);
      font-weight: 300; line-height: 1.1;
      color: var(--green-dark); margin-bottom: 1.6rem;
      opacity: 0; transform: translateY(30px);
      animation: fadeUp 0.9s 0.4s forwards;
    }
    .hero-title em { font-style: italic; color: var(--green-mid); }
    .hero-title strong {
      font-weight: 600; display: block;
      font-size: 1.08em;
    }

    .hero-sub {
      font-size: 1.05rem; color: var(--text-mid);
      line-height: 1.7; max-width: 440px;
      margin-bottom: 2.4rem;
      opacity: 0; transform: translateY(20px);
      animation: fadeUp 0.9s 0.6s forwards;
    }

    .hero-actions {
      display: flex; gap: 1rem; flex-wrap: wrap;
      opacity: 0; transform: translateY(20px);
      animation: fadeUp 0.9s 0.8s forwards;
    }

    .btn-primary {
      background: var(--green-dark); color: var(--white);
      padding: 0.9rem 2.2rem; border-radius: 50px;
      font-size: 0.88rem; font-weight: 600; letter-spacing: 0.04em;
      text-decoration: none; border: none; cursor: pointer;
      position: relative; overflow: hidden;
      transition: transform 0.2s, box-shadow 0.25s;
    }
    .btn-primary::before {
      content: ''; position: absolute; inset: 0;
      background: var(--green-mid); transform: scaleX(0);
      transform-origin: left; transition: transform 0.35s ease;
    }
    .btn-primary span { position: relative; z-index: 1; }
    .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(26,71,49,0.28); }
    .btn-primary:hover::before { transform: scaleX(1); }

    .btn-outline {
      border: 1.5px solid var(--green-mid); color: var(--green-dark);
      padding: 0.9rem 2.2rem; border-radius: 50px;
      font-size: 0.88rem; font-weight: 500;
      text-decoration: none; background: transparent;
      transition: background 0.25s, color 0.25s, transform 0.2s, box-shadow 0.25s;
    }
    .btn-outline:hover {
      background: var(--green-pale); transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(45,122,80,0.12);
    }

    .hero-visual {
      position: relative; z-index: 1;
      display: flex; justify-content: center; align-items: center;
      opacity: 0; animation: fadeIn 1.2s 0.5s forwards;
      bottom: -70px;
    }

    .imgJeff{ width:50%; right: 0px; }
    
    .hero-stats {
      position: absolute; bottom: 200px; left: -30px;
      display: flex; gap: 1rem;
    }
    .stat-card {
      background: var(--white);
      border-radius: 16px; padding: 1rem 1.4rem;
      box-shadow: 0 8px 32px rgba(26,71,49,0.12);
      text-align: center;
    }
    .stat-num {
      font-family: 'Lato', serif;
      font-size: 2rem; font-weight: 600; color: var(--green-dark);
      line-height: 1;
    }
    .stat-label { font-size: 0.72rem; color: var(--text-light); margin-top: 3px; }

    /* ── SECTION BASE ── */
    section { padding: 7rem 6vw; }

    .section-tag {
      display: inline-block;
      font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em;
      text-transform: uppercase; color: var(--green-mid);
      margin-bottom: 1rem;
    }
    .section-title {
      font-family: 'Lato', serif;
      font-size: clamp(2rem, 3.5vw, 3rem);
      font-weight: 400; color: var(--green-dark);
      line-height: 1.15; margin-bottom: 1.2rem;
    }
    .section-title em { font-style: italic; font-weight: 300; }
    .section-desc {
      font-size: 1rem; color: var(--text-mid);
      line-height: 1.75; max-width: 560px;
    }

    /* ── ESPECIALIDADES ── */
    #especialidades { 
      background: var(--off-white); 
    }

    .bt-center{
      display: flex; flex-direction: column; align-items: center;
    }

    .spec-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 3.5rem; flex-wrap: wrap; gap: 1.5rem; }

    .spec-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; margin-bottom:60px; }

    .spec-card {
      background: var(--white); border-radius: 20px;
      padding: 2rem 1.8rem;
      border: 1px solid rgba(45,122,80,0.08);
      position: relative; overflow: hidden;
      transition: transform 0.3s, box-shadow 0.3s;
      cursor: default;
    }
    .spec-card::before {
      content: ''; position: absolute; bottom: 0; left: 0; right: 0;
      height: 3px; background: linear-gradient(90deg, var(--green-light), var(--green-mid));
      transform: scaleX(0); transform-origin: left;
      transition: transform 0.35s ease;
    }
    .spec-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(26,71,49,0.12); }
    .spec-card:hover::before { transform: scaleX(1); }

    .spec-icon {
      font-size: 2.2rem; margin-bottom: 1rem; display: block;
    }
    .spec-card h3 {
      font-family: 'Lato', serif;
      font-size: 1.3rem; font-weight: 600; color: var(--green-dark);
      margin-bottom: 0.6rem;
    }
    .spec-card p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.65; }

    /* ── ABOUT ── */
    #sobre {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 5rem; align-items: center;
    }
    .about-img-wrap {
      position: relative;
      
    }
    .about-img-main {
      width: 100%; aspect-ratio: 4/4;
      border-radius: 28px;
      background: linear-gradient(160deg, #c9ead8, #9dcfb4 60%, #6aad8a);
      display: flex; align-items: center; justify-content: center;
      font-size: 6rem; color: rgba(255,255,255,0.5);
      box-shadow: 0 24px 72px rgba(26,71,49,0.18);

      background: url('../imgs/DSC0001.webp');
      background-size: cover;
    }

    .about-img-main-clube {
      width: 100%; aspect-ratio: 4/4;
      border-radius: 28px;
      background: linear-gradient(160deg, #c9ead8, #9dcfb4 60%, #6aad8a);
      display: flex; align-items: center; justify-content: center;
      font-size: 6rem; color: rgba(255,255,255,0.5);
      box-shadow: 0 24px 72px rgba(26,71,49,0.18);

      background: url('../imgs/clube.webp');
      background-size: cover;
    }
    .about-img-main-domiciliar {
      width: 100%; aspect-ratio: 4/4;
      border-radius: 28px;
      background: linear-gradient(160deg, #c9ead8, #9dcfb4 60%, #6aad8a);
      display: flex; align-items: center; justify-content: center;
      font-size: 6rem; color: rgba(255,255,255,0.5);
      box-shadow: 0 24px 72px rgba(26,71,49,0.18);

      background: url('../imgs/domiciliar.webp');
      background-size: cover;
    }
    .about-badge-card {
      position: absolute; bottom: -20px; right: -24px;
      background: var(--green-dark); color: var(--white);
      padding: 1.2rem 1.6rem; border-radius: 16px;
      text-align: center;
      box-shadow: 0 12px 36px rgba(26,71,49,0.25);
    }
    .about-badge-card .num {
      font-family: 'Lato', serif;
      font-size: 2.2rem; font-weight: 600; line-height: 1;
    }
    .about-badge-card .label { font-size: 0.75rem; opacity: 0.7; margin-top: 4px; }

    .about-content { padding-right: 2rem; }
    .about-quote {
      font-family: 'Lato', serif;
      font-size: 1.25rem; font-style: italic;
      color: var(--green-mid); line-height: 1.6;
      border-left: 3px solid var(--green-light);
      padding-left: 1.4rem; margin: 1.8rem 0;
    }
    .about-list { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 2rem; }
    .about-list li {
      display: flex; align-items: center; gap: 0.8rem;
      font-size: 0.92rem; color: var(--text-mid);
    }
    .about-list li::before {
      content: '✓'; width: 22px; height: 22px;
      background: var(--green-pale); color: var(--green-mid);
      border-radius: 50%; display: flex; align-items: center; justify-content: center;
      font-size: 0.75rem; font-weight: 700; flex-shrink: 0;
    }

    .politica p, .politica ul{
      margin: 12px 0px;
      line-height: 22px;
    }

    .politica strong{
      margin: 30px 0px 14px 0px;
      font-size: 1.2em;
      display: block;
    }

    .politica ul li{
      line-height: 23px;
      list-style: none;
    }

    /* ── TESTIMONIALS ── */
    #depoimentos { background: var(--green-dark); color: var(--white); }
    #depoimentos .section-title { color: var(--white); }
    #depoimentos .section-desc { color: rgba(255,255,255,0.65); }

    .test-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 3.5rem; }

    .test-card {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 20px; padding: 2rem;
      transition: background 0.25s, transform 0.25s;
    }
    .test-card:hover {
      background: rgba(255,255,255,0.1); transform: translateY(-4px);
    }
    .test-stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 2px; margin-bottom: 1rem; }
    .test-text {
      font-family: 'Lato', serif;
      font-size: 1.1rem; font-style: italic;
      line-height: 1.65; color: rgba(255,255,255,0.88);
      margin-bottom: 1.5rem;
    }
    .test-author { display: flex; align-items: center; gap: 0.8rem; }
    .test-avatar {
      width: 40px; height: 40px; border-radius: 50%;
      background: var(--green-mid); display: flex; align-items: center;
      justify-content: center; font-size: 1.1rem; flex-shrink: 0;
    }
    .test-name { font-size: 0.88rem; font-weight: 600; }
    .test-role { font-size: 0.78rem; color: rgba(255,255,255,0.45); margin-top: 1px; }

    /* ── SERVICES ── */
    #servicos .services-grid {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem; margin-top: 3.5rem;
      margin-bottom: 40px;
    }
    .service-item {
      display: flex; gap: 1.4rem; align-items: flex-start;
      padding: 1.6rem; border-radius: 16px;
      border: 1px solid rgba(45,122,80,0.1);
      transition: background 0.25s, transform 0.25s, box-shadow 0.25s;
    }
    .service-item:hover {
      background: var(--green-pale); transform: translateX(4px);
      box-shadow: 0 8px 24px rgba(45,122,80,0.1);
    }
    .service-ico {
      width: 52px; height: 52px; border-radius: 14px;
      background: var(--green-pale); display: flex; align-items: center;
      justify-content: center; font-size: 1.5rem; flex-shrink: 0;
      transition: background 0.25s;
    }
    .service-item:hover .service-ico { background: var(--green-light); }
    .service-text h4 {
      font-family: 'Lato', serif;
      font-size: 1.2rem; font-weight: 600; color: var(--green-dark);
      margin-bottom: 0.4rem;
    }
    .service-text p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.6; }

    #clube-paladino{
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 5rem; align-items: center;
    }

    /* ── CTA BANNER ── */
    #cta-section {
      background: linear-gradient(135deg, var(--green-dark) 0%, #1e5c3a 100%);
      
      text-align: center; padding: 6rem 6vw;display: flex; flex-direction: column; align-items: center;
      position: relative; overflow: hidden;
    }
    #cta-section::before {
      content: ''; position: absolute; inset: 0;
      background: radial-gradient(circle at 70% 50%, rgba(76,175,125,0.15), transparent 60%);
    }
    .cta-title {
      font-family: 'Lato', serif;
      font-size: clamp(2.2rem, 4vw, 3.5rem);
      font-weight: 300; color: var(--white); line-height: 1.15;
      margin-bottom: 1.2rem; position: relative; z-index: 1;
    }
    .cta-title em { font-style: italic; color: #8edcab; }
    .cta-sub { font-size: 1rem; color: rgba(255,255,255,0.65); margin-bottom: 2.5rem; position: relative; z-index: 1; }
    .btn-white {
      background: var(--white); color: var(--green-dark);
      padding: 1rem 2.6rem; border-radius: 50px;
      font-size: 0.92rem; font-weight: 700; letter-spacing: 0.04em;
      text-decoration: none; position: relative; z-index: 1;
      transition: transform 0.2s, box-shadow 0.25s, background 0.25s;
    }
    .btn-white:hover {
      transform: translateY(-3px);
      box-shadow: 0 16px 40px rgba(0,0,0,0.2);
      background: var(--green-pale);
    }

.logos-clientes h2{
  text-align: center;
  font-family: Lato, Serif;
  color: #1a4731;
  font-size: 2em;
  margin-bottom: 60px;
}
    /* CARROSSEL DE LOGOS */

@keyframes slides {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
        }
}

.logos {
    overflow: hidden;
    margin-top: 20px;
    padding: 20px 0px;
    white-space: nowrap;
    position: relative;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.logos:before, .logos:after {
    position: absolute;
    top: 0;
    content: '';
    width: 250px;
    height: 100%;
    z-index: 9;
}

.logos:before {
    left: 0;
    background: linear-gradient(to left, rgba(255,255,255,0), rgb(255, 255, 255));
}

.logos:after {
    right: 0;
    background: linear-gradient(to right, rgba(255,255,255,0), rgb(255, 255, 255));
}

.logo_items {
    display: inline-block;
    animation: 35s slides infinite linear;
}

.logos:hover .logo_items {
    animation-play-state: paused;
}

.logo_items img{
    height: 60px;
}

/* FIM CARROSSEL DE LOGOS  */

    /* ── CONTACT ── */
    #contato {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 4rem; align-items: start; background: var(--off-white);
    }
    .contact-form {
      background: var(--white); border-radius: 24px;
      padding: 2.5rem; box-shadow: 0 8px 40px rgba(26,71,49,0.08);
    }
    .form-group { margin-bottom: 1.4rem; }
    .form-group label {
      display: block; font-size: 0.8rem; font-weight: 600;
      letter-spacing: 0.06em; text-transform: uppercase;
      color: var(--text-mid); margin-bottom: 0.5rem;
    }
    .form-group input, .form-group select, .form-group textarea {
      width: 100%; padding: 0.85rem 1.2rem;
      border: 1.5px solid rgba(45,122,80,0.15);
      border-radius: 12px; font-family: 'Lato', sans-serif;
      font-size: 0.92rem; color: var(--text-dark);
      background: var(--off-white);
      transition: border-color 0.25s, box-shadow 0.25s;
      outline: none;
    }
    .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
      border-color: var(--green-mid);
      box-shadow: 0 0 0 3px rgba(45,122,80,0.1);
      background: var(--white);
    }
    .form-group textarea { resize: vertical; min-height: 120px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

    .contact-info { padding-top: 1rem; }
    .contact-info-title {
      font-family: 'Lato', serif;
      font-size: 1.8rem; color: var(--green-dark);
      margin-bottom: 0.6rem;
    }
    .contact-info-desc { font-size: 0.9rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 2rem; }
    .info-items { display: flex; flex-direction: column; gap: 1.2rem; }
    .info-item {
      display: flex; align-items: flex-start; gap: 1rem;
    }
    .info-item-icon {
      width: 44px; height: 44px; border-radius: 12px;
      background: var(--green-pale); display: flex; align-items: center;
      justify-content: center; font-size: 1.2rem; flex-shrink: 0;
    }
    .info-item h4 { font-size: 1.09rem; font-weight: 600; color: var(--green-dark); letter-spacing: 0.04em; text-transform: uppercase; }
    .info-item p { font-size: 1.02rem; color: var(--text-mid); margin-top: 2px; }
    .info-item p a:hover{ color: #09d261; }

    /* ── FOOTER ── */
    footer {
      background: var(--text-dark); color: rgba(255,255,255,0.55);
      padding: 3rem 6vw;
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 1rem;
    }
    .footer-logo {
      font-family: 'Lato', serif;
      font-size: 1.25rem; color: var(--white); font-weight: 600;
    }
    .footer-logo span { color: var(--green-light); font-style: italic; }
    .footer-links { display: flex; gap: 1.6rem; }
    .footer-links a {
      font-size: 0.8rem; color: rgba(255,255,255,0.45);
      text-decoration: none; transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--green-light); }
    .footer-copy { font-size: 0.78rem; }

    /* ── SCROLL REVEAL ── */
    .reveal {
      opacity: 0; transform: translateY(40px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible { opacity: 1; transform: none; }
    .reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
    .reveal-left.visible { opacity: 1; transform: none; }
    .reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
    .reveal-right.visible { opacity: 1; transform: none; }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp { to { opacity: 1; transform: none; } }
    @keyframes fadeIn { to { opacity: 1; } }

    /* ── RESPONSIVE ── */
    @media(max-width: 860px) {
      #hero { grid-template-columns: 1fr; min-height: auto; padding-top: 100px; padding-bottom: 60px; text-align: center; }
      .hero-visual { display: none; }
      .hero-actions { justify-content: center; }
      #sobre, #contato, #clube-paladino { grid-template-columns: 1fr; }
      .about-content { padding-right: 0; }
      .about-img-wrap { display: none; }
      .nav-links { display: none; }
      section { padding: 5rem 5vw; }
      #navbar{ justify-content: center; }
      .form-row { grid-template-columns: 1fr; }
    }
