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

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f5f5f5;
}

@font-face {
  font-family: Italiana;
  src: url(font/Italiana-Regular.ttf)
}


/* Header Styles */
.header {
  background-color: rgba(0, 0, 0,0.20);
  backdrop-filter: blur(5px);
  padding: 0.5rem 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  font-family: Italiana;
  transition: background-color 0.3s ease; /* transição suave */
}

/* Quando fundo atrás for claro → header escurece */
.header.dark-bg {
  background-color: rgba(0, 0, 0, 0.5);
}

.header-container {
  
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}



.header-left{
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-direction: row;
  align-items: center;
}

.hamburger-menu {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hamburger-menu span {
  width: 25px;
  height: 3px;
  background-color: white;
  transition: 0.3s;
  border-radius: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
}

.logo img{
  width: 47px;
  height: 47px;
}

.nav-menu {
  display: flex;
  gap: 2rem;
}



.nav-menu a {
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  transition: opacity 0.3s;
}



.nav-menu a:hover {
  opacity: 0.8;
}

/* Sidebar Styles */
.sidebar {
  position: fixed;
  top: 0;
  left: -300px;
  width: 300px;
  height: 100vh;
  background-color: #00000023;
  backdrop-filter: blur(6px);
  z-index: 2000;
  transition: left 0.3s ease;
  font-family: Italiana;
}

.sidebar.active {
  left: 0;
}

.sidebar-content {
  padding: 2rem;
}

.sidebar-close {
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  float: right;
  margin-bottom: 2rem;
}

.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sidebar-nav a {
  color: white;
  text-decoration: none;
  font-size: 1.7rem;
  padding: 0.5rem 0;
  transition: color 0.3s;
}

.sidebar-nav a:hover {
  color: #cbd5e0;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-family: Italiana;
  background-image: url('imagens/home/montanha-hero.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}



.hero-content {
  text-align: center;
  color: white;
  z-index: 1;
  margin-top: 80px;
}

.hero-title {
  font-size: 120px;
  font-weight: 300;
  margin-bottom: 1rem;
  letter-spacing: 2px;
  text-shadow: #00000054 2px 2px 2px;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  font-weight: 300;
  text-shadow: #00000054 2px 2px 2px;
}

.hero-btn {
  background: none;
  border: 1px solid white;
  color: white;
  padding: 1rem 2rem;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  letter-spacing: 1px;
}

.hero-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #b4b4b4;
}

/* Products Section */
.products-section {
  padding: 4rem 2rem;
  backdrop-filter: blur(10px);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 50px;
}

.home-backgrond-products{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.home-backgrond-products img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(3px);
}

.products-grid {
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}

.product-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;

}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

.product-info {
  padding: 1.5rem;
}

.product-info h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #333;
}

.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price {
  font-size: 1.1rem;
  font-weight: bold;
  color: #333;
}

.buy-btn {
  background-color: #333;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background-color 0.3s;
}

.buy-btn:hover {
  background-color: #555;
}

.see-more-card {
  
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 350px;
  cursor: pointer;
  transition: transform 0.3s;
}

.see-more-card:hover {
  transform: translateY(-5px);
}

.see-more-content{
  border-bottom : 1px solid white;
  border-left : 1px solid white;
  padding: 0 0 10px 25px;
}

.see-more-content h3 {
  color: white;
  font-size: 70px;
  font-weight: 300;
  text-align: left;
  line-height: 1.2;
  font-family: Italiana;
}

/* Services Section */
.services-section {
  position: relative;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-content {
  position: relative;
  width: 100%;
  height: 100%;
}

.services-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}

