/* =============================================
   OZII EVENTOS – style.css
   ============================================= */

:root {
  --green-dark:  #03240d;
  --green-mid:   #136630;
  --green-light: #58bd39;
  --green-btn:   #65ca46;
  --dark-bar:    #292b33;
  --white:       #ffffff;
  --text:        #03240d;
  --muted:       #a8a8a8;
  --border:      #d2d4d3;
  --font:        'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-w:       1080px;
  --radius:      10px;
  --shadow:      0 8px 30px rgba(0,0,0,0.12);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
  background: #ffffff;
}

a { color: var(--green-dark); text-decoration: none; }
a:hover { color: var(--green-mid); }

img { max-width: 100%; height: auto; display: block; }

h1,h2,h3,h4,h5,h6 { font-family: var(--font); color: var(--green-dark); font-weight: 700; }
h1 { font-size: 54px; line-height: 1.05; }
h2 { font-size: 48px; line-height: 1.1; }
h3 { font-size: 27px; line-height: 1.4; }
h4 { font-size: 21px; }
h5 { font-size: 18px; }
h6 { font-size: 27px; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 20px;
}

/* =============================================
   WHATSAPP FLOAT
   ============================================= */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 22px rgba(0,0,0,.22);
  z-index: 99999;
  transition: transform .2s, box-shadow .2s;
}
.whatsapp-float:hover { transform: scale(1.06); box-shadow: 0 10px 26px rgba(0,0,0,.28); }
.whatsapp-float svg { width: 30px; height: 30px; fill: #fff; }

.whatsapp-tooltip {
  position: fixed;
  right: 92px;
  bottom: 30px;
  background: #fff;
  color: #222;
  padding: 10px 14px;
  border-radius: 10px;
  box-shadow: 0 8px 22px rgba(0,0,0,.14);
  font-size: 14px;
  font-weight: 600;
  z-index: 99998;
  white-space: nowrap;
}

/* =============================================
   HEADER / TOP BAR
   ============================================= */
#header { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; }

#top-bar {
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  transition: all .3s;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo-img {
  height: 60px;
  width: auto;
  display: block;
}

#main-nav ul {
  list-style: none;
  display: flex;
  gap: 0;
}

#main-nav ul li a {
  display: block;
  padding: 0 15px;
  font-size: 15px;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 80px;
  transition: color .2s;
  position: relative;
}

#main-nav ul li a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 15px;
  right: 15px;
  height: 2px;
  background: var(--green-mid);
  transform: scaleX(0);
  transition: transform .2s;
}

#main-nav ul li a:hover { color: var(--green-mid); }
#main-nav ul li a:hover::after { transform: scaleX(1); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--green-dark);
  transition: all .3s;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: 100vh;
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 80px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
  padding: 60px 20px;
}

.hero-left { flex: 1; }

.hero-right {
  flex: 0 0 420px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.hero-title {
  color: #ffffff;
  font-size: 36px;
  text-align: right;
  margin-bottom: 10px;
}

.reservation-form-box {
  background: #ffffff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.reservation-form-box h6 {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--green-dark);
}

.hero-note {
  color: #ffffff;
  text-align: center;
  font-size: 14px;
  margin: 0;
}

/* =============================================
   FORMS
   ============================================= */
.form-group { margin-bottom: 12px; }
.form-row { display: flex; gap: 12px; }
.form-row .half { flex: 1; }

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="date"] {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid var(--green-mid);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  color: var(--green-dark);
  background: transparent;
  outline: none;
  transition: border-color .2s, background .2s;
}

input:focus {
  border-color: var(--green-dark);
  background: rgba(233,245,252,0.3);
}

input::placeholder { color: #a6a9a7; font-weight: 400; }

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  cursor: pointer;
}
.checkbox-group input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--green-dark); }

.btn-submit {
  background: var(--green-dark);
  color: #ffffff;
  border: none;
  border-radius: 5px;
  padding: 16px 24px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s, transform .15s;
  width: auto;
}
.btn-submit:hover { background: var(--green-btn); transform: translateY(-1px); }
.btn-full { width: 100%; }

/* =============================================
   SECTION COMMONS
   ============================================= */
.section { padding: 75px 0; }

.section-title {
  text-align: center;
  margin-bottom: 10px;
}
.section-title.center { text-align: center; }

.divider-space { height: 30px; }

.section-divider {
  max-width: calc(var(--max-w) - 30%);
  margin: 0 auto;
  height: 1px;
  background: var(--border);
}

