/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== CUSTOM FONTS ===== */
@font-face {
  font-family: "BrownSugar";
  src: url("./fonts/BrownSugar.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "BrownSugar";
  src: url("./fonts/BrownSugar.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

html,
body {
  font-family: "Quicksand", sans-serif;
  font-weight: 300;
  background-color: #ffffff;
  color: #000000;
  overflow-x: hidden;
  line-height: 1.2;
}

/* Evita flash durante carregamento */
.preload * {
  animation-duration: 0s !important;
  animation-delay: 0s !important;
  transition-duration: 0s !important;
  transition-delay: 0s !important;
}

/* ===== LOADING SCREEN ===== */
.loading-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  flex-direction: column;
}

.loading-text {
  font-family: "BrownSugar", sans-serif;
  font-size: 2rem;
  font-weight: normal;
  letter-spacing: 10px;
  margin-bottom: 2rem;
  color: #5c1e2d;
}

.loading-bar {
  width: 300px;
  height: 2px;
  background: rgba(92, 30, 45, 0.2);
  overflow: hidden;
}

.loading-progress {
  width: 0%;
  height: 100%;
  background: #5c1e2d;
  transition: width 0.3s ease;
}

/* ===== NAVIGATION - EXATO COMO EVAGHER ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  transform: translateY(-100%);
}

.logo {
  font-family: "BrownSugar", sans-serif;
  font-size: 1.5rem;
  font-weight: normal;
  letter-spacing: 2px;
  color: #5c1e2d;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
}

.nav-menu a {
  font-family: "Quicksand", serif;
  color: #5c1e2d;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: opacity 0.3s ease;
  position: relative;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: #5c1e2d;
  transition: width 0.3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

/* ===== HAMBURGER MENU ===== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  position: relative;
  width: 40px;
  height: 40px;
}

.hamburger-line {
  width: 25px;
  height: 2px;
  background-color: #5c1e2d;
  margin: 3px 0;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Hamburger Animation - X Transform */
.hamburger.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* ===== MOBILE MENU OVERLAY ===== */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mobile-nav-menu {
  list-style: none;
  text-align: center;
  padding: 0;
  margin: 0;
}

.mobile-nav-menu li {
  margin: 2rem 0;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.3s ease;
}

.mobile-menu-overlay.active .mobile-nav-menu li {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav-menu li:nth-child(1) {
  transition-delay: 0.1s;
}
.mobile-nav-menu li:nth-child(2) {
  transition-delay: 0.2s;
}
.mobile-nav-menu li:nth-child(3) {
  transition-delay: 0.3s;
}
.mobile-nav-menu li:nth-child(4) {
  transition-delay: 0.4s;
}
.mobile-nav-menu li:nth-child(5) {
  transition-delay: 0.5s;
}

.mobile-nav-menu a {
  font-family: "Quicksand", sans-serif;
  color: #5c1e2d;
  text-decoration: none;
  font-size: 1.3rem;
  /* font-weight: 400; */
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
  padding: 1rem 2rem;
  display: block;
}

.mobile-nav-menu a:hover {
  color: #8b3447;
  transform: scale(1.05);
}

.mobile-nav-menu a::after {
  content: "";
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: #5c1e2d;
  transition: width 0.3s ease;
}

.mobile-nav-menu a:hover::after {
  width: 60%;
}

/* ===== HERO SECTION ===== */
.hero {
  height: 120vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #ffffff;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #f3efea 0%, #ffffff 50%, #f3efea 100%);
}

.hero-image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transition: all 0.8s ease;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 40%);
  z-index: 2;
}

.hero-content {
  text-align: center;
  z-index: 100;
  position: relative;
  z-index: 3;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 300;
  letter-spacing: 0.05em;
}

.hero-title {
  font-family: "BrownSugar", sans-serif;
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: normal;
  letter-spacing: 20px;
  line-height: 0.9;
  color: #decfd3;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translateY(100px);
}

.hero-subtitle {
  font-family: "Quicksand", serif;
  font-size: 1.2rem;
  font-weight: 300;
  letter-spacing: 5px;
  color: #decfd3;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(50px);
}

.about-content h2 {
  font-family: "BrownSugar", sans-serif;
  font-size: 3rem;
  font-weight: normal;
  letter-spacing: 5px;
  line-height: 1.2;
  color: #5c1e2d;
  margin-bottom: 0;
}

.portfolio-header h2 {
  font-family: "BrownSugar", sans-serif;
  font-size: 3rem;
  font-weight: normal;
  letter-spacing: 5px;
  margin-bottom: 1rem;
  color: #5c1e2d;
}

.bridal-title {
  font-family: "BrownSugar", sans-serif;
  height: 22rem;
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: normal;
  letter-spacing: 5px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(50px);
}
.bridal-text-content h3 {
  font-family: "BrownSugar", sans-serif;
  font-size: 2.5rem;
  font-weight: normal;
  letter-spacing: 3px;
  margin-bottom: 2rem;
  color: #5c1e2d;
}

@media (max-width: 1024px) {
  .bridal-details {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
}

.contact h2 {
  font-family: "BrownSugar", sans-serif;
  font-size: 3rem;
  font-weight: normal;
  letter-spacing: 5px;
  margin-bottom: 3rem;
  color: #5c1e2d;
}

.portfolio-item {
  position: relative;
  height: 500px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0;
  transform: translateY(50px);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
}

.portfolio-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(92, 30, 45, 0.2);
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
  filter: grayscale(20%);
}

.portfolio-item:hover img {
  transform: scale(1.1);

}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(92, 30, 45, 0.9), rgb(21 7 7 / 15%));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: all 0.5s ease;
  padding: 1rem;
}