/* Carousel Styles */
.services-section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-container {
  position: relative;
  width: 100%;
  height: 80vh;
  overflow: hidden;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.carousel-slide.active {
  opacity: 1;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}

.services-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  z-index: 2;
  width: 100%;
  padding: 0 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.services-text p {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.services-btn {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid white;
  color: white;
  padding: 0.8rem 2.5rem;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 0px;
  backdrop-filter: blur(5px);
  font-weight: 500;
  letter-spacing: 1px;
}

.services-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.carousel-btn:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: translateY(-50%) scale(1.1);
}

.prev-btn {
  left: 30px;
}

.next-btn {
  right: 30px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .services-text p {
    font-size: 1.4rem;
  }
  
  .services-btn {
    padding: 0.7rem 2rem;
    font-size: 1rem;
  }
  
  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .prev-btn {
    left: 15px;
  }
  
  .next-btn {
    right: 15px;
  }
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    padding: 0.8rem 1.2rem;
    cursor: pointer;
    z-index: 10;
    font-size: 1.5rem;
    transition: background-color 0.3s;
    border-radius: 50%;
    line-height: 1;
}

.carousel-btn:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

.prev-btn {
    left: 2rem;
}

.next-btn {
    right: 2rem;
}

.services-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
}

.services-text p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  font-weight: 300;
}

.services-btn {
  background: white;
  color: #333;
  border: none;
  padding: 1rem 2rem;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  letter-spacing: 1px;
}

.services-btn:hover {
  background-color: #f0f0f0;
}

/* Footer */
.footer {
  background-color: #212121;
  color: white;
  padding: 3rem 2rem 1rem;
}

.footer-content {
  
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: start;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.2rem;
  font-weight: bold;
}

.footer-logo img {
    height: 30px;
}

.footer-info p {
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.contact-info p {
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}

.social-links {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
}

.social-link {
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.social-link:hover {
  opacity: 0.8;
}

.footer-bottom {
  text-align: right;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #4a5568;
}

.footer-bottom p {
  font-size: 0.8rem;
  opacity: 0.8;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.footer-bottom img {
    height: 20px;
    margin-right: 0.5rem;
}

/* Modal Styles - Following Figma Design Exactly */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 3000;
}

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

.modal-content {
  display: flex;
  max-width: 1000px;
  width: 90%;
  height: 70vh;
  background: black;
  border-radius: 0;
  overflow: hidden;
}

.modal-image {
  flex: 1;
  border: 3px solid #333;
}

.modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-info {
  flex: 1;
  padding: 3rem;
  color: white;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s;
}

.modal-close:hover {
  opacity: 1;
}

.modal-info h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  font-weight: 300;
  letter-spacing: 1px;
}

.modal-info p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 3rem;
  flex-grow: 1;
}

.modal-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-price {
  font-size: 2.5rem;
  font-weight: 300;
}

.modal-buy-btn {
  background: white;
  color: black;
  border: none;
  padding: 0.8rem 1.5rem;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  letter-spacing: 1px;
  font-weight: 500;
}

.modal-buy-btn:hover {
  background-color: #f0f0f0;
}

.cancel-btn {
  background-color: transparent;
  color: #666;
  border: 1px solid #ccc;
}

.cancel-btn:hover {
  background-color: #f0f0f0;
}

/* Profile Page Styles */
.profile-body {
  background-color: #f5f5f5;
  min-height: 100vh;
  margin: 0;
  padding: 0;
}

.profile-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
}

.profile-header {
  position: absolute;
  top: 2rem;
  right: 2rem;
  z-index: 10;
}

.logout-btn {
  background: none;
  border: none;
  color: #333;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: opacity 0.3s;
}

.logout-btn:hover {
  opacity: 0.7;
}

.profile-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 4rem 2rem;
}

.profile-avatar {
  margin-bottom: 3rem;
}

.avatar-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.avatar-circle::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background-color: #94a3b8;
}

.avatar-icon {
  position: relative;
  z-index: 1;
}