.spacer-50 { height: 50px; }
.spacer-20 { height: 20px; }

/* =============================================
   EVENTOS GRID
   ============================================= */
.eventos-grid {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.evento-card {
  flex: 1 1 180px;
  max-width: 220px;
  text-align: center;
}

.hover-box {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
}

.hover-box img {
  width: 100%;
  display: block;
  transition: opacity .35s;
}

.hover-box .img-visible { position: relative; z-index: 1; }
.hover-box .img-hover {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  transition: opacity .35s;
}
.hover-box:hover .img-hover { opacity: 1; }
.hover-box:hover .img-visible { opacity: 0; }

.evento-label {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green-dark);
  text-transform: uppercase;
  letter-spacing: .5px;
}

/* =============================================
   BENEFITS
   ============================================= */
.benefits-section { padding: 30px 0 50px; }

.benefit-row {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 20px;
}

.benefit-row.reverse { flex-direction: row; }

.benefit-img-col {
  flex: 0 0 48%;
  max-width: 48%;
}
.benefit-img-col img {
  width: 100%;
  border-radius: 6px;
  display: block;
}

.benefit-text-col { flex: 1; padding: 0 20px; }
.benefit-text-col h3 { margin-bottom: 20px; }

.feature-list { margin-top: 15px; }
.feature-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 14px;
}
.feature-val { color: var(--green-mid); font-weight: 700; }
.feature-divider { height: 1px; background: var(--border); margin: 2px 0; }

.pdf-link {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
  background: transparent;
  padding: 0 0 0 60px;
  background-image: url('https://oziieventos.com.br/wp-content/uploads/2020/03/loans3-pdf.png');
  background-repeat: no-repeat;
  background-position: left center;
  min-height: 50px;
}
.pdf-link h5 { margin-bottom: 2px; }
.pdf-link h5 a { color: var(--green-dark); }
.pdf-link h5 a:hover { color: var(--green-mid); }
.pdf-size { font-size: 12px; color: var(--muted); margin: 0; }

/* =============================================
   MISSION
   ============================================= */
.mission-section { background: #f9f9f9; }

.mission-row {
  display: flex;
  gap: 60px;
  margin-bottom: 60px;
}
.mission-col { flex: 1; }
.mission-col h3 { margin-bottom: 5px; }
.mission-hr {
  border: none;
  border-top: 1px solid #ccc;
  margin: 15px 0;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials { text-align: center; }

.testimonial-slider { position: relative; }

.testimonial-item {
  display: none;
  align-items: center;
  gap: 40px;
  text-align: left;
  animation: fadeIn .5s ease;
}
.testimonial-item.active { display: flex; }

@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.test-photo {
  flex: 0 0 100px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
}
.test-photo img { width: 100%; height: 100%; object-fit: cover; }

.test-content { flex: 1; }
.quote-icon { font-size: 48px; color: var(--green-dark); line-height: 1; font-weight: 900; }
.test-content blockquote {
  font-style: italic;
  font-size: 15px;
  color: #444;
  margin: 8px 0 12px;
  border: none;
  padding: 0;
}
.test-dots { display: flex; gap: 5px; margin-bottom: 10px; }
.test-dots span { width: 10px; height: 3px; background: var(--green-dark); display: block; }

.test-author h5 { margin: 0; font-size: 16px; }
.test-author span { font-size: 13px; color: var(--muted); }

.slider-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: none;
  background: #ccc;
  cursor: pointer;
  transition: background .2s;
}
.dot.active { background: var(--green-dark); }

/* =============================================
   APPLY / BANNER
   ============================================= */
.apply-section {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: transparent;
  padding: 220px 0 120px;
  position: relative;
  text-align: center;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.apply-overlay {
  display: none;
}

.apply-title {
  position: relative;
  z-index: 2;
  color: #ffffff;
  font-size: 48px;
}

/* =============================================
   GALLERY
   ============================================= */
.gallery-section { padding: 0; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.gallery-item {
  display: block;
  overflow: hidden;
  aspect-ratio: 901/537;
  border: 2px solid #cfcfcf;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s, filter .4s;
}
.gallery-item:hover img { transform: scale(1.05); filter: brightness(.85); }

/* =============================================
   LIGHTBOX
   ============================================= */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 99990;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.lightbox-overlay.open { display: flex; }
.lightbox-overlay img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 4px;
  cursor: default;
}
.lb-close {
  position: absolute;
  top: 20px; right: 30px;
  background: none; border: none;
  color: #fff; font-size: 28px;
  cursor: pointer; z-index: 2;
}
.lb-prev, .lb-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,.15);
  border: none; color: #fff; font-size: 28px;
  padding: 15px 20px; cursor: pointer; z-index: 2;
  border-radius: 4px; transition: background .2s;
}
.lb-prev { left: 20px; }
.lb-next { right: 20px; }
.lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,.3); }