.portfolio-overlay h3 {
  font-family: "BrownSugar", sans-serif;
  font-size: 1.5rem;
  font-weight: normal;
  letter-spacing: 2px;
  text-align: center;
  color: #ffffff;
  transform: translateY(20px);
  transition: transform 0.5s ease;
}


.portfolio-item:hover .portfolio-overlay h3 {
  transform: translateY(0);
}

/* ===== BRIDAL SECTION ===== */
.bridal-section {
  min-height: 100vh;
  padding: 5rem 0rem;
  background: #f3efea;
  position: relative;
}

.bridal-hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  margin-bottom: 4rem;
}

.bridal-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.bridal-slide {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.bridal-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 0 8%;
  filter: grayscale(40%);
  transition: all 0.8s ease;
}

.bridal-hero:hover .bridal-hero-image {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.bridal-hero-content {
  position: absolute;
  top: 50%;
  left: 5%;
  color: #ffffff;
  z-index: 2;
}

.bridal-list {
  list-style: none;
  padding: 0;
}

.bridal-list li {
  padding: 0.5rem 0;
  color: #666666;
  position: relative;
  padding-left: 2rem;
}

.bridal-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: #5c1e2d;
  font-size: 1.2rem;
}

.bridal-cta {
  text-align: center;
}

.bridal-cta h3 {
  font-size: 2rem;
  font-weight: 100;
  letter-spacing: 3px;
  margin-bottom: 2rem;
  color: #5c1e2d;
}

.bridal-cta-button:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(92, 30, 45, 0.3);
}

.bridal-cta-button:hover::before {
  left: 0;
}

.button-cta {
  text-align: center;
}

/* ===== CONTACT SECTION ===== */
.contact {
  padding: 5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3efea;
}

.contact-content {
  max-width: 1200px;
  text-align: center;
  opacity: 0;
  transform: translateY(50px);
}

.contact p {
  font-family: "Quicksand", serif;
  font-size: 1.2rem;
  line-height: 1.8;
  opacity: 0.8;
  color: #666666;
}