.profile-form {
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.profile-field {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.name-field {
  justify-content: center;
  margin-bottom: 1rem;
}

.profile-name {
  font-size: 1.5rem;
  font-weight: 400;
  color: #333;
  text-align: center;
}

.profile-field input {
  flex: 1;
  padding: 1rem 0;
  border: none;
  border-bottom: 2px solid #ccc;
  background: transparent;
  font-size: 1rem;
  color: #333;
  outline: none;
  transition: border-color 0.3s;
}

.profile-field input:focus {
  border-bottom-color: #333;
}

.profile-field input[readonly] {
  cursor: default;
}

.edit-btn {
  background: none;
  border: none;
  color: #666;
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.3s;
  flex-shrink: 0;
}

.edit-btn:hover {
  color: #333;
}

.edit-controls {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.save-btn {
  padding: 0.8rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s;
  background-color: #333;
  color: white;
}

.save-btn:hover {
  background-color: #555;
}

.cancel-btn {
  background-color: transparent;
  color: #666;
  border: 1px solid #ccc;
}

.cancel-btn:hover {
  background-color: #f0f0f0;
}

.profile-footer {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
}

.back-btn {
  background: none;
  border: none;
  color: #333;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: opacity 0.3s;
  font-weight: 500;
  letter-spacing: 1px;
}

.back-btn:hover {
  opacity: 0.7;
}

/* Gallery Hero Section */
.gallery-hero {
  position: relative;
  height: 95vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-family: Italiana;
  background-image: url('imagens/galeria/fundo.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}



.gallery-hero-content {
  text-align: center;
  color: white;
  z-index: 1;
}

.gallery-title {
  font-size: 6rem;
  text-shadow: #00000077 2px 2px 2px;
  font-weight: 300;
  letter-spacing: 8px;
  margin: 0;
}

/* Gallery Section */
.gallery-section {
  padding: 4rem 2rem;
  background-color: #f5f5f5;
}

.gallery-container {
  
  margin: 0 auto;
}

.gallery-subtitle {
  font-size: 1.5rem;
  font-weight: 400;
  color: #333;
  margin-bottom: 1rem;
  text-align: left;
}

.filter-buttons {
    text-align: left;
    margin-bottom: 3rem;
}

.filter-btn {
    background: none;
    border: 1px solid #ccc;
    color: #333;
    padding: 0.5rem 1.5rem;
    margin: 0 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 20px;
    font-size: 0.9rem;
}

.filter-btn:hover {
    background-color: #eee;
}

.filter-btn.active {
    background-color: #333;
    color: white;
    border-color: #333;
}

/* Masonry Grid */
.masonry-grid {
  column-count: 3;
  column-gap: 20px;
  column-fill: balance;
}

.masonry-item {
  display: inline-block;
  width: 100%;
  margin-bottom: 20px;
  break-inside: avoid;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 0;
  overflow: hidden;
}

.masonry-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.masonry-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0px;
  transition: filter 0.3s ease;
}

.masonry-item:hover img {
  filter: brightness(1.1);
}

.logo-preta {
    position: relative;
    
    left: 50%;
    transform: translate(-50%, 0);
    
}

/* My Photos Page Grid */
.my-photos-grid {
  column-count: 3;
  column-gap: 20px;
  padding: 2rem;
}

.my-photos-grid .photo-item {
  display: inline-block;
  width: 100%;
  margin-bottom: 20px;
  break-inside: avoid;
  position: relative;
  overflow: hidden;
}

.my-photos-grid .photo-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.my-photos-grid .photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    color: white;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 1rem;
    opacity: 1;
}

.my-photos-grid .photo-category {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: capitalize;
}

.my-photos-grid .download-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    padding: 0;
}

.my-photos-grid .download-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.my-photos-grid .download-btn svg {
    width: 20px;
    height: 20px;
}

/* Active nav link */
.nav-menu a.active {
  color: #cbd5e0;
  font-weight: 600;
}

/* About Page Styles */
.about-hero {
    background-color: #000;
    color: #fff;
    padding: 100px 2rem 4rem;
    font-family: 'Italiana', sans-serif;
}

.about-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.about-title {
    font-size: 4rem;
    font-weight: 300;
    letter-spacing: 4px;
    margin-bottom: 3rem;
}

.about-main-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    text-align: left;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image img {
    width: 100%;
    max-width: 400px;
    border: 1px solid #444;
    
}

.about-text {
    flex: 2;
    font-size: 1rem;
    line-height: 1.8;
}

.about-text p {
    margin-bottom: 1rem;
}

.about-services-section {
    padding: 4rem 2rem;
    background-color: #fff;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.services-title {
    font-family: 'Italiana', sans-serif;
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: #000;
}

.services-description {
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #555;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    justify-items: center;
}

.service-item {
    text-align: center;
}

.service-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-item h3 {
    font-family: 'Italiana', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #333;
}

/* --- Responsive About Page --- */

/* Desktop */
@media (min-width: 1024px) {
    .about-image img {
        max-width: 550px; /* Larger image on desktop */
    }
    .services-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 items per row */
    }
}

/* Tablet and Mobile */
@media (max-width: 768px) {
    .about-main-content {
        flex-direction: column; /* Stack image and text */
        gap: 2rem;
    }

    .about-title {
        font-size: 3rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 items per row */
        gap: 1.5rem;
    }

    .service-image {
        width: 150px; /* Smaller images for mobile */
        height: 150px;
    }

    .service-item h3 {
        font-size: 1.2rem;
    }
}

/* Smaller Mobile */
@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr; /* 1 item per row */
    }
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 4rem 2rem;
    background-color: #f8f9fa;
}

