/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,500&family=Outfit:wght@300;400;500;600;700&display=swap');

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

html, body {
  overflow-x: hidden;
  max-width: 100%;
}

:root {
  --primary: #d81b60;
  --primary-dark: #ad144b;
  --secondary: #ffb0c0;
  --accent: #f8c2d4;
  --bg-color: #fcf4f7;
  --text-dark: #3e2f34;
  --text-light: #7b5965;
  --white: #ffffff;
}

body {
  background: var(--bg-color);
  font-family: 'Outfit', sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  position: relative;
}

/* Floating animated background bubbles */
.bg-bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(248,194,212,0.4) 0%, rgba(253,247,249,0) 70%);
  z-index: -1;
  animation: float 8s ease-in-out infinite;
}

.shape-1 { width: 400px; height: 400px; top: -100px; left: -100px; animation-delay: 0s; }
.shape-2 { width: 500px; height: 500px; bottom: 10%; right: -150px; animation-delay: 2s; }
.shape-3 { width: 300px; height: 300px; top: 40%; left: -50px; animation-delay: 4s; }

@keyframes float {
  0% { transform: translateY(0px) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
  100% { transform: translateY(0px) scale(1); }
}

.card {
  max-width: 1000px;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 2rem;
  box-shadow: 0 20px 50px rgba(216, 27, 96, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.6);
  z-index: 1;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, rgba(252,228,236,0.9) 0%, rgba(248,194,212,0.9) 100%);
  padding: 3rem 1.5rem;
  text-align: center;
  border-bottom: 5px solid var(--primary);
  position: relative;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero img.logo-principal {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--white);
  box-shadow: 0 10px 25px rgba(216, 27, 96, 0.3);
  margin-bottom: 1rem;
  transition: transform 0.4s;
}

.float-anim {
  animation: bob 3s infinite ease-in-out;
}

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: #880e4f;
  letter-spacing: 1px;
  line-height: 1.1;
  text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
}

.hero .sub-brand {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  background: rgba(255, 255, 255, 0.9);
  display: inline-block;
  padding: 0.5rem 2rem;
  border-radius: 30px;
  margin-bottom: 1rem;
  letter-spacing: 2px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.hero-quote {
  font-style: italic;
  color: var(--text-dark);
  max-width: 600px;
  margin: 0 auto 1.5rem;
  font-size: 1.1rem;
  opacity: 0.85;
}

.hero .insta-handle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--primary-dark);
  background: var(--white);
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(216, 27, 96, 0.15);
  transition: all 0.3s;
}

.pulse-hover:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(216, 27, 96, 0.25);
}

/* Benefits Section */
.benefits-section {
  display: flex;
  justify-content: space-around;
  padding: 2rem 1rem;
  background: var(--white);
  border-bottom: 1px solid var(--accent);
}

.benefit-item {
  text-align: center;
  flex: 1;
}

.benefit-item .icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.5rem;
}

.benefit-item p {
  font-weight: 600;
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.3;
}

/* Sections Global */
.section-header {
  text-align: center;
  padding: 2.5rem 1.5rem 0.5rem;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.1rem;
}

/* Showcase Grid */
.showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  padding: 1.5rem 2rem 2.5rem;
}

.service-img {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(170, 100, 120, 0.15);
  aspect-ratio: 4 / 5;
  cursor: pointer;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-img .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  padding: 2rem 1rem 1rem;
  color: var(--white);
  font-weight: 600;
  font-size: 1.2rem;
  text-align: center;
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.3s ease;
}

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

.service-img:hover .overlay {
  transform: translateY(0);
  opacity: 1;
}

.badge {
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.best-seller { background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 99%, #fecfef 100%); color: #880e4f; }
.trend { background: var(--primary); color: var(--white); }

/* Testimonials */
.testimonials-section {
  background: var(--bg-color);
  padding: 3rem 2rem;
  text-align: center;
}

.testimonials-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--primary-dark);
  margin-bottom: 2rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 10px 30px rgba(216, 27, 96, 0.05);
  border: 1px solid var(--accent);
  transition: transform 0.3s;
}

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

.stars {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.testimonial-card p {
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.testimonial-card span {
  font-weight: 700;
  color: var(--primary);
}

/* Form Section */
.form-section {
  padding: 3rem 2rem;
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-header {
  text-align: center;
  margin-bottom: 1rem;
}

.form-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.form-header p {
  color: var(--text-light);
  font-size: 1.1rem;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

label {
  font-weight: 600;
  color: var(--primary-dark);
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  margin-left: 0.5rem;
}

input, select {
  width: 100%;
  padding: 1rem 1.5rem;
  border: 2px solid var(--accent);
  border-radius: 3rem;
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  background: var(--bg-color);
  transition: all 0.3s;
  outline: none;
  color: var(--text-dark);
  appearance: none;
}

.select-wrapper {
  position: relative;
}

.select-wrapper::after {
  content: '▼';
  font-size: 0.8rem;
  color: var(--primary);
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

input:focus, select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(216, 27, 96, 0.1);
  background: var(--white);
}

.action-area {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
}

.btn-whatsapp {
  background: linear-gradient(135deg, #d81b60, #ad144b);
  border: none;
  color: white;
  font-weight: 700;
  font-size: 1.3rem;
  padding: 1.2rem 2.5rem;
  border-radius: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 10px 25px rgba(216, 27, 96, 0.4);
  letter-spacing: 0.5px;
  width: 100%;
  max-width: 400px;
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #ad144b, #880e4f);
  box-shadow: 0 15px 35px rgba(216, 27, 96, 0.5);
  transform: translateY(-3px);
}

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

@keyframes pulse-animation {
  0% { box-shadow: 0 0 0 0 rgba(216, 27, 96, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(216, 27, 96, 0); }
  100% { box-shadow: 0 0 0 0 rgba(216, 27, 96, 0); }
}

.footer-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-top: 0.5rem;
}

.footer-note a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

/* Floating WhatsApp Button */
.floating-wa {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
  z-index: 100;
  transition: all 0.3s;
  text-decoration: none;
}

.floating-wa svg {
  width: 32px;
  height: 32px;
  display: block;
}

.floating-wa:hover {
  transform: scale(1.1) rotate(10deg);
}

/* Animations */
.fade-in {
  animation: fadeIn 1s ease-out forwards;
}

.slide-up {
  opacity: 0;
  transform: translateY(40px);
  animation: slideUp 0.8s ease-out forwards;
}

.fade-in-stagger {
  opacity: 0;
  animation: fadeIn 0.8s ease-out forwards;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

@keyframes slideUp {
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 600px) {
  .hero h1 { font-size: 2.5rem; }
  .section-header h2, .form-header h2 { font-size: 1.8rem; }
  .benefits-section { flex-direction: column; gap: 1.5rem; }
  .card { border-radius: 1.5rem; }
  .floating-wa { bottom: 20px; right: 20px; width: 50px; height: 50px; }
  .floating-wa svg { width: 26px; height: 26px; }
}
