/* modern-style.css - Estilos modernos para o Shopping das Pedras */

/* Estilos Gerais */
:root {
  --primary-color: #422069;
  --secondary-color: #8a44ad;
  --accent-color: #8a44ad;
  --light-color: #f8f9fa;
  --dark-color: #343a40;
  --text-color: #333;
  --border-radius: 5px;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --font-primary: "Inter", sans-serif;
  --font-secondary: "Inter", sans-serif;
}

* {
  font-family: var(--font-primary);
}

body {
  font-family: var(--font-primary);
  color: var(--text-color);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-secondary);
  font-weight: 700;
  color: var(--primary-color);
}

a:hover,
a:focus {
  color: #fff;
}

.section-header {
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 36px;
  margin-bottom: 15px;
  position: relative;
}

.divider {
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  margin: 20px auto;
  position: relative;
}

.divider span {
  position: absolute;
  width: 40px;
  height: 4px;
  background: var(--secondary-color);
  top: 0;
  left: 20px;
}

/* Hero Banner */
.hero-banner {
  position: relative;
  overflow: hidden;
}

.hero-banner .carousel-inner img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  filter: brightness(0.5);
}

.hero-banner .carousel-caption {
  bottom: 30%;
  text-align: center;
  max-width: 80%;
  margin: 0 auto;
}

.hero-banner .carousel-caption h2 {
  font-size: 48px;
  font-weight: 700;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
  margin-bottom: 20px;
  color: #fff;
}

.hero-banner .carousel-caption p {
  font-size: 24px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  margin-bottom: 30px;
}

.hero-banner .carousel-control {
  width: 5%;
  opacity: 0.8;
}

.hero-banner .carousel-indicators {
  bottom: 20px;
}

.hero-banner .carousel-indicators li {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 5px;
  border: 2px solid #fff;
  background-color: transparent;
}

.hero-banner .carousel-indicators .active {
  background-color: #fff;
}

/* Intro Section */
.intro-section {
  padding: 80px 0;
  background-color: #fff;
}

.intro-section .lead {
  font-size: 20px;
  color: #666;
  margin-bottom: 30px;
}

/* Category Cards */
.category-cards {
  margin-top: 50px;
}

.category-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  margin-bottom: 30px;
  transition: all 0.4s ease;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 30px;
  overflow: visible;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.category-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(66, 32, 105, 0.05) 0%,
    rgba(255, 255, 255, 0) 60%
  );
  border-radius: 15px;
  opacity: 0;
  transition: all 0.4s ease;
}

.category-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(66, 32, 105, 0.12);
}

.category-card:hover:before {
  opacity: 1;
}

.card-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 20px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 20px rgba(66, 32, 105, 0.2);
}

.category-card:hover .card-icon {
  transform: scale(1.15) rotate(5deg);
  background: var(--secondary-color);
}

.card-icon i {
  font-size: 36px;
  color: #fff;
  transition: all 0.3s ease;
}

.card-icon svg {
  width: 36px;
  height: 36px;
  fill: #fff;
  transition: all 0.3s ease;
}

.category-card:hover .card-icon svg {
  transform: scale(1.1);
}

.card-body {
  padding: 25px 20px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: #fff;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.category-card h4 {
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-color);
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

.category-card h4:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  transition: all 0.4s ease;
}

.category-card:hover h4 {
  color: var(--secondary-color);
}

.category-card:hover h4:after {
  width: 50px;
}

.category-card p {
  color: #666;
  margin-bottom: 25px;
  font-size: 15px;
  line-height: 1.6;
}

.btn-card {
  color: var(--primary-color);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  text-decoration: none;
  margin-top: auto;
}

.btn-card i {
  margin-left: 5px;
  transition: all 0.3s ease;
}

.category-card:hover .btn-card {
  color: var(--secondary-color);
}

.category-card:hover .btn-card i {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .category-cards {
    margin-top: 30px;
  }

  .category-card {
    padding-top: 25px;
  }

  .card-icon {
    width: 80px;
    height: 80px;
  }

  .card-icon i {
    font-size: 36px;
  }

  .card-icon svg {
    width: 36px;
    height: 36px;
  }

  .card-body {
    padding: 20px 15px;
  }

  .category-card h4 {
    font-size: 20px;
  }
}