.why-choose-us-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.why-choose-us-container h2 {
    font-family: 'Italiana', sans-serif;
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 3rem;
    color: #000;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: left;
}

.reason-item {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reason-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.reason-item h3 {
    font-family: 'Italiana', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: #333;
    margin-bottom: 1rem;
}

.reason-item p {
    color: #555;
    line-height: 1.7;
}

/* Responsive Why Choose Us */
@media (max-width: 1024px) {
    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-choose-us-container h2 {
        font-size: 2.5rem;
    }

    .about-image img {
      width: 100%;
      max-width: 250px;
      border: 1px solid #444;
      
  }
}

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

/* Auth Pages Styles */
.auth-body {
  margin: 0;
  padding: 0;
  height: 100vh;
  
}

.auth-container {
  display: flex;
  height: 100vh;
  width: 100%;
}

.auth-left {
  flex: 1;
  background-color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.auth-welcome h1 {
  color: white;
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
  text-align: left;
  margin: 0;
}

.brand-name {
  font-weight: 400;
}

.auth-right {
  flex: 1;
  background-color: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  
}

.auth-form-container {
  width: 100%;
  max-width: 400px;
  text-align: center;
}

.auth-title {
  font-size: 2.5rem;
  font-weight: 300;
  color: #333;
  margin-bottom: 0.5rem;
  letter-spacing: 2px;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  position: relative;
}

.form-group input {
  width: 100%;
  padding:  0;
  border: none;
  border-bottom: 2px solid #ccc;
  background: transparent;
  font-size: 1rem;
  color: #333;
  outline: none;
  transition: border-color 0.3s;
}



.form-group input::placeholder {
  color: #999;
  font-weight: 300;
  letter-spacing: 1px;
}

.form-group input:focus {
  border-bottom-color: #333;
}

.form-group input[type="date"] {
  color: #999;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="password"],
.form-group input[type="tel"],
.form-group input[type="daTE"]{
  border: none;
  border-bottom: 2px solid #ccc;
  background: transparent;
  border-radius: 0;
  font-size: 13px;
  padding: 5px 0;
}

.form-group input[type="date"]:focus,
.form-group input[type="date"]:valid {
  color: #333;
}

.checkbox-group {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 1rem 0;
}

.checkbox-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 0.9rem;
  color: #666;
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid #ccc;
  margin-right: 0.5rem;
  position: relative;
  transition: all 0.3s;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background-color: #333;
  border-color: #333;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.terms-link {
  color: #333;
  text-decoration: underline;
}

.my-photos-filter .filter-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.my-photos-filter .filter-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  padding: 5px 0;
}

.my-photos-filter .filter-text {
  font-size: 1rem;
  color: #ccc;
  transition: color 0.3s;
}

.my-photos-filter .filter-item:hover .filter-text {
  color: #fff;
}

.my-photos-filter .filter-checkbox {
  width: 20px;
  height: 20px;
  border: 2px solid #dbdbdb;
  border-radius: 4px;
  transition: background-color 0.3s, border-color 0.3s;
}

.my-photos-filter .filter-item.active .filter-checkbox {
  background-color: #fff;
  border-color: #fff;
}

.my-photos-filter .filter-item.active .filter-text {
  color: #fff;
  font-weight: bold;
}

.form-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0;
}

