/* =====================================================
   Le Palmier - MAIN STYLESHEET
   Versão: 1.0.0
   ===================================================== */

/* ========== RESET & BASE ========== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 17px;
  line-height: 28px;
  color: #232625;
  background: #DBE3C5;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul, ol { list-style: none; }

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ========== HEADER ========== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s ease, padding 0.4s ease;
}

.site-header.scrolled {
  background: rgba(0, 0, 0, 0.2);
  padding: 14px 40px;
  backdrop-filter: blur(4px);
}

.header-left {
  display: flex;
  align-items: center;
  gap: 30px;
}

/* NAV MENU */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
}

.nav-menu > li {
  position: relative;
  margin: 0;
  padding: 0;
}

.nav-menu > li > a {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 2.2px;
  color: #FFFFFF;
  text-transform: uppercase;
  padding: 8px 0;
  position: relative;
  display: block;
}

.nav-menu > li > a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 0;
  height: 1px;
  background: #FFFFFF;
  transition: width 0.3s ease;
}

.nav-menu > li > a:hover::after { width: 100%; }

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  padding: 16px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.3s ease;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin: 0;
}

.nav-menu > li:hover > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 8px 24px;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 2.2px;
  color: #FFFFFF;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.dropdown-menu li a:hover {
  background: #DBE2C6;
  color: #062726;
}

/* Header Logo */
.header-logo {
  flex: 1;
  text-align: center;
}

.header-logo a {
  display: inline-block;
}

.header-logo img,
.header-logo .custom-logo {
  height: 60px;
  width: auto;
  margin: 0 auto;
  transition: height 0.4s ease;
}

.site-header.scrolled .header-logo img,
.site-header.scrolled .header-logo .custom-logo {
  height: 46px;
}

/* Header Right */
.header-right {
  display: flex;
  align-items: center;
}

.reservas-btn {
  display: inline-block;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 15px;
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
  padding: 12px 28px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all 0.3s ease;
  cursor: pointer;
  background: transparent;
}

.reservas-btn:hover {
  background: #FFFFFF;
  color: #062726;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
  z-index: 1100;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: #FFFFFF;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) { opacity: 0; }

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(6, 39, 38, 0.97);
  z-index: 1050;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu a,
.mobile-nav-list a {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 4px;
  color: #FFFFFF;
  text-transform: uppercase;
  padding: 14px 20px;
  text-align: center;
  display: block;
  transition: all 0.3s ease;
}

.mobile-menu a:hover { color: #C49871; }

.mobile-sub {
  font-size: 11px !important;
  letter-spacing: 3px !important;
  opacity: 0.7;
  padding: 8px 20px !important;
}

/* ========== HERO SECTION ========== */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: #000;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
}

.hero-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #FFFFFF;
  padding: 0 20px;
}

.hero-content h1 {
  font-family: 'Jost', sans-serif;
  font-weight: 200;
  font-size: 56px;
  letter-spacing: 8px;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 30px;
}

.hero-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-info a {
  color: #FFFFFF;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: opacity 0.3s ease;
}

.hero-info a:hover { opacity: 0.7; }

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-scroll span {
  font-family: 'Jost', sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.3);
  position: relative;
  overflow: hidden;
}

.scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 1px;
  height: 100%;
  background: #FFFFFF;
  animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
  0% { top: -100%; }
  100% { top: 100%; }
}

/* ========== TITLE SECTION ========== */
.title-section {
  background: #DBE3C5;
  padding: 80px 40px;
  text-align: center;
}

.title-section h3 {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 28px;
  line-height: 39px;
  letter-spacing: 3.36px;
  color: #062726;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.title-section .cursive-text {
  font-family: 'Mrs Saint Delafield', cursive;
  font-weight: 400;
  font-size: 55px;
  line-height: 39px;
  color: #C49871;
}

/* ========== SECTION ROWS (Le Palmier / Cozinha) ========== */
.lepalmier-section,
.cozinha-section {
  background: #DBE3C5;
  overflow: hidden;
}

.section-row {
  display: flex;
  align-items: stretch;
  max-width: 1400px;
  margin: 0 auto;
}

.section-col-text {
  width: 60%;
  padding: 80px 60px;
  position: relative;
}

.section-col-image {
  width: 40%;
  position: relative;
  overflow: hidden;
}

.section-col-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

.deco-text {
  font-family: 'Cormorant', serif;
  font-weight: 300;
  font-size: 100px;
  line-height: 116px;
  letter-spacing: 10px;
  color: rgba(255, 255, 255, 0.16);
  position: absolute;
  top: 60px;
  left: 60px;
  z-index: 0;
  user-select: none;
  pointer-events: none;
}