.contact-grid {
  display: flex;
  gap: 4rem;
  margin-bottom: 4rem;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.contact-map {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}

.contact-icon {
  background: rgba(92, 30, 45, 0.1);
  padding: 15px;
  border-radius: 50%;
  color: #5c1e2d;
  flex-shrink: 0;
  transition: all 0.3s ease;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon i {
  font-size: 20px;
}

.contact-item:hover .contact-icon {
  background: #5c1e2d;
  color: #ffffff;
  transform: scale(1.1);
}

.contact-details h4 {
  font-family: "Quicksand", sans-serif;
  font-size: 1.2rem;
  font-weight: normal;
  letter-spacing: 1px;
  color: #5c1e2d;
}

.contact-divider {
  color: #5c1e2d;
  width: 25rem;
  margin: 0 auto;
}

.contact-details {
  width: 100%;
  text-align: left;
}

@media (max-width: 375px) {
  .contact-details {
    text-align: center;
  }

  .contact-item {
    flex-wrap: wrap;
    display: flex;
    justify-content: center;
  }
}

.contact-details p {
  font-family: "Quicksand", serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #666666;
  margin: 0;
}

.contact-link {
  font-family: "Quicksand", serif;
  font-size: 1.2rem;
  line-height: 1.8;
  opacity: 0.8;
  color: #666666;
  text-decoration: none;
}

.contact-link:hover {
  color: #8b2942;
}

.contact-cta {
  text-align: center;
  margin-top: 3rem;
}

.contact-cta-button {
  font-family: "Quicksand", serif;
  display: inline-block;
  padding: 1.5rem 3rem;
  border: 2px solid #5c1e2d;
  color: #5c1e2d;
  text-decoration: none;
  letter-spacing: 2px;
  font-weight: 300;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 8px;
}

.contact-cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #5c1e2d;
  transition: left 0.3s ease;
  z-index: -1;
}

.contact-cta-button:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(92, 30, 45, 0.3);
}

.contact-cta-button:hover::before {
  left: 0;
}

/* Responsive para Contact */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-info {
    padding-left: 0;
  }

  .contact-map iframe {
    height: 300px;
  }

  .contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    flex-direction: column;
  }

  .contact-details {
    width: auto;
    text-align: center;
  }

  .loading-text img {
    width: 100%;
  }

  .footer-contact-item {
    display: flex;
    align-items: center !important;
    gap: 0.8rem;
    margin-bottom: 1rem;
    flex-direction: column;
    align-content: center;
  }
}

/* ===== FLOATING ELEMENTS ===== */
.floating-elements {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.floating-dot {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #5c1e2d;
  border-radius: 50%;
  opacity: 0.3;
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
  position: fixed;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 1000;
}

@media (max-width: 600px) {
  .scroll-indicator {
    display: none;
  }
}

.scroll-dot {
  width: 10px;
  height: 10px;
  border: 1px solid rgba(92, 30, 45, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.scroll-dot.active {
  background: #5c1e2d;
  border-color: #5c1e2d;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 798px) {
  .nav-menu {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-title {
    letter-spacing: 10px;
  }

  .about-content h2 {
    font-size: 2rem;
  }

  .contact h2 {
    font-size: 2rem;
  }
}

.hero-cta {
  display: inline-block;
  padding: 1rem 3rem;
  border: 2px solid #5c1e2d;
  color: #5c1e2d;
  text-decoration: none;
  letter-spacing: 2px;
  font-weight: 300;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  font-family: "Quicksand", serif;
  opacity: 0;
  transform: translateY(30px);
}

.hero-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #5c1e2d;
  transition: left 0.3s ease;
  z-index: -1;
}

.hero-cta:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(92, 30, 45, 0.3);
}

.hero-cta:hover::before {
  left: 0;
}

/* ===== WEBGL CANVAS ===== */
#webgl-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.1;
}

/* ===== ABOUT SECTION ===== */
.about {
  padding: 5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: #f3efea;
}

.about-content {
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "title"
    "image"
    "text";
  gap: 0rem 4rem;
}

.about-text {
  opacity: 0;
  transform: translateY(50px);
}

.about-text p {
  font-family: "Quicksand", serif;
  font-size: 1.1rem;
  line-height: 1.8;
  font-weight: 300;
  opacity: 0.8;
  color: #666666;
  margin-bottom: 0;
  width: 30rem;
}

.about-image {
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateX(50px);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 0 20%;
  transition: all 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

/* ===== PORTFOLIO SECTION ===== */
.portfolio {
  padding: 5rem 3rem;
  background: #ffffff;
}

.portfolio-header {
  text-align: center;
  margin-bottom: 5rem;
  opacity: 0;
  transform: translateY(30px);
}

.portfolio-header p {
  font-family: "Quicksand", serif;
  font-size: 1.1rem;
  color: #666666;
  font-weight: 300;
}

.portfolio-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 1024px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}

/* ===== BRIDAL SECTION ===== */
.bridal-section {
  min-height: 100vh;
  padding: 5rem 0rem;
  background: #ffffff;
  position: relative;
}

.bridal-hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  margin-bottom: 4rem;
}

