/* FONTS */

@font-face {
  font-family: 'AustynsSakyra';
  src: url('./assets/fonts/AustynsSakyra-Italic.otf') format('opentype'),
       url('./assets/fonts/AustynsSakyra-Italic.ttf') format('truetype');
  font-style: italic;
  font-weight: normal;
}
@font-face {
  font-family: 'AustynsSakyra';
  src: url('./assets/fonts/AustynsSakyra-Regular.otf') format('opentype'),
       url('./assets/fonts/AustynsSakyra-Regular.ttf') format('truetype');
  font-style: normal;
  font-weight: normal;
}
@font-face {
  font-family: 'HelveticaNeue';
  src: url('./assets/fonts/HelveticaNeue.ttc') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* ── RESET & VARIABLES ──────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    :root {
    --green-dark:   #2d4a38;
    --green-hero-l: #2b4435;
    --green-hero-r: #3a9e86;
    --green-evt:    #2f4a3a;
    --green-accent: #4a9b6f;
    --beige:        #ede5d6;
    --beige-light:  #f2ece0;
    --light-gold:   #efdacb;
    --gold:         #c9a96e;
    --text-dark:    #2a2a2a;
    --text-mid:     #4a4a4a;
    --text-soft:    #6b6b6b;
    --white:        #ffffff;
    --script: 'AustynsSakyra', Georgia, serif;
    --sans:   'HelveticaNeue', Helvetica, Arial, sans-serif;
    }
    #rybena-sidebar,
.a11y-toolbar,
.gtranslate_wrapper,
.cky-btn-revisit-wrapper, .grecaptcha-badge {
    display: none !important;
}

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--sans);
      background: var(--beige);
      color: var(--text-dark);
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    /* Logo */
    .logo {
      display: flex; align-items: center; justify-content: center;
    }

    .logo img {
      width: 100%;
      max-width: 320px;
    }
    /* ── HERO ──────────────────────────────────────────────── */
    .hero {
      position: relative;
      min-height: 100vh;
      background: url(./assets/png/texturaverde.png) center / cover no-repeat;
      display: flex;
      flex-direction: column;
      overflow: visible;
    }

    .hero-texture {
      position: absolute; inset: 0;
      background-image:
        radial-gradient(ellipse 60% 80% at 70% 60%, rgba(74,155,111,0.22) 0%, transparent 60%),
        radial-gradient(ellipse 40% 50% at 80% 20%, rgba(74,155,111,0.1) 0%, transparent 50%);
      pointer-events: none;
    }

    @keyframes pulse-ring {
      0%, 100% { transform: scale(1); opacity: 0.5; }
      50% { transform: scale(1.04); opacity: 0.35; }
    }

    /* Header / nav */
    .hero-header {
      position: relative; z-index: 10;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 32px 48px 16px;
      gap: 14px;
    }
    .logo-icon {
      width: 48px; height: 48px;
      background: linear-gradient(135deg, #4cd9a0, #2a9e6e);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 22px;
      box-shadow: 0 4px 20px rgba(74,155,111,0.5);
    }
    .logo-text-wrap { display: flex; flex-direction: column; }
    .logo-name {
      font-family: var(--sans);
      font-weight: 700;
      font-size: 26px;
      letter-spacing: 4px;
      color: var(--white);
    }
    .logo-sub {
      font-family: var(--sans);
      font-size: 8px;
      letter-spacing: 1.5px;
      color: rgba(255,255,255,0.6);
      text-transform: uppercase;
    }

    /* Hero body */
    .hero-body {
      position: relative; z-index: 10;
      flex: 1;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: end;
      padding: 20px 0;
      gap: 40px;
    }

    .hero-content {
      padding-bottom: 40px;
      text-align: left;
    }

    .hero-taglines { margin-bottom: 36px; text-align: right; }
    .hero-tagline {
      display: block;
      line-height: 1.15;
      margin-bottom: 4px;
    }
    .tagline-word {
      font-family: var(--script);
      font-style: italic;
      font-size: clamp(52px, 6vw, 76px);
      font-weight: 500;
      color: var(--light-gold);
      display: block;
      line-height: 0.8;
    }
    .tagline-sub {
      font-family: var(--sans);
      font-size: clamp(11px, 1.1vw, 14px);
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--light-gold);
      display: block;
      margin-bottom: 20px;
      margin-top: 2px;
    }

    .hero-event {
      margin-bottom: 36px;
      text-align: left;
    }
    .event-label {
      font-size: 14px;
      color: var(--light-gold);
      margin-bottom: 6px;
      font-weight: 300;
      text-align: right;
    }
    .event-date {
      font-size: 22px;
      font-weight: 700;
      color: var(--light-gold);
      margin-bottom: 10px;
      text-align: right;
    }
    .event-address {
      display: flex; align-items: center; gap: 8px;
      font-size: 14px;
      justify-content: end;
      font-style: italic;
      color: var(--light-gold);
    }
    .pin { color: var(--gold); font-style: normal; }

    .hero-btns {
      display: flex; gap: 16px; flex-wrap: wrap; justify-content: end;
    }
    .btn {
      padding: 12px 28px;
      font-family: var(--sans);
      font-size: 13px;
      letter-spacing: 1px;
      cursor: pointer;
      border: none;
      transition: all 0.3s ease;
      text-decoration: none;
      display: inline-block;
    }
    .btn-outline {
      background: transparent;
      border: 1.5px solid rgba(255,255,255,0.6);
      color: var(--light-gold);
      border-radius: 4px;
    }
    .btn-outline:hover {
      background: rgba(255,255,255,0.12);
      border-color: var(--white);
    }
    .btn-solid {
      background: var(--light-gold);
      border: 1.5px solid rgba(255,255,255,0.4);
      color: var(--green-dark);
      border-radius: 4px;
      backdrop-filter: blur(6px);
    }
    .btn-solid:hover {
      background: var(--light-gold);
    }

    /* Hero image side */
    .hero-image-side {
      position: relative;
      display: flex;
      justify-content: flex-end;
    }
    .building-img {
      object-fit: contain;
      filter: drop-shadow(0 20px 60px rgba(0,0,0,0.4));
      animation: float-in 1s ease-out forwards;
      height: 800px;
      bottom: -130px;
      position: absolute;
    }
    @keyframes float-in {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* ── A NOVA SEDE ────────────────────────────────────────── */
    .nova-sede {
      background: var(--light-gold);
      padding: 80px 80px 60px;
    }

    .section-title {
      font-family: var(--script);
      font-style: italic;
      font-size: clamp(42px, 5vw, 64px);
      font-weight: 500;
      color: var(--green-dark);
      margin-bottom: 20px;
    }
    .section-desc {
      font-size: 17px;
      line-height: 1.85;
      color: var(--text-mid);
      max-width: 560px;
      margin-bottom: 48px;
      letter-spacing: 0.2px;
    }

    .disclaimer {
      font-size: 12px;
      color: var(--text-soft);
      font-style: italic;
      letter-spacing: 0.3px;
      padding: 8px 0 0;
    }
    .disclaimer--video {
      position: absolute;
      display: flex;
      justify-content: center;
      align-items: center;
      bottom: 14px;
      height: 16px;
      right: 20px;
      z-index: 10;
      color: var(--light-gold);
      background: rgba(0,0,0,0.45);
      padding: 4px 10px;
      border-radius: 3px;
      backdrop-filter: blur(4px);
    }

    .sede-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }

    .sede-photo-wrap {
      position: relative;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    }
    .sede-photo-wrap::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 60%, rgba(42,74,53,0.15) 100%);
      z-index: 1;
      pointer-events: none;
    }
    .sede-photo {
      width: 100%;
      display: block;
      object-fit: cover;
      transition: transform 0.6s ease;
    }
    .sede-photo-wrap:hover .sede-photo { transform: scale(1.03); }

    .sede-features { list-style: none; }
    .sede-features li {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 20px 0;
      font-size: 17px;
      color: var(--text-mid);
      line-height: 1.5;
      letter-spacing: 0.2px;
      border-bottom: 1px solid rgba(42,74,53,0.1);
      opacity: 0;
      transform: translateX(20px);
      transition: opacity 0.5s ease, transform 0.5s ease;
    }
    .sede-features li:last-child { border-bottom: none; }
    .sede-features li.visible { opacity: 1; transform: translateX(0); }
    .feat-dot {
      width: 8px; height: 8px;
      background: var(--green-accent);
      border-radius: 50%;
      flex-shrink: 0;
      margin-top: 7px;
    }

    /* ── CARROSSEL A NOVA SEDE ──────────────────────────────── */
    .carousel-container {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .carousel-wrap {
      flex: 1;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 20px 60px rgba(0,0,0,0.12);
    }

    .carousel-inner {
      overflow: hidden;
      border-radius: 16px;
    }

    .carousel-track {
      display: flex;
      transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }

    .carousel-slide {
      min-width: 100%;
      width: 100%;
      display: block;
      object-fit: cover;
      aspect-ratio: 4 / 3;
    }

    .carousel-btn {
      background: none;
      border: none;
      padding: 0;
      cursor: pointer;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .carousel-btn:hover {
      transform: scale(1.12);
      opacity: 0.75;
    }

    .carousel-btn img {
      width: 36px;
      height: 36px;
      object-fit: contain;
      display: block;
    }

    /* ── FULL WIDTH PHOTO ──────────────────────────────────── */
    /* ── VIDEO BANNER ───────────────────────────────────────── */
    .video-banner {
      position: relative;
      width: 100%;
      height: 480px;
      overflow: hidden;
      background: #111;
      display: block;
      line-height: 0;
    }

    .video-slide {
      position: absolute;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0;
      transition: opacity 0.7s ease;
      pointer-events: none;
    }

    .video-slide.active {
      opacity: 1;
    }

    /* ── O EVENTO ───────────────────────────────────────────── */
    .evento {
      background: url(./assets/png/texturaverde.png) center / cover no-repeat;
      position: relative;
      overflow: hidden;
      padding: 60px;
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: 80px;
      align-items: center;
    }

    .evento-building {
      position: relative;
      z-index: 1;
    }
    .evento-building img {
      width: 100%;
      position: absolute;
      top: -300px;
      height: 600px;
    }

    .evento-info {
      color: var(--light-gold);
      margin-top: 32px;
    }
    .evento-info p {
      font-size: 16px;
      line-height: 1.75;
      letter-spacing: 0.2px;
      margin-bottom: 10px;
    }
    .evento-info strong {
      font-weight: 600;
      letter-spacing: 0.5px;
      color: var(--gold);
    }
    .evento-info p:last-child { margin-bottom: 0; }
    .evento-info strong {
      font-weight: 600;
      letter-spacing: 0.5px;
      opacity: 0.85;
    }
    .evento-info a {
      color: var(--light-gold);
      text-decoration: underline;
      text-decoration-color: rgba(239,218,203,0.45);
      text-underline-offset: 3px;
      transition: text-decoration-color 0.2s ease, opacity 0.2s ease;
    }
    .evento-info a:hover {
      text-decoration-color: var(--light-gold);
      opacity: 0.8;
    }

    .evento-content { position: relative; z-index: 1; }

    .evento .section-title { color: var(--light-gold); margin-bottom: 50px;}

    .schedule {
      list-style: none;
      margin-bottom: 40px;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .schedule li {
      display: grid;
      grid-template-columns: 90px 1fr;
      align-items: center;
      border: 1px solid rgba(200,169,110,0.3);
      margin-bottom: 2px;
      transition: background 0.2s ease;
      background: #4a6447;
    }
    .sch-time {
      padding: 16px 20px;
      font-style: italic;
      font-size: 17px;
      color: var(--light-gold);
    }
    .sch-desc {
      padding: 0px 20px;
      font-size: 16px;
      color: var(--light-gold);
      letter-spacing: 0.3px;
    }

    .evento-address {
      display: flex;
      align-items: center;
      gap: 10px;
      font-style: italic;
      font-size: 18px;
      color: var(--light-gold);
      margin-top: 32px;
    }
    .addr-pin {
      width: 28px; height: 28px;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 14px;
      flex-shrink: 0;
    }

    /* ── FOOTER ─────────────────────────────────────────────── */
    footer {
      background: var(--beige-light);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 60px;
      border-top: 1px solid rgba(42,74,53,0.1);
    }
    .footer-logo {
      display: flex; flex-direction: column; align-items: center; gap: 10px;
    }
    .footer-logo img {
      width: 100%;
      max-width: 300px;
    }
    .footer-divider {
      width: 1px; height: 80px;
      background: rgba(42,74,53,0.2);
    }
    .footer-tagline {
      font-family: var(--sans);
      font-size: 16px;
      line-height: 1.6;
      color: var(--text-mid);
      text-align: center;
    }
    .footer-tagline strong {
      color: var(--green-dark);
      font-weight: 700;
    }
    .footer-social {
      display: flex;
      align-items: center;
    }
    .social-midia { background-color: #66cc99; padding-left: 6px; border-radius: 8px; max-width: 90%; min-width: 267px; margin: 0 auto; }
    .social-midia div { background: url(./assets/png/texturaverde.png) center / cover no-repeat; padding: 3px 10px 3px; padding-top: 10px; font-size: 32px; margin-bottom: 0; border-top-right-radius: 7px; border-bottom-right-radius: 7px; display: flex; justify-content: space-around; }
    .social-midia .social { margin-right: 2px; text-decoration: none; }
    .social-midia .social img { width: 41px; height: 41px; }
    
    .endereco-link {
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }
    
    .endereco-link img {
      filter: brightness(0) saturate(100%) invert(89%) sepia(18%) saturate(450%) hue-rotate(340deg) brightness(103%);
    }

    /* ── SCROLL ANIMATIONS ──────────────────────────────────── */
    .fade-up {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }

     @media (max-width: 1280px) {
      .building-img{
        height: 650px;
        bottom: -133px;
      }
      .hero-content { padding-bottom: 32px; }
      .nova-sede { padding: 60px 40px; }
      .sede-grid { grid-template-columns: 1fr; gap: 40px; }
      .evento { grid-template-columns: 1fr; padding: 60px 40px; }
      .evento-building { display: none; }
      footer { flex-direction: column; padding: 40px; gap: 24px; }
      .footer-divider { width: 80px; height: 1px; }
      .footer-divider--social { display: none; }
   
    }

    @media (max-width: 1100px) {
      .building-img{
        height: 570px;
        bottom: -100px;
      }
    }

    @media (max-width: 999px) {
      .building-img{
        height: 570px;
        bottom: -133px;
      }
    }



    /* ── RESPONSIVE ─────────────────────────────────────────── */
    @media (max-width: 900px) {
      .building-img{
        height: 400px;
        bottom: -76px;
      }
      .hero-content { padding-bottom: 32px; }
      .nova-sede { padding: 60px 40px; }
      .sede-grid { grid-template-columns: 1fr; gap: 40px; }
      .evento { grid-template-columns: 1fr; padding: 60px 40px; }
      .evento-building { display: none; }
      footer { flex-direction: column; padding: 40px; gap: 24px; }
      .footer-divider { width: 80px; height: 1px; }
      .footer-divider--social { display: none; }
           .footer-social { width: calc(100% + 80px); margin: 0 -40px -40px -40px; }
      .footer-social .social-midia { max-width: 100%; min-width: unset; width: 100%; border-radius: 0; padding-left: 0; }
      .footer-social .social-midia div { border-radius: 0; }
    }

    @media(max-width: 683px) {
      .building-img {
        height: 500px;
        bottom: -86px;
      }
      
    }
    
    @media (max-width: 400px) {
        .hero {
            min-height: 60vh;
            
        }
        
        .building-img {
            height: 350px;
        }
        
        .tagline-word {
            font-size: clamp(36px, 6vw, 76px);
        }
        
        .hero-content {
            z-index: 100;
        }
        
        .section-desc {
            font-size: 0.9rem;
        }
        
        .nova-sede {
            padding: 60px 32px;
        }
        
        .video-banner {
            height: 300px;
        }
        
        .evento .section-title {
            font-size: 2.1rem;
        }
    }
    