.section-col-text .section-inner {
  position: relative;
  z-index: 1;
}

.section-col-text h2 {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 36px;
  line-height: 41px;
  letter-spacing: 5.4px;
  color: #062726;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.section-col-text p {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 17px;
  line-height: 28px;
  color: #232625;
  margin-bottom: 20px;
}

.section-col-text p:last-child { margin-bottom: 0; }

/* Cozinha inverted */
.cozinha-section .section-col-text {
  order: 2;
  padding: 80px 60px 80px 40px;
}

.cozinha-section .section-col-image { order: 1; }

/* ========== CAROUSEL SECTION ========== */
.carousel-section {
  background: #DBE3C5;
  padding: 80px 0;
  overflow: hidden;
}

.carousel-section .section-heading {
  text-align: center;
  padding: 0 40px 40px;
}

.carousel-section .section-heading h2 {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 36px;
  line-height: 41px;
  letter-spacing: 5.4px;
  color: #062726;
  text-transform: uppercase;
}

.carousel-swiper {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.carousel-swiper .swiper-slide {
  border-radius: 12px;
  overflow: hidden;
}

.carousel-swiper .swiper-slide img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.carousel-swiper .swiper-button-next,
.carousel-swiper .swiper-button-prev {
  color: #062726;
  background: rgba(219, 226, 198, 0.8);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.carousel-swiper .swiper-button-next::after,
.carousel-swiper .swiper-button-prev::after {
  font-size: 18px;
  font-weight: 600;
}

.carousel-swiper .swiper-pagination-bullet {
  background: #062726;
  opacity: 0.3;
}

.carousel-swiper .swiper-pagination-bullet-active {
  opacity: 1;
  background: #062726;
}

.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 30px 30px;
  background: linear-gradient(transparent, rgba(0,0,0,0.5));
  color: #FFFFFF;
}

.slide-caption span {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 22px;
  letter-spacing: 4px;
  text-transform: uppercase;
}

/* ========== RESERVAS SECTION ========== */
.reservas-section {
  background: #1a1a1a;
  color: #FFFFFF;
  position: relative;
  overflow: hidden;
}

.reservas-section .section-row { max-width: 1400px; }

.reservas-section .section-col-text {
  width: 55%;
  padding: 100px 60px 100px 80px;
  position: relative;
}

.reservas-section .deco-text {
  top: 80px;
  left: 80px;
}

.reservas-section .section-col-image { width: 45%; }

.reservas-section .section-col-text h2 {
  color: #FFFFFF;
  margin-bottom: 40px;
}

.reservas-section .section-inner {
  position: relative;
  z-index: 1;
}

.reservas-info { margin-bottom: 40px; }

.reservas-info li {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 26px;
  color: rgba(255,255,255,0.85);
  padding-left: 20px;
  position: relative;
  margin-bottom: 6px;
}

.reservas-info li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #DBE271;
}

.reservas-btn-green {
  display: inline-block;
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 15px;
  color: #062726;
  background: #DBE2C6;
  padding: 16px 36px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.reservas-btn-green:hover {
  background: #c8d3af;
  transform: translateY(-1px);
}

.reservas-bottom-text {
  text-align: center;
  padding: 40px;
  font-family: 'Mrs Saint Delafield', cursive;
  font-size: 42px;
  color: rgba(255,255,255,0.6);
}

/* ========== PARALLAX SECTION ========== */
.parallax-section {
  position: relative;
  height: 500px;
  background-attachment: fixed;
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
}

.parallax-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #FFFFFF;
  padding: 0 40px;
}