.bridal-details {
  display: flex;
  justify-content: center;
}

.bridal-content {
  display: flex;
  justify-content: center;
  align-items: center;
}

.bridal-services {
  border-left: 1px solid #5c1e2d;
  padding-left: 35px;
  display: flex;
  align-items: center;
}

.bridal-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  filter: grayscale(20%);
  transition: all 0.5s ease;
}

.bridal-image:hover {
  filter: grayscale(0%);
  transform: scale(1.05);
}

.bridal-text-content {
  opacity: 0;
  transform: translateX(50px);
  display: flex;
  flex-direction: column;
  max-width: 25rem;
  padding-right: 35px;
}

.bridal-text-content p {
  font-family: "Quicksand", serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #666666;
}

.bridal-list {
  list-style: none;
  padding: 0;
  gap: 10px;
  display: flex;
  flex-direction: column;
}

.bridal-list li {
  font-family: "Quicksand", serif;
  padding: 0.5rem 0;
  color: #666666;
  position: relative;
  padding-left: 2rem;
  opacity: 0;
  transform: translateY(20px);
}

.bridal-cta h3 {
  font-family: "BrownSugar", sans-serif;
  font-size: 2rem;
  font-weight: normal;
  letter-spacing: 3px;
  margin-bottom: 2rem;
  color: #5c1e2d;
}

.bridal-cta-button {
  font-family: "Quicksand", serif;
  display: inline-block;
  padding: 1.5rem 3rem;
  border: 2px solid #5c1e2d;
  color: #5c1e2d;
  text-decoration: none;
  letter-spacing: 2px;
  font-weight: 300;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
}

.contact p {
  font-family: "Quicksand", serif;
  font-size: 1.2rem;
  line-height: 1.8;
  opacity: 0.8;
  color: #666666;
}

.form-group input,
.form-group textarea {
  font-family: "Quicksand", serif;
  width: 100%;
  padding: 1rem;
  background: transparent;
  border: 1px solid rgba(92, 30, 45, 0.3);
  color: #000;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.submit-btn {
  font-family: "Quicksand", serif;
  padding: 1rem 2rem;
  background: transparent;
  border: 1px solid #5c1e2d;
  color: #5c1e2d;
  cursor: pointer;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* ===== PORTFOLIO SLIDER ===== */
.portfolio-slider {
  padding: 5rem 0;
  background: #ffffff;
  position: relative;
}

.portfolio-slider-header {
  text-align: center;
  margin-bottom: 5rem;
  opacity: 0;
  transform: translateY(30px);
}

.portfolio-slider-header h2 {
  font-family: "BrownSugar", sans-serif;
  font-size: 3rem;
  font-weight: normal;
  letter-spacing: 5px;
  margin-bottom: 1rem;
  color: #5c1e2d;
}

.portfolio-slider-header p {
  font-family: "Quicksand", serif;
  font-size: 1.1rem;
  color: #666666;
  font-weight: 300;
}

.slider-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  height: 600px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.slider-wrapper {
  display: flex;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide {
  min-width: 100%;
  position: relative;
  overflow: hidden;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: grayscale(20%) brightness(0.9);
  transition: all 0.8s ease;
}

.slide:hover img {
  filter: grayscale(0%) brightness(1.1);
  transform: scale(1.05);
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(92, 30, 45, 0.7), rgba(0, 0, 0, 0.5));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.5s ease;
}

.slide:hover .slide-overlay {
  opacity: 1;
}

.slide-overlay h3 {
  font-family: "BrownSugar", sans-serif;
  font-size: 2rem;
  font-weight: normal;
  letter-spacing: 3px;
  text-align: center;
  color: #ffffff;
  text-transform: uppercase;
  transform: translateY(20px);
  transition: transform 0.5s ease;
}

.slide:hover .slide-overlay h3 {
  transform: translateY(0);
}

/* Navigation Buttons */
.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5c1e2d;
  transition: all 0.3s ease;
  z-index: 10;
  backdrop-filter: blur(10px);
}