/* Featured Section */
.featured-section {
  background: linear-gradient(0deg, #1f1212 0%, #422069 100%);
  color: #fff;
  padding: 0;
}

.featured-gallery {
  padding: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 10px;
  padding: 30px;
  height: 100%;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(66, 32, 105, 0.2);
  transition: background 0.3s ease;
}

.gallery-item:hover .overlay {
  background: rgba(66, 32, 105, 0.1);
}

.item-1 {
  grid-column: 1;
  grid-row: 1;
  transform: rotate(-2deg);
}

.item-2 {
  grid-column: 2;
  grid-row: 1;
  transform: rotate(2deg);
}

.item-3 {
  grid-column: 1;
  grid-row: 2;
  transform: rotate(2deg);
}

.item-4 {
  grid-column: 2;
  grid-row: 2;
  transform: rotate(-2deg);
}

.featured-content {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
}

.content-wrapper {
  max-width: 500px;
}

.featured-content h2 {
  color: #fff;
  font-size: 36px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.featured-content h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: #fff;
}

.featured-content p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 30px;
  font-size: 18px;
  line-height: 1.6;
}

.btn-primary {
  background-color: #fff;
  color: var(--primary-color);
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: var(--border-radius);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--accent-color);
  transition: all 0.4s ease;
  z-index: -1;
}

.btn-primary:hover {
  color: #fff;
  transform: translateY(-3px);
}

.btn-primary:hover:before {
  left: 0;
}

/* Responsive styles for featured section */
@media (max-width: 991px) {
  .featured-content {
    padding: 40px 20px;
  }

  .featured-content h2 {
    font-size: 30px;
  }

  .featured-content p {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .featured-gallery,
  .featured-content {
    width: 100%;
  }

  .gallery-grid {
    padding: 20px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 150px 150px;
  }

  .featured-content {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-rows: 120px 120px;
  }

  .item-1,
  .item-2,
  .item-3,
  .item-4 {
    transform: rotate(0);
  }
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  padding-bottom: 0;
  background-color: #f8f9fa;
}

.cta-card {
  background: #fff;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  margin-bottom: 30px;
  height: 100%;
  transition: var(--transition);
}

.cta-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.card-image {
  height: 250px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.cta-card:hover .card-image img {
  transform: scale(1.1);
}

.card-content {
  padding: 30px;
  text-align: center;
}

.card-content h3 {
  margin-bottom: 15px;
  font-size: 24px;
}

.card-content p {
  color: #666;
  margin-bottom: 20px;
}

.btn-outline {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 50px;
  font-size: 14px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-outline:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--primary-color);
  transition: all 0.4s ease;
  z-index: -1;
}

.btn-outline:hover {
  color: #fff;
  text-decoration: none;
}

.btn-outline:hover:before {
  width: 100%;
}

/* Testimonial Section - Google Reviews Style */
.testimonial-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.google-reviews-container {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin: 20px 0;
}

.google-reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
}

.google-reviews-logo {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
  color: #333;
}

.google-reviews-logo i {
  color: #4285f4;
  margin-right: 8px;
  font-size: 20px;
}

.google-reviews-link {
  color: #4285f4;
  text-decoration: none;
  font-size: 14px;
}

.google-reviews-link:hover {
  text-decoration: underline;
  color: #4285f4;
}

.google-review-card {
  display: flex;
  padding: 20px;
  border-bottom: 1px solid #eee;
}

.google-review-card:last-child {
  border-bottom: none;
}

.reviewer-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.reviewer-avatar span {
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  background: var(--primary-color);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.review-content {
  flex: 1;
}

.reviewer-name {
  font-weight: 500;
  margin-bottom: 5px;
  color: #333;
}

.review-stars {
  color: #fbbc05;
  margin-bottom: 8px;
}

.review-stars i {
  margin-right: 2px;
}

.review-text {
  color: #555;
  line-height: 1.5;
  font-size: 14px;
}

.review-text strong {
  font-weight: 500;
  color: #333;
}

.review-date {
  font-size: 14px;
  font-weight: 400;
  color: #777;
  margin-left: 10px;
}

@media (max-width: 767px) {
  .google-reviews-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .google-reviews-link {
    margin-top: 10px;
  }

  .google-review-card {
    padding: 15px;
  }
}

.carousel-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
}

.carousel-controls .carousel-control {
  background: none;
  opacity: 1;
  width: auto;
  text-shadow: none;
}

.carousel-controls .carousel-control i {
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  font-size: 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}

.carousel-controls .carousel-control:hover i {
  background: var(--secondary-color);
}

.carousel-controls .left i {
  left: -20px;
}

.carousel-controls .right i {
  right: -20px;
}

@media (transform-3d), (-webkit-transform-3d) {
  .carousel-inner > .item {
    border-radius: 10px;
  }
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .hero-banner .carousel-inner img {
    height: 550px;
  }

  .hero-banner .carousel-caption h2 {
    font-size: 42px;
  }

  .hero-banner .carousel-caption p {
    font-size: 20px;
  }

  .hex {
    width: 180px;
    height: 156px;
  }
}

