/* ============================================================
   VOCÊ BELLA - DESIGN MODERNO E SOFISTICADO
   Paleta: Nude, Rosa Dourado e Branco Elegante
   ============================================================ */

:root {
  --primary: #d4a373;
  --primary-dark: #b68860;
  --primary-light: #f4e4d7;
  --secondary: #e8b4b8;
  --accent: #c9ada7;
  --text-dark: #4a4a4a;
  --text-light: #6a6a6a;
  --bg-cream: #faf7f5;
  --bg-white: #ffffff;
  --shadow: 0 10px 30px rgba(0,0,0,0.1);
  --shadow-hover: 0 15px 40px rgba(0,0,0,0.15);
}

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

body {
  font-family: 'Poppins', 'Segoe UI', sans-serif;
  background-color: var(--bg-cream);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-weight: 600;
  color: var(--primary-dark);
}

/* ============== HEADER ============== */
.site-header {
  background: linear-gradient(135deg, var(--bg-white) 0%, var(--primary-light) 100%);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.12);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.logo img {
  max-height: 80px;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.1));
}

.logo img:hover {
  transform: scale(1.08) rotate(2deg);
}

/* Menu Navegação */
.site-nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

.site-nav a {
  text-decoration: none;
  color: var(--primary-dark);
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  padding: 8px 15px;
  transition: all 0.3s ease;
}

.site-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

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

.site-nav a:hover {
  color: var(--primary);
  transform: translateY(-2px);
}

/* Menu Mobile */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--primary);
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* ============== BANNER CARROSSEL ============== */
.banner-rotativo {
  position: relative;
  width: 100%;
  max-width: 1400px;
  height: 500px;
  margin: 30px auto;
  overflow: hidden;
  border-radius: 25px;
  box-shadow: var(--shadow);
}

.carousel-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slides {
  display: flex;
  width: 400%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
  flex: 0 0 25%;
  position: relative;
  overflow: hidden;
}

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

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

/* Overlay gradient no banner */
.slide::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
  pointer-events: none;
}

/* Botões do carrossel */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 24px;
  color: var(--primary);
  z-index: 10;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.prev:hover, .next:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.prev { left: 20px; }
.next { right: 20px; }

/* Dots */
.dots {
  position: absolute;
  bottom: 25px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 12px;
  z-index: 10;
}

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

.dots .active {
  background: var(--primary);
  border-color: white;
  transform: scale(1.3);
}

.dots div:hover {
  background: var(--secondary);
  transform: scale(1.2);
}

/* ============== CONTEÚDO PRINCIPAL ============== */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5%;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--bg-white) 0%, var(--primary-light) 100%);
  border-radius: 25px;
  margin: 40px 0;
  box-shadow: var(--shadow);
  animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 25px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.3rem;
  color: var(--text-light);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(212, 163, 115, 0.4);
}

.hero .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(212, 163, 115, 0.5);
}

/* Section Titles */
.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin: 60px 0 40px;
  position: relative;
  padding-bottom: 20px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
}

/* ============== SERVIÇOS ============== */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.service-card {
  background: var(--bg-white);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(135deg, var(--primary-light), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.2) rotate(5deg);
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.service-card p {
  color: var(--text-light);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ============== SOBRE NÓS ============== */
.about-section {
  background: linear-gradient(135deg, var(--bg-white) 0%, var(--primary-light) 100%);
  border-radius: 25px;
  padding: 60px;
  margin: 60px 0;
  box-shadow: var(--shadow);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 25px;
}

.about-text p {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.about-image img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

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

/* ============== DEPOIMENTOS ============== */
.testimonials {
  background: var(--bg-white);
  border-radius: 25px;
  padding: 60px;
  margin: 60px 0;
  box-shadow: var(--shadow);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.testimonial-card {
  background: var(--primary-light);
  border-radius: 15px;
  padding: 30px;
  position: relative;
  transition: all 0.3s ease;
}

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

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 5rem;
  color: var(--primary);
  opacity: 0.2;
  font-family: Georgia, serif;
}

.testimonial-text {
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-stars {
  color: #ffd700;
  margin-left: auto;
}

/* ============== GALERIA ============== */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-bottom: 60px;
}

.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: all 0.4s ease;
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: var(--shadow-hover);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(212, 163, 115, 0.9), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 20px;
  color: white;
  font-weight: 600;
}

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

/* ============== FOOTER ============== */
.site-footer {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: white;
  padding: 60px 5% 30px;
  margin-top: 80px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto 40px;
}

.footer-section h3 {
  color: white;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.footer-section p,
.footer-section a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  line-height: 2;
  transition: all 0.3s ease;
}

.footer-section a:hover {
  color: white;
  padding-left: 5px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-links a {
  width: 45px;
  height: 45px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: white;
  color: var(--primary);
  transform: translateY(-3px) rotate(5deg);
  padding: 0;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.8);
}

/* ============== RESPONSIVIDADE ============== */
@media (max-width: 992px) {
  .about-content {
    grid-template-columns: 1fr;
  }
  
  .hero h1 {
    font-size: 2.3rem;
  }
  
  .banner-rotativo {
    height: 400px;
  }
}

@media (max-width: 768px) {
  .topbar {
    flex-wrap: wrap;
    padding: 15px 20px;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .site-nav {
    width: 100%;
    flex-direction: column;
    gap: 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  
  .site-nav.active {
    max-height: 400px;
    margin-top: 20px;
  }
  
  .hero {
    padding: 50px 20px;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .banner-rotativo {
    height: 300px;
    border-radius: 15px;
  }
  
  .prev, .next {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  
  .about-section,
  .testimonials {
    padding: 40px 30px;
  }
  
  .footer-content {
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .services {
    grid-template-columns: 1fr;
  }
  
  .gallery {
    grid-template-columns: 1fr;
  }
  
  .banner-rotativo {
    height: 250px;
  }
  
  .section-title {
    font-size: 2rem;
  }
}

/* ============== ANIMAÇÕES ============== */
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.pulse-animation {
  animation: pulse 2s infinite;
}

/* Scroll suave */
html {
  scroll-behavior: smooth;
}

/* Animação de entrada */
.fade-in {
  animation: fadeIn 0.8s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
