/* General styles */
body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f9f9f9;
    color: #333;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

a {
    color: #ff4d88;
    transition: all 0.3s ease;
}

a:hover {
    color: #e63974;
    text-decoration: none;
}

/* Header */
#header_wrapper {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar-inverse {
    background: transparent;
    border: none;
}

.navbar-inverse .navbar-nav > .active > a,
.navbar-inverse .navbar-nav > .active > a:hover,
.navbar-inverse .navbar-nav > .active > a:focus {
    background: transparent;
    color: #ff4d88;
}

.navbar-inverse .navbar-nav > li > a {
    color: #333;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    color: #ff4d88;
    text-transform: uppercase;
    letter-spacing: 2px;
    float: left;
}

.logo a {
    color: #ff4d88;
}

.logo a:hover {
    color: #e63974;
}

/* Hero Section - Improved */
.hero-section {
  height: 100vh;
  background: linear-gradient(rgba(22, 12, 16, 0.5), rgba(22, 12, 16, 0.5)), url('../img/imgs/img4.jpeg') no-repeat center center/cover;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 800px;
  padding: 0 20px;
}

.hero-section h1 {
  font-size: 64px;
  text-shadow: 2px 2px 12px rgba(0, 0, 0, 0.8);
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-section p {
  font-size: 22px;
  font-weight: 400;
  text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.7);
  margin-bottom: 40px;
}

.btn-hero {
  background-color: #e63974;
  color: #fff;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 1px;
  transition: all 0.4s ease;
  border: 2px solid #e63974;
}

.btn-hero:hover {
  background-color: transparent;
  color: #fff;
  border-color: #fff;
  transform: translateY(-5px);
}


/* About Section - Improved */
#sobre {
  background-color: #fdf6f8;
  padding: 100px 0;
}

.about-image {
  text-align: center;
  padding: 20px;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.about-image img {
  border-radius: 10px;
}

.about-content {
  padding-left: 40px;
}

.about-content .section-header {
  text-align: left;
  margin-bottom: 30px;
}

.about-content .section-header h2 {
  font-size: 48px;
  color: #333;
}

.about-content .section-header .subtitle {
  font-size: 18px;
  color: #e63974;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
}

.about-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 20px;
}

.about-values h4 {
  font-size: 20px;
  font-family: 'Playfair Display', serif;
  color: #333;
  margin-bottom: 20px;
}

.about-us-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about-us-list .points {
  background-color: #e63974;
  color: #fff;
  padding: 8px 15px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.about-us-list .points:hover {
  background-color: #333;
  transform: translateY(-3px);
}

.row.align-items-center {
  display: flex;
  align-items: center;
}

/* Services Section */
#servicos {
    background-color: #f9f9f9;
}

.product-card {
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.product-info {
    padding: 25px;
}

.product-info h4 {
    margin-bottom: 10px;
}

/* Gallery Section - Improved */
#galeria {
  background-color: #fff;
  padding: 100px 0;
}

.gallery-grid {
  margin-top: 50px;
}

.gallery-item {
  margin-bottom: 30px;
  overflow: hidden;
}

.gallery-img {
  position: relative;
  cursor: pointer;
  height: 250px;
  overflow: hidden;
  border-radius: 10px;
}

.gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  border-radius: 10px;
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(22, 12, 16, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 10px;
}

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

.gallery-overlay-content {
  color: #fff;
}

.gallery-overlay-content i {
  font-size: 36px;
  margin-bottom: 10px;
}

.gallery-overlay-content h4 {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 600;
}

#load-more-gallery {
  margin-top: 20px;
}

/* Testimonials Section */
#depoimentos {
    background-color: #f9f9f9;
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 42px;
    color: #333;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: #666;
    line-height: 1.6;
}

#produtos {
  padding: 60px 0;
}

#produtos .service-card {
  background: #fff;
  border-radius: 20px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform .3s ease;
  height: 350px;          /* Altura fixa */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

}

#produtos .service-card:hover {
  transform: translateY(-5px);
}

#produtos img {
  max-width: 100%;
}

.service-price {
  font-size: 20px;
  color: #c2185b;
  font-weight: bold;
  margin-top: 10px;
}