@media (max-width: 991px) {
  .hero-banner .carousel-inner img {
    height: 450px;
  }

  .hero-banner .carousel-caption h2 {
    font-size: 36px;
  }

  .hero-banner .carousel-caption p {
    font-size: 18px;
  }

  .featured-content {
    padding: 40px 20px;
  }

  .hex {
    width: 150px;
    height: 130px;
  }
}

@media (max-width: 767px) {
  .hero-banner .carousel-inner img {
    height: 350px;
  }

  .hero-banner .carousel-caption {
    bottom: 20%;
  }

  .hero-banner .carousel-caption h2 {
    font-size: 30px;
  }

  .hero-banner .carousel-caption p {
    font-size: 16px;
  }

  .intro-section,
  .cta-section,
  .testimonial-section {
    padding: 50px 0;
  }

  .section-header h2 {
    font-size: 30px;
  }

  .featured-gallery,
  .featured-content {
    width: 100%;
  }

  .hex-row {
    flex-wrap: wrap;
  }
}

@media (max-width: 576px) {
  .hero-banner .carousel-inner img {
    height: 300px;
  }

  .hero-banner .carousel-caption h2 {
    font-size: 24px;
  }

  .hero-banner .carousel-caption p {
    font-size: 14px;
  }

  .section-header h2 {
    font-size: 26px;
  }

  .testimonial p {
    font-size: 16px;
  }
}

/* Footer Moderno */
.modern-footer {
  font-family: var(--font-primary);
}

/* Seção de cartões de contato */
.contact-cards {
  background-color: #f8f9fa;
  padding: 40px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  transition: all 0.3s ease;
  height: auto;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 30px 15px;
  text-align: center;
}

.contact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.contact-card:hover .card-icon {
  transform: scale(1.1);
  background: var(--secondary-color);
}

.card-icon i {
  font-size: 32px;
  color: #fff;
}

.contact-card h4 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.contact-card p {
  font-size: 16px;
  color: #666;
  margin-bottom: 10px;
}

.contact-card a {
  color: #666;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-card a:hover {
  color: var(--primary-color);
}

.card-content {
  width: 100%;
}