.parallax-content .cursive-quote {
  font-family: 'Mrs Saint Delafield', cursive;
  font-weight: 400;
  font-size: 70px;
  line-height: 1.1;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.parallax-content .attribution {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}

.parallax-deco {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Cormorant', serif;
  font-weight: 300;
  font-size: 160px;
  letter-spacing: 16px;
  color: rgba(255, 255, 255, 0.06);
  z-index: 1;
  user-select: none;
  white-space: nowrap;
  pointer-events: none;
}

/* ========== BLOG / ACONTECE SECTION ========== */
.acontece-section {
  background: #DBE3C5;
  padding: 80px 0;
}

.acontece-section .section-heading {
  text-align: center;
  padding: 0 40px 50px;
}

.acontece-section .section-heading h2 {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 36px;
  line-height: 41px;
  letter-spacing: 5.4px;
  color: #062726;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.acontece-section .section-heading p {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 16px;
  color: #232625;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.blog-card {
  background: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.blog-card-image {
  position: relative;
  overflow: hidden;
  height: 240px;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-image img { transform: scale(1.05); }

.blog-date-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(6, 39, 38, 0.8);
  color: #FFFFFF;
  padding: 6px 14px;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 1.5px;
  border-radius: 4px;
}

.blog-card-body { padding: 24px; }

.blog-category {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 2px;
  color: #C49871;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.blog-card-body h5 {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 17px;
  line-height: 27px;
  letter-spacing: 2.38px;
  color: #062726;
  margin-bottom: 12px;
}

.blog-card-body h5 a {
  color: #062726;
  text-decoration: none;
}

.blog-card-body h5 a:hover { color: #C49871; }

.blog-card-body .excerpt {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 15px;
  line-height: 24px;
  color: #555;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.read-more {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 2px;
  color: #062726;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}

.read-more:hover { gap: 14px; }

.read-more-arrow {
  display: inline-block;
  width: 20px;
  height: 1px;
  background: #062726;
  position: relative;
  flex-shrink: 0;
}

.read-more-arrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: -3px;
  width: 7px;
  height: 7px;
  border-right: 1px solid #062726;
  border-top: 1px solid #062726;
  transform: rotate(45deg);
}

/* ========== INSTAGRAM SECTION ========== */
.instagram-section {
  background: #DBE3C5;
  padding: 80px 0 60px;
}

.instagram-section .section-heading {
  text-align: center;
  padding: 0 40px 40px;
}

.instagram-section .section-heading h2 {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 36px;
  line-height: 41px;
  letter-spacing: 5.4px;
  color: #062726;
  text-transform: uppercase;
}

.insta-profile {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  margin-bottom: 40px;
  padding: 0 40px;
}

.insta-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid #062726;
  overflow: hidden;
  flex-shrink: 0;
}

.insta-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.insta-profile-info h6 {
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 2px;
  color: #062726;
  text-transform: uppercase;
}

.insta-profile-info p {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 12px;
  color: #666;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.insta-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
}

.insta-item a {
  display: block;
  width: 100%;
  height: 100%;
}

.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.insta-item:hover img { transform: scale(1.08); }

.insta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.insta-item:hover .insta-overlay { opacity: 1; }

.insta-likes {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 6px;
}

.insta-handle {
  text-align: center;
  margin-top: 30px;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 3px;
  color: #062726;
  text-transform: uppercase;
}

.insta-handle a:hover { color: #C49871; }

/* ========== FOOTER MAP ========== */
.footer-map {
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.footer-map iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
  filter: grayscale(20%);
}

@media (max-width: 768px) {
  .footer-map iframe { height: 260px; }
}

/* ========== FOOTER ========== */
.site-footer {
  background: #1a1a1a;
  color: #FFFFFF;
  padding: 80px 40px 40px;
}

.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-col h5 {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 2px;
  color: #FFFFFF;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col p,
.footer-col a {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 24px;
  color: #CED8D8;
}

.footer-col a:hover { color: #DBE271; }

.footer-col .footer-item { margin-bottom: 20px; }

.footer-col .schedule {
  font-size: 13px;
  line-height: 22px;
  color: rgba(206, 216, 216, 0.8);
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo img { height: 120px; width: auto; }

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  transition: all 0.3s ease;
  color: #CED8D8;
}

.footer-social a:hover {
  border-color: #DBE271;
  background: rgba(219, 226, 113, 0.1);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: #CED8D8;
  transition: fill 0.3s ease;
}

.footer-social a:hover svg { fill: #DBE271; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 30px;
  text-align: center;
  max-width: 1400px;
  margin: 0 auto;
}

.footer-bottom p {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 11px;
  line-height: 20px;
  letter-spacing: 2px;
  color: #CED8D8;
}

/* ========== WHATSAPP BUTTON ========== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
  animation: none;
}

.whatsapp-float svg { fill: #FFFFFF; }

/* ========== SCROLL ANIMATIONS ========== */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 1s ease;
}

.fade-in.visible { opacity: 1; }

/* ========== PAGINATION ========== */
.nav-links {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.nav-links .page-numbers {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  color: #062726;
  padding: 10px 16px;
  border: 1px solid rgba(6,39,38,0.2);
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.nav-links .page-numbers.current,
.nav-links .page-numbers:hover {
  background: #062726;
  color: #DBE3C5;
  border-color: #062726;
}

/* ========== BLOG PAGE / ARCHIVE ========== */
.blog-page-main,
.archive-main {
  background: #DBE3C5;
  min-height: 80vh;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .nav-menu { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }

  .section-row { flex-direction: column; }

  .section-col-text,
  .cozinha-section .section-col-text {
    width: 100%;
    order: 2;
    padding: 50px 30px;
  }

  .section-col-image,
  .cozinha-section .section-col-image {
    width: 100%;
    order: 1;
    height: 350px;
  }

  .reservas-section .section-col-text {
    width: 100%;
    padding: 60px 30px;
  }

  .reservas-section .section-col-image {
    width: 100%;
    height: 350px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .insta-grid { grid-template-columns: repeat(3, 1fr); }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-logo { order: -1; }

  .hero-content h1 {
    font-size: 34px;
    letter-spacing: 4px;
  }

  .deco-text {
    font-size: 60px;
    top: 40px;
    left: 30px;
  }

  .parallax-section {
    background-attachment: scroll;
    height: 400px;
  }

  .parallax-content .cursive-quote { font-size: 48px; }

  .carousel-swiper .swiper-slide img { height: 300px; }

  .title-section .cursive-text { font-size: 38px; }

  .reservas-btn { display: none; }
}

@media (max-width: 768px) {
  .site-header { padding: 14px 20px; }
  .site-header.scrolled { padding: 10px 20px; }
  .header-logo img,
  .header-logo .custom-logo { height: 44px; }
  .site-header.scrolled .header-logo img,
  .site-header.scrolled .header-logo .custom-logo { height: 36px; }

  .hero-content h1 {
    font-size: 28px;
    letter-spacing: 3px;
  }

  .section-col-text h2 {
    font-size: 24px;
    line-height: 30px;
    letter-spacing: 3px;
  }

  .title-section { padding: 50px 20px; }

  .title-section h3 {
    font-size: 22px;
    letter-spacing: 2px;
  }

  .carousel-section .section-heading h2,
  .acontece-section .section-heading h2,
  .instagram-section .section-heading h2 {
    font-size: 24px;
    letter-spacing: 3px;
  }

  .insta-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    padding: 0 20px;
  }

  .insta-profile {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .cookie-notice {
    flex-direction: column;
    text-align: center;
    gap: 14px;
    padding: 16px 20px;
  }

  .whatsapp-float {
    bottom: 80px;
    right: 16px;
    width: 48px;
    height: 48px;
  }

  .parallax-deco { font-size: 80px; }

  .reservas-bottom-text {
    font-size: 32px;
    padding: 24px 20px;
  }

  .blog-grid { padding: 0 20px; }

  .site-footer { padding: 60px 20px 30px; }
}

@media (max-width: 480px) {
  .insta-grid { grid-template-columns: repeat(2, 1fr); }

  .hero-content h1 {
    font-size: 22px;
    letter-spacing: 2px;
  }

  .hero-info a { font-size: 11px; }

  .blog-grid { grid-template-columns: 1fr; }
}

/* ========== ACCESSIBILITY ========== */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

:focus-visible {
  outline: 2px solid #C49871;
  outline-offset: 2px;
}

/* ========== WORDPRESS SPECIFIC ========== */
.alignleft { float: left; margin-right: 20px; margin-bottom: 20px; }
.alignright { float: right; margin-left: 20px; margin-bottom: 20px; }
.aligncenter { display: block; margin: 20px auto; }
.wp-caption { max-width: 100%; }
.wp-caption-text {
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  color: #666;
  text-align: center;
  padding: 8px 0;
}
.gallery { margin: 20px 0; }
.sticky { }
.bypostauthor { }

/* Custom Logo adjustment */
.custom-logo-link { display: inline-block; }
/* ========== EVENTOS MODAL ========== */
.eventos-modal-overlay {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: rgba(0,0,0,0.85);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  backdrop-filter: blur(5px);
}

.eventos-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.eventos-modal {
  background: #fff;
  width: 90%;
  max-width: 500px;
  padding: 40px;
  border-radius: 8px;
  position: relative;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.eventos-modal .close-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #333;
}

.eventos-modal h3 {
  font-family: 'Jost', sans-serif;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-size: 24px;
  color: #062726;
}

.eventos-modal p {
  margin-bottom: 20px;
  font-size: 14px;
  color: #666;
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  font-size: 13px;
  margin-bottom: 5px;
  color: #333;
  text-transform: uppercase;
  font-family: 'Jost', sans-serif;
}

.form-group input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: 'Jost', sans-serif;
  font-size: 15px;
}

.btn-enviar {
  width: 100%;
  padding: 15px;
  background: #DBE2C6;
  color: #062726;
  border: none;
  border-radius: 4px;
  font-family: 'Roboto', sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 10px;
}

.btn-enviar:hover {
  background: #c8d3af;
}