.btn-primary {
  background-color: #000;
  color: white;
  border: none;
  padding: 1rem 2rem;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
  letter-spacing: 1px;
  font-weight: 500;
}

.btn-primary:hover {
  background-color: #333;
}

.btn-secondary {
  background-color: transparent;
  color: #333;
  border: 2px solid #333;
  padding: 1rem 2rem;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s;
  letter-spacing: 1px;
  font-weight: 500;
}

.btn-secondary:hover {
  background-color: #333;
  color: white;
}

.form-links {
  margin-top: 2rem;
}

.forgot-password {
  color: #666;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.forgot-password:hover {
  color: #333;
}

.auth-icon {
  margin-top: 3rem;
  opacity: 0.6;
}

/* Payment Page Styles */
.payment-body {
  background-color: #f5f5f5;
  min-height: 100vh;
  margin: 0;
  padding: 0;
}

.payment-container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.payment-header {
  background-color: white;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.payment-header .logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #333;
  font-size: 1.2rem;
  font-weight: bold;
}

.payment-content {
  flex: 1;
  display: flex;
  justify-content: center;
  padding: 3rem 2rem;
}

.payment-main {
  width: 100%;
  max-width: 600px;
}

.payment-title {
  font-size: 2.5rem;
  font-weight: 300;
  color: #333;
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: 2px;
}

.order-summary {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.order-summary h2 {
  font-size: 1.3rem;
  font-weight: 400;
  color: #333;
  margin-bottom: 1.5rem;
}

.order-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid #eee;
}

.order-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  font-size: 1.1rem;
}