/* Contact Section - Improved */
#contato {
    background-color: #fdf6f8;
    padding: 100px 0;
}

.contact-info-card {
  background-color: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.contact-info-card h3 {
  font-size: 28px;
  font-family: 'Playfair Display', serif;
  margin-bottom: 30px;
  color: #333;
}

.contact-details {
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.contact-item i {
  font-size: 24px;
  color: #e63974;
  margin-right: 20px;
  width: 30px;
  text-align: center;
}

.contact-text h4 {
  font-size: 18px;
  font-family: 'Playfair Display', serif;
  color: #333;
  margin-bottom: 5px;
}

.contact-text p {
  font-size: 16px;
  color: #666;
  margin: 0;
}

.contact-text p a {
  color: #666;
  transition: color 0.3s ease;
}

.contact-text p a:hover {
  color: #e63974;
}

.map-container {
  border-radius: 10px;
  overflow: hidden;
}

.contact-card {
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Footer */
.footer_wrapper {
    background: #f9f9f9;
    color: #333;
    padding: 20px 0;
    border-top: 1px solid #eee;
    text-align: center;
}

.footer_bottom span {
    color: #777;
}

.footer_bottom a {
    color: #ff4d88;
}

/* Service Card Styles */
.service-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 30px;
  margin-bottom: 30px;
  text-align: center;
  transition: all 0.3s ease;
}

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

.service-icon {
  font-size: 48px;
  color: #d8a7b1;
  margin-bottom: 20px;
}

.service-info h4 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: #333;
  margin-bottom: 15px;
}

.service-info p {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

/* Social Links - Improved */
.social-links-container {
  margin-top: 50px;
  padding: 30px 0;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.social-links-container h4 {
  font-size: 22px;
  font-family: 'Playfair Display', serif;
  color: #333;
  margin-bottom: 25px;
}

.social-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-block;
}

.social-links li {
  display: inline-block;
  margin: 0 15px;
}

.social-icon {
  display: block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  font-size: 28px;
  color: #fff;
  border-radius: 50%;
  transition: all 0.4s ease;
}

.social-icon:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.social-icon.facebook { background-color: #3b5998; }
.social-icon.instagram { background: #d6249f; background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%); }
.social-icon.whatsapp { background-color: #25d366; }

/* CTA Section - Improved */
.cta-section {
  background-color: #fdf6f8;
  padding: 80px 0;
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto 50px;
}

.cta-content h3 {
  font-size: 36px;
  font-family: 'Playfair Display', serif;
  color: #333;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 18px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 30px;
}

.google-review-card {
  max-width: 400px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
}

.google-review-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.google-review-header i {
  font-size: 30px;
  color: #4285F4; /* Google's blue color */
  margin-right: 15px;
}

.google-review-header h4 {
  font-size: 20px;
  font-family: 'Playfair Display', serif;
  color: #333;
  margin: 0;
}

.google-review-body .star-rating {
  font-size: 24px;
  color: #fbbc05;
  margin-bottom: 10px;
}

.google-review-body p {
  font-size: 16px;
  color: #666;
  margin: 0;
}

/* Contact Form - Improved */
.contact-form-card {
  background-color: #fff;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.contact-form-card h3 {
  font-size: 28px;
  font-family: 'Playfair Display', serif;
  margin-bottom: 15px;
  color: #333;
}

.contact-form-card p {
  font-size: 16px;
  color: #666;
  margin-bottom: 30px;
}

.contact-form .form-group {
  margin-bottom: 25px;
}

.contact-form .form-control {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 15px;
  font-size: 16px;
  color: #555;
  box-shadow: none;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: #e63974;
  box-shadow: 0 0 10px rgba(230, 57, 116, 0.1);
}

.contact-form label {
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}

.btn-submit {
  width: 100%;
  padding: 15px;
  font-size: 16px;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .hero-section {
    height: 80vh;
  }

  .hero-section h1 {
    font-size: 48px;
  }

  .hero-section p {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .hero-section {
    height: 70vh;
  }

  .hero-section h1 {
    font-size: 36px;
  }

  .hero-section p {
    font-size: 16px;
  }
}

.navbar-inverse .navbar-toggle .icon-bar {
    background-color: #000;
}