.card-content p {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.card-content p i {
  margin-right: 8px;
  color: var(--primary-color);
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.card-content p span {
  flex: 1;
  min-width: 0;
}

.hours-table {
  width: 100%;
}

.hours-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
  align-items: flex-start;
  width: 100%;
}

.hours-day,
.hours-time {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 5px;
  width: 100%;
}

.hours-day {
  font-weight: 600;
  color: #333;
}

.hours-day i,
.hours-time i {
  color: var(--primary-color);
  margin-right: 8px;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

.hours-note {
  font-size: 14px;
  color: #666;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}

.hours-note i {
  font-size: 10px;
  color: var(--primary-color);
  margin-right: 5px;
  width: 20px;
  text-align: center;
  flex-shrink: 0;
}

@media (max-width: 1199px) {
  .contact-card {
    padding: 25px 10px;
    min-height: auto;
  }

  .card-content p {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .contact-cards .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .contact-card {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 25px 15px;
  }

  .card-icon {
    width: 70px;
    height: 70px;
  }

  .card-icon i {
    font-size: 26px;
  }

  .card-content p {
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .contact-cards .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .contact-card {
    padding: 20px 10px;
  }

  .card-content p {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .contact-cards > .row {
    display: flex;
    flex-direction: column;
  }

  .contact-cards .row .col-md-4 {
    width: 100% !important;
  }

  .contact-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hours-row {
    flex-direction: column;
    align-items: center;
  }

  .hours-day {
    margin-bottom: 5px;
  }
}

@media (max-width: 480px) {
  .footer-main {
    padding: 40px 0 20px;
  }

  .footer-widget h4 {
    font-size: 18px;
  }

  .footer-menu li {
    font-size: 14px;
  }
}

/* Seção principal do footer */
.footer-main {
  background: linear-gradient(to right, #422069, #8a44ad);
  padding: 60px 0 40px;
  color: #fff;
}

.footer-widget {
  margin-bottom: 30px;
}

.footer-widget h4 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 25px;
  font-weight: 600;
  position: relative;
  padding-bottom: 15px;
}

.footer-widget h4:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: rgba(255, 255, 255, 0.5);
}

.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li {
  margin-bottom: 12px;
  font-size: 15px;
  transition: transform 0.3s ease;
}

.footer-menu li:hover {
  transform: translateX(5px);
}

.footer-menu li i {
  margin-right: 10px;
  color: rgba(255, 255, 255, 0.7);
  width: 16px;
  text-align: center;
}

.footer-menu li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-menu li a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.social-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.social-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgb(59, 89, 152);
  border-radius: 50%;
  margin-bottom: 10px;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.social-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  color: #fff;
}

.social-button.facebook:hover {
  background: rgb(59, 89, 152);
  opacity: 0.9;
}

.social-button i {
  font-size: 20px;
  margin-right: 0;
}

/* Seção de copyright */
.footer-copyright {
  background: #19121f;
  padding: 16px 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.footer-copyright p {
  margin: 0;
}

.footer-copyright a {
  color: #fff;
  text-decoration: none;
}

.text-right {
  text-align: right;
}

@media (max-width: 767px) {
  .contact-card {
    margin-bottom: 20px;
  }

  .footer-widget {
    margin-bottom: 30px;
  }

  .text-right {
    text-align: center;
    margin-top: 15px;
  }

  .footer-copyright p {
    text-align: center;
  }
}

@media (max-width: 991px) {
  .contact-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hours-row {
    flex-direction: column;
    align-items: center;
  }

  .hours-day {
    margin-bottom: 5px;
  }
}

@media (max-width: 480px) {
  .footer-main {
    padding: 40px 0 20px;
  }

  .footer-widget h4 {
    font-size: 18px;
  }

  .footer-menu li {
    font-size: 14px;
  }
}

/* Estilos do Menu */
.top-bar {
  background-color: var(--primary-color);
  color: #fff;
  padding: 10px 0;
}

.top-bar-content {
  display: flex;
  justify-content: flex-end;
}

.contact-info {
  display: flex;
  gap: 20px;
}

.contact-info a {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-info a:hover {
  color: #fff;
}

.contact-info i {
  margin-right: 5px;
}

.main-header {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 15px 0;
  position: relative;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--primary-color);
}

.logo-icon {
  font-size: 28px;
  margin-right: 10px;
  color: var(--primary-color);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}

.logo-subtitle {
  font-size: 16px;
  color: var(--secondary-color);
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  outline: none;
  position: relative;
  z-index: 1001;
  width: 45px;
  height: 40px;
}

.hamburger {
  width: 30px;
  height: 24px;
  position: relative;
  display: inline-block;
}

.hamburger .line {
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--primary-color);
  position: absolute;
  left: 0;
  transition: all 0.3s ease-in-out;
}

.hamburger .line:nth-child(1) {
  top: 0;
}

.hamburger .line:nth-child(2) {
  top: 50%;
  margin-top: -1.5px;
}

.hamburger .line:nth-child(3) {
  bottom: 0;
}

/* Transformação em X */
.mobile-menu-toggle.active .hamburger .line:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger .line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger .line:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  margin: 0 15px;
  position: relative;
}

.nav-menu li a {
  color: #333;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 0;
  display: block;
  position: relative;
  transition: all 0.3s ease;
}

.nav-menu li a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: all 0.3s ease;
}

.nav-menu li a:hover {
  color: var(--primary-color);
}

.nav-menu li a:hover:after,
.nav-menu li.active a:after {
  width: 100%;
}

.nav-menu li.active a {
  color: var(--primary-color);
}

.header-badge {
  margin-left: 20px;
}

.badge-link img {
  height: 40px;
  transition: all 0.3s ease;
}

.badge-link img:hover {
  transform: scale(1.1);
}

/* Responsividade do Menu */
@media (max-width: 991px) {
  .mobile-menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    padding: 0;
    z-index: 1000;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
  }

  .main-nav.show {
    max-height: 500px;
    transition: max-height 0.4s ease-in-out;
  }

  .nav-menu {
    flex-direction: column;
    padding: 20px;
  }

  .nav-menu li {
    margin: 10px 0;
  }

  .header-content {
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .top-bar-content {
    justify-content: center;
  }

  .header-badge {
    display: none;
  }
}

/* Estilos para a página Sobre */
.about-banner {
  height: 400px;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../images/shopping-novo/Banner-principal-site-Shopping-das-Pedras.png");
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}

.about-banner .banner-content {
  text-align: center;
  color: #fff;
  padding: 20px;
}

.about-banner h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.about-banner .lead {
  font-size: 22px;
  margin-bottom: 0;
}

.about-intro-section {
  padding: 80px 0;
  background-color: #fff;
}

.about-story {
  margin-top: 40px;
}

.about-image {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.about-image img {
  width: 100%;
  border-radius: 10px;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(66, 32, 105, 0.2), rgba(66, 32, 105, 0.2));
}

.about-content {
  padding: 20px;
}

.about-content h3 {
  margin-bottom: 20px;
  color: var(--primary-color);
  font-size: 28px;
}

.about-content p {
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.8;
}

.highlight {
  color: var(--primary-color);
  font-weight: 600;
}

.about-mission-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.mission-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  margin-bottom: 30px;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 25px;
  overflow: visible;
}

.mission-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.mission-card .card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 15px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.mission-card:hover .card-icon {
  transform: scale(1.1);
  background: var(--secondary-color);
}

.mission-card .card-icon i {
  font-size: 36px;
  color: #fff;
}

.mission-card .card-body {
  padding: 20px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.mission-card h4 {
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: 600;
}

.mission-card p {
  font-size: 16px;
  line-height: 1.6;
}

.about-video-section {
  padding: 80px 0;
  background-color: #fff;
}

.video-responsive {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.video-responsive img {
  width: 100%;
  border-radius: 10px;
}

.overlay-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.overlay-video:hover {
  background: rgba(0, 0, 0, 0.6);
}

.overlay-video i {
  font-size: 72px;
  color: #fff;
  opacity: 0.9;
  transition: all 0.3s ease;
  padding-top: 0;
}

.overlay-video:hover i {
  transform: scale(1.1);
  opacity: 1;
}

.about-team-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.team-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  margin-bottom: 30px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-image {
  position: relative;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.team-card:hover .team-image img {
  transform: scale(1.05);
}

.team-content {
  padding: 20px;
  text-align: center;
}

.team-content h4 {
  margin-bottom: 5px;
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-color);
}

.team-role {
  color: var(--secondary-color);
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 16px;
}

.team-content p {
  font-size: 14px;
  line-height: 1.6;
}

/* Responsividade */
@media (max-width: 768px) {
  .about-banner {
    height: 300px;
  }

  .about-banner h1 {
    font-size: 36px;
  }

  .about-banner .lead {
    font-size: 18px;
  }

  .about-intro-section,
  .about-mission-section,
  .about-video-section,
  .about-team-section {
    padding: 50px 0;
  }

  .about-content {
    margin-top: 30px;
  }
}

@media (max-width: 576px) {
  .about-banner h1 {
    font-size: 28px;
  }

  .about-banner .lead {
    font-size: 16px;
  }

  .section-header h2 {
    font-size: 28px;
  }
}

/* Estilos para a página de Lojas */
.stores-banner {
  height: 400px;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../images/shopping-novo/Banner-principal-site-Shopping-das-Pedras.png");
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}

.stores-banner .banner-content {
  text-align: center;
  color: #fff;
  padding: 20px;
}

.stores-banner h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.stores-banner .lead {
  font-size: 22px;
  margin-bottom: 0;
}

.stores-intro-section {
  padding: 80px 0;
  background-color: #fff;
}

.stores-grid {
  margin-top: 40px;
}

.store-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
}

.store-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.store-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.store-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.store-card:hover .image-overlay {
  background: rgba(0, 0, 0, 0.4);
}

.store-card:hover .store-image img {
  transform: scale(1.05);
}

.store-content {
  padding: 20px;
  text-align: center;
}

.store-content h3 {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 600;
  color: #422869;
}

.store-divider {
  width: 40px;
  height: 3px;
  background: #422869;
  margin: 15px auto;
}

.btn-view {
  color: #422869;
  font-weight: 500;
  display: inline-block;
  transition: all 0.3s ease;
}

.store-card:hover .btn-view {
  color: #422869;
}

.btn-view i {
  margin-left: 5px;
  transition: all 0.3s ease;
}

.store-card:hover .btn-view i {
  transform: translateX(5px);
}

.no-stores-message {
  text-align: center;
  padding: 30px;
  background: #f8f9fa;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stores-info-section {
  padding: 80px 0;
  padding-bottom: 0;
  background-color: #f8f9fa;
}

.info-content {
  padding: 20px;
  margin-bottom: 30px;
}

.info-content h2 {
  margin-bottom: 20px;
  color: #422869;
}

.info-content p {
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 1.8;
}

.info-details {
  margin-top: 30px;
}

.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.info-item i {
  width: 40px;
  height: 40px;
  background: #422869;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  font-size: 18px;
  min-width: 40px;
  min-height: 40px;
  max-width: 40px;
  max-height: 40px;
  box-sizing: border-box;
}

.info-item span {
  font-size: 16px;
  color: #333;
}

.map-container {
  height: 100%;
  min-height: 350px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Estilos para a página de detalhes da loja */
.store-detail-banner {
  height: 350px;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../images/shopping-novo/Banner-principal-site-Shopping-das-Pedras.png");
  background-size: cover;
  background-position: center;
}

.store-info-section {
  padding: 80px 0;
  background-color: #fff;
}

.store-detail-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin-bottom: 30px;
}

.store-detail-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.store-detail-header h3 {
  font-size: 24px;
  color: #422869;
  margin: 0;
}

.store-social {
  display: flex;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: #422869;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 10px;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: #422869;
  transform: translateY(-5px);
}

.contact-item {
  margin-bottom: 20px;
}

.contact-detail {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.contact-detail i {
  width: 40px;
  height: 40px;
  background: #422869;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  font-size: 18px;
}

.contact-detail span {
  font-size: 16px;
  color: #333;
}

.store-description {
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
  line-height: 1.8;
}

.store-gallery-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.store-gallery {
  margin-top: 40px;
}

.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(66, 40, 105, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.overlay-content i {
  font-size: 36px;
  color: #fff;
}

.no-photos-message {
  text-align: center;
  padding: 30px;
  background: #fff;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.store-cta-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.back-to-stores {
  text-align: center;
}

.back-to-stores .btn {
  padding: 12px 30px;
  font-size: 18px;
  border-radius: 50px;
  background-color: #422869;
  border-color: #422869;
  transition: all 0.3s ease;
}

.back-to-stores .btn:hover {
  background-color: #422869;
  border-color: #422869;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.back-to-stores .btn i {
  margin-right: 10px;
}

/* Responsividade */
@media (max-width: 768px) {
  .stores-banner,
  .store-detail-banner {
    height: 300px;
  }

  .stores-banner h1,
  .store-detail-banner h1 {
    font-size: 36px;
  }

  .stores-banner .lead,
  .store-detail-banner .lead {
    font-size: 18px;
  }

  .stores-intro-section,
  .stores-info-section,
  .store-info-section,
  .store-gallery-section {
    padding: 50px 0;
  }

  .store-detail-header {
    flex-direction: column;
    text-align: center;
  }

  .store-social {
    margin-top: 20px;
    justify-content: center;
  }

  .info-content {
    text-align: center;
  }

  .info-item {
    justify-content: center;
  }

  .map-container {
    margin-top: 30px;
    min-height: 300px;
  }
}

@media (max-width: 576px) {
  .stores-banner h1,
  .store-detail-banner h1 {
    font-size: 28px;
  }

  .stores-banner .lead,
  .store-detail-banner .lead {
    font-size: 16px;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .store-detail-card {
    padding: 20px;
  }
}

/* Estilos para a página de Contato */
.contact-banner {
  height: 400px;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../images/shopping-novo/Banner-principal-site-Shopping-das-Pedras.png");
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}

.contact-banner .banner-content {
  text-align: center;
  color: #fff;
  padding: 20px;
}

.contact-banner h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.contact-banner .lead {
  font-size: 22px;
  margin-bottom: 0;
}

.contact-info-section {
  padding: 80px 0;
  background-color: #fff;
}

.contact-info-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin-bottom: 30px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.contact-info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.contact-info-card .card-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.contact-info-card:hover .card-icon {
  background: var(--secondary-color);
}

.contact-info-card .card-icon i {
  font-size: 32px;
  color: #fff;
}

.contact-info-card h4 {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.contact-info-card p {
  font-size: 16px;
  color: #666;
  margin-bottom: 10px;
}

.contact-info-card a {
  color: #666;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-info-card a:hover {
  color: var(--primary-color);
}

.contact-map-section {
  padding: 60px 0;
}

.contact-form-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.contact-form-container {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 40px;
}

.contact-form-container .form-group {
  margin-bottom: 25px;
}

.contact-form-container label {
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
  display: block;
}

.contact-form-container .form-control {
  height: auto;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-shadow: none;
  transition: all 0.3s ease;
}

.contact-form-container .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(66, 32, 105, 0.25);
}

.contact-form-container textarea.form-control {
  resize: none;
  min-height: 150px;
}

.contact-form-container .form-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
}

.contact-form-container .btn {
  padding: 10px 25px;
  font-weight: 600;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.contact-form-container .btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.contact-form-container .btn-primary:hover {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.contact-form-container .btn-outline {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.contact-form-container .btn-outline:hover {
  background: var(--primary-color);
  color: #fff;
}

.contact-form-container .g-recaptcha {
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .contact-banner {
    height: 300px;
  }

  .contact-banner h1 {
    font-size: 36px;
  }

  .contact-banner .lead {
    font-size: 18px;
  }

  .contact-info-section,
  .contact-form-section {
    padding: 50px 0;
  }

  .contact-form-container {
    padding: 25px;
  }

  .contact-form-container .form-buttons {
    flex-direction: column;
  }

  .contact-form-container .btn {
    width: 100%;
    margin-bottom: 10px;
  }
}

@media (max-width: 576px) {
  .contact-banner h1 {
    font-size: 28px;
  }

  .contact-banner .lead {
    font-size: 16px;
  }

  .contact-info-card {
    padding: 20px;
  }
}

/* Estilos para a página de Galeria */
.gallery-banner {
  height: 400px;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url("../images/shopping-novo/Banner-principal-site-Shopping-das-Pedras.png");
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}

.gallery-banner .banner-content {
  text-align: center;
  color: #fff;
  padding: 20px;
}

.gallery-banner h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.gallery-banner .lead {
  font-size: 22px;
  margin-bottom: 0;
}

.gallery-main-section {
  padding: 80px 0;
  background-color: #f8f9fa;
}

.modern-gallery {
  margin-top: 40px;
}

.modern-gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.modern-gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.modern-gallery-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: all 0.5s ease;
  display: block;
}

.modern-gallery-item:hover img {
  transform: scale(1.1);
}

.modern-gallery-item .gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(66, 32, 105, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: all 0.3s ease;
}

.modern-gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.modern-gallery-item .overlay-content {
  text-align: center;
  color: #fff;
  padding: 20px;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.modern-gallery-item:hover .overlay-content {
  transform: translateY(0);
}

.modern-gallery-item .overlay-content i {
  font-size: 36px;
  color: #fff;
  margin-bottom: 15px;
  display: block;
}

.modern-gallery-item .overlay-content h4 {
  font-size: 18px;
  margin: 0;
  color: #fff;
  font-weight: 600;
}

.no-photos-message {
  text-align: center;
  padding: 50px 30px;
  background: #f8f9fa;
  border-radius: 10px;
  margin: 30px 0;
  color: #666;
}

.no-photos-message i {
  color: var(--primary-color);
  margin-bottom: 20px;
  opacity: 0.7;
}

.no-photos-message h3 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #333;
}

.no-photos-message p {
  font-size: 16px;
  max-width: 500px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .gallery-banner {
    height: 300px;
  }

  .gallery-banner h1 {
    font-size: 36px;
  }

  .gallery-banner .lead {
    font-size: 18px;
  }

  .gallery-main-section {
    padding: 50px 0;
  }

  .modern-gallery-item img {
    height: 250px;
  }
}

@media (max-width: 576px) {
  .gallery-banner h1 {
    font-size: 28px;
  }

  .gallery-banner .lead {
    font-size: 16px;
  }

  .modern-gallery-item {
    margin-bottom: 20px;
  }

  .modern-gallery-item img {
    height: 200px;
  }
}

/* Explore Section - Novos estilos para substituir os cards tradicionais */
.explore-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  height: 100%;
  background: #fff;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: row;
}

.explore-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(66, 32, 105, 0.15);
}

.explore-image {
  position: relative;
  width: 40%;
  overflow: hidden;
}

.explore-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.5s ease;
}

.explore-item:hover .explore-image img {
  transform: scale(1.1);
}

.explore-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(66, 32, 105, 0.1),
    rgba(66, 32, 105, 0.6)
  );
  opacity: 0;
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.explore-item:hover .explore-overlay {
  opacity: 1;
}

.explore-content {
  padding: 25px;
  position: relative;
  z-index: 1;
  width: 60%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.explore-content h3 {
  margin-bottom: 15px;
  font-size: 22px;
  transition: all 0.3s ease;
  color: var(--primary-color);
}

.explore-content p {
  color: #666;
  margin-bottom: 20px;
  font-size: 14px;
}

.btn-explore {
  color: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
  padding-bottom: 3px;
  justify-content: center;
}

.btn-explore:after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  transition: width 0.3s ease;
}

.btn-explore:hover {
  color: var(--secondary-color);
}

.btn-explore:hover:after {
  width: 100%;
}

.btn-explore i {
  margin-left: 8px;
  transition: all 0.3s ease;
}

.btn-explore:hover i {
  transform: translateX(5px);
}

/* Responsive adjustments for explore cards */
@media (max-width: 991px) {
  .explore-content h3 {
    font-size: 20px;
  }

  .explore-content p {
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .explore-item {
    flex-direction: column;
  }

  .explore-image {
    width: 100%;
    height: auto;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
  }

  .explore-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    max-height: 250px;
  }

  .explore-content {
    width: 100%;
    text-align: center;
    padding: 20px;
  }

  .explore-overlay {
    background: linear-gradient(
      to bottom,
      rgba(66, 32, 105, 0.1),
      rgba(66, 32, 105, 0.6)
    );
  }
}

@media (max-width: 480px) {
  .explore-image {
    min-height: 220px;
  }

  .explore-image img {
    max-height: 220px;
  }

  .explore-content {
    padding: 15px;
  }

  .explore-content h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .explore-content p {
    margin-bottom: 15px;
  }
}

.diamond-shape {
  width: 55px;
  height: 55px;
  margin: 6px;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  transform: rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 30px;
  position: relative;
  box-shadow: 0 5px 15px rgba(66, 32, 105, 0.2);
  transition: all 0.4s ease;
  outline: 3px solid transparent;
  outline-offset: -3px;
}

.diamond-shape:after {
  content: "";
  position: absolute;
  inset: -3px;
  background: linear-gradient(
    135deg,
    var(--secondary-color) 0%,
    var(--primary-color) 100%
  );
  z-index: -1;
}

.diamond-shape:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  z-index: 1;
}

/* Diamond Logo Styles */
.diamond-logo {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 10;
}

.diamond-shape .fa-diamond {
  color: white;
  font-size: 28px;
  transform: rotate(-45deg);
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.logo-text-container {
  transform: translateX(-10px);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
  letter-spacing: 0.5px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.logo-subtitle {
  font-size: 16px;
  color: var(--secondary-color);
  margin-top: 3px;
}

/* Mobile Responsive for Diamond Logo */
@media (max-width: 768px) {
  .diamond-shape {
    width: 50px;
    height: 50px;
    margin-right: 30px;
  }

  .diamond-shape .fa-diamond {
    font-size: 20px;
  }

  .logo-title {
    font-size: 22px;
  }

  .logo-subtitle {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .diamond-shape {
    width: 45px;
    height: 45px;
    margin-right: 20px;
  }

  .diamond-shape .fa-diamond {
    font-size: 18px;
  }

  .logo-title {
    font-size: 20px;
  }
}

/* Google Reviews Summary */
.google-reviews-summary {
  text-align: center;
  margin-bottom: 30px;
  padding: 30px;
  background: linear-gradient(135deg, #422069, #6a359c);
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.google-reviews-summary::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  z-index: 0;
}

.google-reviews-summary::after {
  content: "";
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  z-index: 0;
}

.rating-summary {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.rating-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.rating-stars {
  color: #ffdd00;
  margin-bottom: 15px;
  font-size: 28px;
}

.rating-stars i {
  margin: 0 3px;
  text-shadow: 0 0 5px rgba(255, 221, 0, 0.3);
}

.rating-count {
  margin-bottom: 5px;
  font-size: 18px;
  font-weight: 300;
}

.google-logo {
  margin-top: 10px;
  opacity: 0.9;
}

/* Reviews Container */
.google-reviews-container {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  position: relative;
}

.google-reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background: #f8f8f8;
  border-bottom: 1px solid #eee;
}

.google-reviews-logo {
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

.google-reviews-logo i {
  color: #422069;
  margin-right: 5px;
}

.google-reviews-link {
  color: #422069;
  font-size: 14px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.google-reviews-link:hover {
  color: #6a359c;
  text-decoration: underline;
}

/* Review Cards */
.google-review-card {
  display: flex;
  padding: 25px;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
  position: relative;
}

.google-review-card:last-child {
  border-bottom: none;
}

.google-review-card:hover {
  background-color: #f9f9f9;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.reviewer-avatar {
  flex: 0 0 60px;
  margin-right: 20px;
}

.reviewer-avatar img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.google-review-card:hover .reviewer-avatar img {
  transform: scale(1.05);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
}

.review-content {
  flex: 1;
}

.reviewer-name {
  font-weight: 500;
  margin-bottom: 5px;
  color: #333;
}

.review-stars {
  color: #fbbc05;
  margin-bottom: 8px;
}

.review-stars i {
  margin-right: 2px;
}

.review-text {
  color: #555;
  line-height: 1.5;
  font-size: 15px;
}

.review-text strong {
  color: #422069;
  font-weight: 600;
}

@media (max-width: 767px) {
  .google-reviews-summary {
    padding: 20px;
  }

  .rating-title {
    font-size: 26px;
  }

  .rating-stars {
    font-size: 22px;
  }

  .rating-count {
    font-size: 16px;
  }

  .google-review-card {
    padding: 20px 15px;
    flex-direction: column;
  }

  .reviewer-avatar {
    margin-right: 0;
    margin-bottom: 15px;
    align-self: center;
  }

  .review-content {
    text-align: center;
  }
}