.payment-methods {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.payment-methods h2 {
  font-size: 1.3rem;
  font-weight: 400;
  color: #333;
  margin-bottom: 1.5rem;
}

.payment-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.payment-option {
  display: flex;
  align-items: center;
  padding: 1rem;
  border: 2px solid #eee;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
}

.payment-option:hover {
  border-color: #333;
}

.payment-option input[type="radio"] {
  margin-right: 1rem;
}

.option-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.option-icon {
  color: #666;
}

.payment-option input[type="radio"]:checked + .option-content .option-icon {
  color: #333;
}

.payment-forms {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  margin-bottom: 2rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.payment-form {
  display: none;
}

.payment-form.active {
  display: block;
}

.payment-form h3 {
  font-size: 1.2rem;
  font-weight: 400;
  color: #333;
  margin-bottom: 1.5rem;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group input {
  width: 100%;
  padding: 1rem;
  border: 2px solid #eee;
  border-radius: 8px;
  font-size: 1rem;
  color: #333;
  outline: none;
  transition: border-color 0.3s;
}

.form-group input:focus {
  border-color: #333;
}

.form-group input::placeholder {
  color: #999;
}

.pix-info,
.boleto-info {
  text-align: center;
  color: #666;
}

.pix-info p,
.boleto-info p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.pix-advantages,
.boleto-details {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 1.5rem;
}

.pix-advantages p,
.boleto-details p {
  margin-bottom: 0.5rem;
  text-align: left;
}

.payment-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.btn-cancel,
.btn-confirm {
  padding: 1rem 2rem;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
  letter-spacing: 1px;
  font-weight: 500;
  min-width: 150px;
}

.btn-cancel {
  background-color: transparent;
  color: #666;
  border: 2px solid #ccc;
}

.btn-cancel:hover {
  background-color: #f0f0f0;
  border-color: #999;
}

.btn-confirm {
  background-color: #333;
  color: white;
}

.btn-confirm:hover {
  background-color: #555;
}

/* Responsive Payment Page */
@media (max-width: 768px) {
  .payment-header {
    padding: 1rem;
  }

  .payment-content {
    padding: 2rem 1rem;
  }

  .payment-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .order-summary,
  .payment-methods,
  .payment-forms {
    padding: 1.5rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .payment-actions {
    flex-direction: column;
  }

  .btn-cancel,
  .btn-confirm {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .payment-header {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .payment-title {
    font-size: 1.8rem;
  }

  .order-summary,
  .payment-methods,
  .payment-forms {
    padding: 1rem;
  }

  .payment-option {
    padding: 0.8rem;
  }

  .option-content {
    gap: 0.8rem;
  }

  .btn-cancel,
  .btn-confirm {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .masonry-grid {
    column-count: 3;
  }

  .gallery-title {
    font-size: 3rem;
    letter-spacing: 6px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .hero-title {
    font-size: 5rem;
  }

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

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

  .modal-content {
    flex-direction: column;
    max-height: 90vh;
    overflow-y: auto;
  }

  .modal-info {
    padding: 2rem;
  }

  .masonry-grid {
    column-count: 2;
    column-gap: 15px;
  }

  .masonry-item {
    margin-bottom: 15px;
  }

  .gallery-title {
    font-size: 2.5rem;
    letter-spacing: 4px;
  }

  .gallery-section {
    padding: 2rem 1rem;
  }

  /* Estilos para o carrossel de filtros */
  .filter-carousel-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; /* Para rolagem suave em iOS */
    scrollbar-width: none; /* Firefox */
    margin-left: -1rem; /* Compensa o padding da .gallery-section */
    margin-right: -1rem; /* Compensa o padding da .gallery-section */
    padding-left: 1rem; /* Adiciona espaço no início */
    padding-right: 1rem; /* Adiciona espaço no fim */
  }

  .filter-carousel-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
  }

  .filter-buttons {
    white-space: nowrap;
    padding-bottom: 10px; /* Adiciona espaço para a sombra do botão não ser cortada */
    margin-bottom: 2rem;
    text-align: left;
  }

  .filter-btn {
    display: inline-block;
    flex-shrink: 0;
  }

  .auth-container {
    flex-direction: column;
  }

  .auth-left {
    flex: 0 0 40%;
    padding: 1rem;
  }

  .auth-welcome h1 {
    font-size: 2.5rem;
    text-align: center;
  }

  .auth-right {
    flex: 1;
    padding: 1rem;
  }

  .auth-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .auth-form {
    gap: 1.5rem;
  }

  .profile-header {
    top: 1rem;
    right: 1rem;
  }

  .profile-footer {
    bottom: 1rem;
    left: 1rem;
  }

  .profile-content {
    padding: 3rem 1rem;
  }

  .avatar-circle {
    width: 100px;
    height: 100px;
  }

  .profile-name {
    font-size: 1.3rem;
  }

  .profile-form {
    gap: 2rem;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 0 1rem;
  }

  .hero-title {
    font-size: 3.5rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .products-section {
    padding: 2rem 1rem;
  }

  .masonry-grid {
    column-count: 1;
  }

  .gallery-title {
    font-size: 2rem;
    letter-spacing: 2px;
  }

  .gallery-hero {
    height: 80vh;
  }

  .auth-left {
    flex: 0 0 30%;
  }

  .auth-welcome h1 {
    font-size: 2rem;
  }

  .auth-title {
    font-size: 1.8rem;
  }

  .form-buttons {
    gap: 0.8rem;
  }

  .btn-primary,
  .btn-secondary {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }

  .logout-btn,
  .back-btn {
    font-size: 0.9rem;
  }

  .profile-content {
    padding: 2rem 1rem;
  }

  .avatar-circle {
    width: 80px;
    height: 80px;
  }

  .profile-name {
    font-size: 1.2rem;
  }

  .edit-controls {
    flex-direction: column;
    gap: 0.8rem;
  }

  .save-btn,
  .cancel-btn {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .my-photos-main {
    flex-direction: column;
  }

  .my-photos-sidebar {
    width: 100%;
    padding: 20px;
    border-right: none;
    border-bottom: 1px solid #333;
  }

  .my-photos-content {
    padding: 20px;
  }

  .my-photos-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}

/* My Photos Page Styles */
.my-photos-body{
  background-image: url('imagens/fundo-minhasfotos.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.my-photos-main {
    display: flex;
    margin-top: 80px;
    min-height: calc(100vh - 80px);
}

.my-photos-sidebar {
    width: 250px;
    background: rgba(0, 0, 0, 0.164);
    backdrop-filter: blur(10px);
    padding: 30px 20px;
    padding-top: 100px;
    color: white;
    position: fixed;
    left: 0;
    top: 0px;
    bottom: 0;
    overflow-y: auto;
}

.sidebar-section {
    margin-bottom: 30px;
}

.sidebar-section h3 {
    font-size: 16px;
    margin-bottom: 15px;
    color: #ccc;
    font-weight: normal;
}

.filter-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    cursor: pointer;
}

.filter-item input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-right: 10px;
    accent-color: white;
}

.filter-item label {
    font-size: 14px;
    cursor: pointer;
    user-select: none;
}

.my-photos-content {
    flex: 1;
    margin-left: 250px;
    padding: 30px;
}

.my-photos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    max-width: 800px;
}

.my-photos-grid .photo-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
    aspect-ratio: 1;
    min-height: 320px;
}

.my-photos-grid .photo-item:hover {
    transform: scale(1.02);
}

.my-photos-grid .photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.loading-state {
    text-align: center;
    padding: 60px 20px;
    color: white;
    font-size: 18px;
    text-shadow: #00000073 2px 2px 2px;
}

.empty-state {
    text-align: center;
    padding: 80px 20px;
    max-width: 500px;
    margin: 0 auto;
    color: white;
    text-shadow: #00000073 2px 2px 2px;
}

.empty-content svg {
    margin-bottom: 30px;
    opacity: 0.5;
}

.empty-content h3 {
    font-size: 24px;
    color: white;
    margin-bottom: 15px;
    font-weight: 600;
    text-shadow: #00000073 2px 2px 2px;
}

.empty-content p {
    color: #ccc;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
    text-shadow: #00000073 2px 2px 2px;
}

.empty-content .btn-primary {
    background: white;
    color: #333;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    text-decoration: none;
    display: inline-block;
    border-radius: 4px;
}

.empty-content .btn-primary:hover {
    background: #f0f0f0;
}

/* Photo overlay for owned photos */
.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 20px 15px 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.photo-item:hover .photo-overlay {
    opacity: 1;
}

.photo-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.photo-price {
    color: white;
    font-weight: 600;
    font-size: 16px;
}

.photo-date {
    color: #ccc;
    font-size: 14px;
}

/* Modal owned indicator */
.modal-owned {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4CAF50;
    font-weight: 600;
    font-size: 16px;
}

.modal-owned svg {
    flex-shrink: 0;
}



/*SObre*/
.about-hero{
  min-height: 130vh;
  width: 100%;
  background: #1a1a1a;
background: linear-gradient(180deg, rgba(26, 26, 26, 1) 0%, rgba(38, 38, 38, 1) 70%, rgba(94, 94, 94, 1) 78%, rgba(148, 148, 148, 1) 86%, rgba(255, 255, 255, 1) 100%);
  padding-top: 80px;
}

.about-hero-content{
  text-align: center;
  padding: 0 50px;
}

.about-title{
  font-size: 70px;
  color: white;
}

.about-main-content{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 50px;
}

.about-image{
  flex: 1;
  width: 100%;
}

.about-image img{
  width: 450px;
}

.about-text{
  text-align: left;
  color: white;
  flex: 1;
}

/*Dicas*/
.dicas-hero {
  position: relative;
  height: calc(100vh + 150px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-family: Italiana;
  background-image: url('imagens/dicas/fundo.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

 .dicas-hero::after {
  content: '';
  position: absolute;
  backdrop-filter: blur(1px);
  bottom: 0;
  left: 0;
  width: 100%;
  height: 150px; 
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), #ffffff 100%);
}



.dicas-hero-content {
  text-align: center;
  color: white;
  z-index: 1;
  margin-bottom: 150px;
}

.dicas-title {
  font-size: 6rem;
  text-shadow: #00000077 2px 2px 2px;
  font-weight: 300;
  letter-spacing: 8px;
  margin: 0;
}

/* Dicas Section */
.dicas-section {
    padding: 4rem 2rem;
    background-color: #fff;
    min-height: 100vh;
    position: relative;
}



.dicas-container {
    max-width: 1200px;
    margin: 0 auto;
    
}

.dicas-subtitle {
    font-family: 'Italiana', serif;
    font-size: 2.5rem;
    font-weight: 300;
    color: #333;
    margin-bottom: 3rem;
    text-align: left;
}

.dicas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.dica-card-link {
    text-decoration: none;
    color: inherit;
}

.dica-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 500px; /* Fixed height for consistency */
}

.dica-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.dica-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.8);
    transition: filter 0.3s ease;
}

.dica-card:hover img {
    filter: brightness(1);
}

.dica-text-overlay {
    position: absolute;
    color: white;
    font-family: 'Italiana', serif;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    padding: 1.5rem;
    width: 100%;
}

.dica-text-overlay h3 {
    margin: 0;
}

/* Positioning for each card's text */
.dica-text-overlay.bottom-left {
    bottom: 0;
    left: 0;
    text-align: left;
}

.dica-text-overlay.top-center {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.dica-text-overlay.middle-center {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

/* Responsive Dicas */
@media (max-width: 1024px) {
    .dicas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .dicas-grid {
        grid-template-columns: 1fr;
    }
    .dica-card {
        height: 400px;
    }
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .my-photos-header .nav-menu {
        display: none;
    }
    
    .my-photos-sidebar {
        display: none;
    }
    
    .my-photos-content {
        margin-left: 0;
        padding: 20px;
    }
    
    .my-photos-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 10px;
    }
    
    .empty-content h3 {
        font-size: 20px;
    }
    
    .empty-content p {
        font-size: 14px;
    }
    
    .photo-overlay {
        opacity: 1;
        background: rgba(0,0,0,0.6);
    }
    
    .photo-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .about-title{
      font-size: 30px;
      color: white;
    }

    .about-main-content{
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column-reverse;
      gap: 50px;
    }
    
    .about-image{
      flex: 1;
      width: 100%;
    }
    
    .about-image img{
      width: 350px;
    }
    
    .about-text{
      text-align: left;
      color: white;
      flex: 1;
    }
}

/* Image Protection Styles */
img {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  pointer-events: none;
}

/* Re-enable pointer events for interactive images */
.masonry-item img,
.carousel-slide img,
.logo img,
.footer-logo img {
  pointer-events: auto;
}

/* Disable text selection on gallery items */
.masonry-item {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Prevent image highlighting */
img::selection {
  background: transparent;
}

img::-moz-selection {
  background: transparent;
}

/* Additional protection against right-click */
.gallery-section img,
.masonry-item img {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* WhatsApp Button Styles */
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #25D366;
  color: white;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  margin-top: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
  background-color: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  color: white;
}

.whatsapp-btn svg {
  flex-shrink: 0;
}

/* Service item adjustments for WhatsApp button */
.service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.service-item h3 {
  margin-bottom: 8px;
}