.slider-nav:hover {
  background: rgba(92, 30, 45, 0.9);
  color: #ffffff;
  transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
  left: 20px;
}

.slider-nav.next {
  right: 20px;
}

/* Dots Indicator */
.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.dot.active {
  background: #ffffff;
  border-color: rgba(92, 30, 45, 0.8);
  transform: scale(1.2);
}

.dot:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.1);
}

/* ===== OWL CAROUSEL CUSTOM STYLES ===== */
.portfolio-carousel {
  position: relative;
  width: 100%;

  margin: 0 auto;
}

.portfolio-slide {
  position: relative;
  height: 600px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.portfolio-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: all 0.8s ease;
}

.portfolio-slide:hover img {
  transform: scale(1.05);
}

.portfolio-slide .slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(92, 30, 45, 0.7), rgba(0, 0, 0, 0.5));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.5s ease;
}

/* .portfolio-slide:hover .slide-overlay {
  opacity: 1;
} */

.portfolio-slide .slide-overlay h3 {
  font-family: "BrownSugar", sans-serif;
  font-size: 1.3rem;
  font-weight: normal;
  letter-spacing: 2px;
  text-align: center;
  color: #ffffff;
  text-transform: uppercase;
  transform: translateY(20px);
  transition: transform 0.5s ease;
}

.portfolio-slide:hover .slide-overlay h3 {
  transform: translateY(0);
}

/* Owl Carousel Navigation Buttons - Evagher Style */
.owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  z-index: 10;
}

.owl-nav button {
  position: absolute;
  background: rgba(255, 255, 255, 0.9) !important;
  border: none !important;
  width: 60px !important;
  height: 60px !important;
  border-radius: 50% !important;
  cursor: pointer;
  display: flex !important;
  align-items: center;
  justify-content: center;
  color: #5c1e2d !important;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  font-size: 20px !important;
  font-weight: bold !important;
}

.owl-nav button:hover {
  background: rgba(92, 30, 45, 0.9) !important;
  color: #ffffff !important;
  transform: scale(1.1);
}

.owl-nav button.owl-prev {
  left: 20px;
}

.owl-nav button.owl-next {
  right: 20px;
}

/* Custom arrow icons */
.owl-nav button span {
  font-size: 24px !important;
  line-height: 1 !important;
}

.owl-nav button.owl-prev span:before {
  content: "‹" !important;
}

.owl-nav button.owl-next span:before {
  content: "›" !important;
}

/* Owl Carousel Dots - Evagher Style */
.owl-dots {
  position: absolute !important;
  bottom: 30px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  display: flex !important;
  gap: 15px !important;
  z-index: 10 !important;
}

.owl-dots button {
  width: 12px !important;
  height: 12px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.5) !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  border: 2px solid transparent !important;
  outline: none !important;
}

.owl-dots button.active {
  background: #ffffff !important;
  border-color: rgba(92, 30, 45, 0.8) !important;
  transform: scale(1.2) !important;
}

.owl-dots button:hover {
  background: rgba(255, 255, 255, 0.8) !important;
  transform: scale(1.1) !important;
}

/* Hide default owl carousel styling */
.owl-theme .owl-dots .owl-dot span {
  display: none !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .portfolio-slide {
    height: 600px;
    margin: 0 5px;
  }

  

  .portfolio-slide .slide-overlay h3 {
    font-size: 1.5rem;
    letter-spacing: 2px;
  }

  .owl-nav button {
    width: 50px !important;
    height: 50px !important;
    font-size: 18px !important;
  }

  .owl-nav button.owl-prev {
    left: 10px;
  }

  .owl-nav button.owl-next {
    right: 10px;
  }
}