/* =============================================
   CONTACT
   ============================================= */
.contact-section {
  padding: 150px 0 50px;
  background-image: url('https://oziieventos.com.br/wp-content/uploads/2020/03/loans3-footerbg.png');
  background-repeat: no-repeat;
  background-position: center bottom;
}

.contact-header {
  text-align: center;
  margin-bottom: 40px;
}

.contact-icon {
  margin: 0 auto 20px;
  width: 92px;
}

.contact-header h1 { font-size: 48px; margin-bottom: 10px; }
.contact-header p { font-size: 16px; color: #555; }

.contact-form-wrap {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.contact-form-title { margin-bottom: 20px; }

.contact-form { text-align: left; }
.contact-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--green-dark);
}
.contact-form .form-group { margin-bottom: 16px; }

/* =============================================
   MAP
   ============================================= */
.map-section { line-height: 0; }
.map-section iframe { display: block; }

/* =============================================
   FOOTER
   ============================================= */
#footer { background: var(--dark-bar); color: #bbbbbb; }

.footer-widgets {
  background: var(--dark-bar);
  padding: 70px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-logo {
  width: 120px;
  margin: 0 auto;
}

#footer h4 {
  color: #d3d3d3;
  font-size: 18px;
  margin-bottom: 15px;
}

#footer p { color: #bbbbbb; font-size: 14px; margin-bottom: 6px; }

.social-icons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.social-icons img { border-radius: 4px; }

.footer-form {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}
.footer-form input {
  flex: 1;
  padding: 10px 12px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius);
  background: rgba(255,255,255,.05);
  color: #fff;
  font-family: var(--font);
  font-size: 14px;
}
.footer-form input::placeholder { color: rgba(255,255,255,.5); }
.footer-form button {
  background: var(--green-dark);
  color: #fff;
  border: none;
  border-radius: 5px;
  padding: 10px 16px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s;
}
.footer-form button:hover { background: var(--green-btn); }

.footer-copy {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  text-align: center;
}
.footer-copy p { color: #65666c; font-size: 13px; margin: 0; }
.footer-copy a { color: #65666c; }
.footer-copy a:hover { color: #fff; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 959px) {
  h1 { font-size: 36px; }
  h2 { font-size: 30px; }
  h3 { font-size: 22px; }

  .hero-inner { flex-direction: column; padding: 40px 20px; }
  .hero-right { flex: none; width: 100%; }
  .hero-title { text-align: center; font-size: 26px; }

  .benefit-row, .benefit-row.reverse { flex-direction: column; }
  .benefit-img-col { max-width: 100%; }
  .mission-row { flex-direction: column; gap: 30px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }

  .testimonial-item { flex-direction: column; text-align: center; }
  .test-dots { justify-content: center; }
}

@media (max-width: 767px) {
  .menu-toggle { display: flex; }

  #main-nav {
    display: none;
    position: absolute;
    top: 80px;
    left: 0; right: 0;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,.1);
    z-index: 999;
  }
  #main-nav.open { display: block; }
  #main-nav ul { flex-direction: column; }
  #main-nav ul li a { line-height: 50px; border-bottom: 1px solid #eee; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  .eventos-grid { gap: 6px; }
  .evento-card { flex: 1 1 140px; }

  .footer-grid { grid-template-columns: 1fr; }

  .whatsapp-tooltip { display: none; }

  .contact-section { padding: 80px 0 50px; }
  .apply-section { padding: 100px 0 60px; }
  .apply-title { font-size: 30px; }

  .form-row { flex-direction: column; }

  h1 { font-size: 28px; }
  h2 { font-size: 26px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .reservation-form-box { padding: 20px; }
}

/* ----------- Scroll Animations ----------- */
.animate-left, .animate-right {
  opacity: 0;
  transition: opacity .7s ease, transform .7s ease;
}
.animate-left  { transform: translateX(-40px); }
.animate-right { transform: translateX(40px); }
.animate-left.animated, .animate-right.animated {
  opacity: 1;
  transform: none;
}