/* ===== FOOTER ===== */
.footer {
  background: #2c1810;
  color: #f5f5f5;
  padding: 4rem 0 0;
  font-family: "Quicksand", sans-serif;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  padding-right: 2rem;
}

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-logo img {
  filter: brightness(0) invert(1);
}

.footer-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #d1c7c0;
  margin: 0;
}

.footer-links h4,
.footer-services h4,
.footer-contact h4 {
  font-family: "Quicksand", sans-serif;
  font-size: 1.3rem;
  font-weight: normal;
  letter-spacing: 1px;
  color: #decfd3;
  margin-bottom: 1.5rem;
}

.footer-links ul,
.footer-services ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-services li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: #d1c7c0;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #decfd3;
  text-decoration: underline;
}

.footer-services li {
  color: #d1c7c0;
  font-size: 0.95rem;
  position: relative;
  padding-left: 1rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.footer-contact-item i {
  color: #d1c7c0;
  font-size: 1.1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.footer-contact-item span,
.footer-contact-item a {
  color: #d1c7c0;
  font-size: 0.95rem;
  line-height: 1.5;
  text-decoration: none;
}

.footer-contact-item a:hover {
  color: #decfd3;
  text-decoration: underline;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(92, 30, 45, 0.2);
  border-radius: 50%;
  color: #decfd3;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #5c1e2d;
  color: #ffffff;
  transform: translateY(-2px);
}

.footer-social i {
  font-size: 1.2rem;
}

.footer-divider {
  height: 1px;
  background: rgba(92, 30, 45, 0.3);
  margin: 2rem 0;
}

.footer-bottom {
  text-align: center;
  padding: 2rem 0;
  border-top: 1px solid rgba(92, 30, 45, 0.2);
}

.footer-bottom p {
  color: #a8a0a0;
  font-size: 0.9rem;
  margin: 0.5rem 0;
  text-decoration: none;
  color: inherit;
}

.footer-bottom a {
  text-decoration: none;
  color: inherit;
  font-weight: 500;
}

.footer-dev {
  font-size: 0.85rem !important;
}

.footer-dev i {
  color: #e74c3c;
  font-size: 0.8rem;
}

.footer-dev strong {
  color: #decfd3;
}

/* Responsive Footer */
@media (max-width: 968px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 3rem 0 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .footer-brand {
    padding-right: 0;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom {
    padding: 1.5rem 0;
  }
}

.about-title {
  grid-area: title;
  text-align: center;
}

.about-image {
  grid-area: image;
  text-align: center;
  height: 40rem;
  width: 30rem;
}

.about-text {
  grid-area: text;
}

/* Layout coluna até 1300px */
@media (max-width: 1180px) {
  .about-content {
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "image"
      "text";
  }

  .about-title {
    text-align: center;
  }

  .about-image {
    text-align: center;
  }

  .about-text {
    padding-top: 3rem;
  }
}

@media (max-width: 600px) {
  .about-image {
    height: 25rem;
    width: 20rem;
  }

  .about-content {
    justify-items: center;
  }

  .about-text {
    max-width: 20rem;
  }

  .about-text p {
    width: unset;
  }

  .bridal-content,
  .bridal-cta {
    padding: 0 3rem;
  }

  .contact-content {
    width: 100%;
  }
}

/* Layout desktop APENAS acima de 1300px */
@media (min-width: 1181px) {
  /* ← Mudança aqui: 1301px */
  .about-content {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "title ."
      "text image";
    align-items: center;
    gap: 0rem 4rem;
    grid-template-rows: auto 1fr;
  }

  .about-title {
    text-align: left;
  }

  .about-image {
    text-align: right;
  }
}

@media (max-width: 375px) {
  .footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
    align-content: center;
  }

  .loading-text {
    width: 15rem;
  }

  .loading-text img {
    width: 100%;
  }
}
