/* =====================
   STUDIO DE BELEZA - DESIGN CLEAN E TRANSPARENTE
   Inspirado em meuscilios.com.br
   ===================== */

:root {
  /* Paleta Rosa Suave e Transparente */
  --primary: #ff99cc;
  --primary-light: #ffd6ed;
  --primary-dark: #ffb3d9;
  --secondary: #ffe5f2;
  --accent: #fff5fa;
  
  /* Cores de Fundo - Muito Claras */
  --bg-primary: #ffffff;
  --bg-secondary: rgba(255, 245, 250, 0.8);
  --bg-overlay: rgba(255, 255, 255, 0.95);
  --bg-card: rgba(255, 255, 255, 0.9);
  --bg-promo: rgba(255, 193, 224, 0.15);
  
  /* Cores de Texto */
  --text-primary: #4a4a4a;
  --text-secondary: #606060;
  --text-light: #ffffff;
  
  /* Sombras Suaves */
  --shadow-sm: 0 1px 3px rgba(255, 193, 224, 0.1);
  --shadow-md: 0 4px 12px rgba(255, 193, 224, 0.15);
  --shadow-lg: 0 8px 24px rgba(255, 193, 224, 0.2);
  
  /* Bordas */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  
  /* Transições */
  --transition: all 0.3s ease;
  --transition-fast: all 0.15s ease;
}

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  line-height: 1.7;
  color: var(--text-primary);
  background: linear-gradient(180deg, #ffffff 0%, #fff5fa 50%, #ffe5f2 100%);
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* =====================
   HEADER/NAVIGATION
   ===================== */

.header {
  background: var(--bg-overlay);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 193, 224, 0.2);
  width: 100%;
}

.navbar {
  padding: 0;
  width: 100%;
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
  position: relative;
  width: 100%;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  text-decoration: none;
  transition: var(--transition-fast);
}

.logo:hover {
  color: var(--primary-dark);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 101;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--text-primary);
  border-radius: 3px;
  transition: var(--transition-fast);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  color: var(--text-primary);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition-fast);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-link:hover {
  background: var(--bg-promo);
  color: var(--primary-dark);
}

.promo-badge {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* =====================
   HERO SECTION - TRANSPARENTE
   ===================== */

.hero {
  padding: 4rem 0 5rem;
  background: transparent;
}

/* Novo layout hero - texto, imagem, botões em coluna */
.hero-content-new {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  gap: 2rem;
}

.hero-info {
  width: 100%;
}

.hero-info h1 {
  font-size: 4.5rem;
  font-weight: 800;
  color: #d63384;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--text-secondary);
  margin-bottom: 0;
  line-height: 1.6;
}

.hero-image {
  position: relative;
  width: 100%;
  max-width: 400px;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  max-height: 400px;
}

/* Botões em coluna - layout vertical */
.hero-buttons-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

.btn-block {
  width: 100%;
  padding: 1.2rem 2rem;
  font-size: 1.1rem;
  justify-content: center;
  min-height: 60px;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

/* =====================
   BANNER DE PROMOÇÃO - TRANSPARENTE E SUAVE
   ===================== */

.promo-banner {
  background: var(--bg-promo);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 193, 224, 0.3);
  padding: 2rem 0;
  margin: 2rem 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.promo-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.promo-content i {
  font-size: 2.5rem;
  color: #ffc1e0;
}

.promo-content h2 {
  font-size: 2rem;
  color: var(--text-primary);
  font-weight: 700;
}

.promo-content p {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

/* =====================
   PORTFOLIO PREVIEW - GALERIA
   ===================== */

.portfolio-preview {
  padding: 4rem 0;
  background: transparent;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  background: var(--bg-card);
  aspect-ratio: 1 / 1;
}

.portfolio-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.portfolio-image {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.portfolio-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  padding: 1.5rem;
  opacity: 0;
  transition: var(--transition);
}

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

.portfolio-overlay h3 {
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
}

.portfolio-cta {
  text-align: center;
  margin-top: 2rem;
}

/* =====================
   SERVICES SECTION - CARDS TRANSPARENTES
   ===================== */

.services-preview {
  padding: 4rem 0;
  background: transparent;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 3rem;
}

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

.service-card {
  background: var(--bg-card);
  backdrop-filter: blur(15px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid rgba(255, 193, 224, 0.2);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 193, 224, 0.4);
}

.service-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-secondary);
}

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

/* Tamanhos de imagem configuráveis */
.service-image.img-size-auto {
  height: auto;
  min-height: 200px;
  max-height: 600px;
}

.service-image.img-size-auto img {
  width: 100%;
  height: auto;
  object-fit: contain;
  max-height: 600px;
}

.service-image.img-size-small {
  height: 200px;
}

.service-image.img-size-small img {
  object-fit: contain;
}

.service-image.img-size-medium {
  height: 300px;
}

.service-image.img-size-medium img {
  object-fit: contain;
}

.service-image.img-size-large {
  height: 400px;
}

.service-image.img-size-large img {
  object-fit: contain;
}

.service-image.img-size-xlarge {
  height: 500px;
}

.service-image.img-size-xlarge img {
  object-fit: contain;
}

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

.service-info {
  padding: 1.5rem;
}

.service-info h3 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.service-info p {
  color: var(--text-secondary);
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

.service-price {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.price,
.promo-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ff99cc;
}

.old-price {
  font-size: 1.2rem;
  color: var(--text-secondary);
  text-decoration: line-through;
}

/* =====================
   REVIEWS - TRANSPARENTE
   ===================== */

.reviews {
  padding: 4rem 0;
  background: transparent;
}

.reviews-carousel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.review-card {
  background: var(--bg-card);
  backdrop-filter: blur(15px);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 193, 224, 0.2);
  transition: var(--transition);
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.review-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 3px solid rgba(255, 193, 224, 0.3);
}

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

.review-text {
  color: var(--text-primary);
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.review-author {
  color: var(--text-secondary);
  font-weight: 600;
}

/* =====================
   CTA SECTION
   ===================== */

.cta {
  padding: 5rem 0;
  background: var(--bg-promo);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-xl);
  margin: 3rem 0;
}

.cta-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-weight: 700;
}

.cta-content p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

/* =====================
   BUTTONS - SUAVES
   ===================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #ffc1e0 0%, #ffb3d9 100%);
  color: white;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ffb3d9 0%, #ffa3cf 100%);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255, 193, 224, 0.2);
  color: var(--text-primary);
  border: 2px solid rgba(255, 193, 224, 0.4);
}

.btn-secondary:hover {
  background: rgba(255, 193, 224, 0.3);
  border-color: rgba(255, 193, 224, 0.6);
}

.btn-accent {
  background: linear-gradient(135deg, #ffd6ed 0%, #ffc1e0 100%);
  color: var(--text-primary);
  box-shadow: var(--shadow-sm);
}

.btn-accent:hover {
  background: linear-gradient(135deg, #ffc1e0 0%, #ffb3d9 100%);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.btn-featured {
  background: linear-gradient(135deg, #e91e8c 0%, #d91b7f 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(233, 30, 140, 0.3);
  font-weight: 700;
}

.btn-featured:hover {
  background: linear-gradient(135deg, #d91b7f 0%, #c91872 100%);
  box-shadow: 0 6px 20px rgba(233, 30, 140, 0.4);
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  border: 2px solid rgba(255, 193, 224, 0.5);
  color: var(--text-primary);
}

.btn-outline:hover {
  background: rgba(255, 193, 224, 0.15);
  border-color: rgba(255, 193, 224, 0.7);
}

.btn-light {
  background: white;
  color: var(--text-primary);
  box-shadow: var(--shadow-sm);
}

.btn-light:hover {
  background: var(--accent);
  box-shadow: var(--shadow-md);
}

.btn-sm {
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
}

.btn-lg {
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
}

/* =====================
   FOOTER
   ===================== */

.footer {
  background: var(--bg-overlay);
  backdrop-filter: blur(20px);
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
  border-top: 1px solid rgba(255, 193, 224, 0.2);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-weight: 700;
}

.footer-section p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.footer-section i {
  color: var(--primary);
  margin-right: 0.5rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--primary-dark);
  padding-left: 5px;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 193, 224, 0.2);
  color: var(--text-primary);
  transition: var(--transition);
  font-size: 1.2rem;
}

.social-links a:hover {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  transform: translateY(-3px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 193, 224, 0.1);
  color: var(--text-secondary);
  font-size: 0.9rem;
}

/* =====================
   RESPONSIVE - MOBILE
   ===================== */

@media (max-width: 968px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-overlay);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    gap: 0.5rem;
    overflow-y: auto;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .nav-link {
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: var(--radius-md);
  }
  
  .promo-badge {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-text h1 {
    font-size: 2.5rem;
  }
  
  .hero-info h1 {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .services-grid,
  .models-grid {
    grid-template-columns: 1fr;
  }
  
  .reviews-carousel {
    grid-template-columns: 1fr;
  }
  
  .section-title,
  .page-title {
    font-size: 2rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .footer-links,
  .social-links {
    justify-content: center;
  }
  
  .location-wrapper {
    grid-template-columns: 1fr !important;
  }
  
  .location-info {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 480px) {
  .hero-text h1,
  .page-title {
    font-size: 2rem;
  }
  
  .hero-info h1 {
    font-size: 1.5rem;
  }
  
  .promo-content h2 {
    font-size: 1.5rem;
  }
  
  .btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .cta-content h2 {
    font-size: 1.8rem;
  }
  
  .container {
    padding: 0 15px;
  }
}

@media (max-width: 380px) {
  .hero-info h1 {
    font-size: 1.25rem;
    letter-spacing: -0.5px;
  }
}

@media (max-width: 360px) {
  .hero-info h1 {
    font-size: 1.15rem;
    letter-spacing: -0.8px;
  }
}

/* =====================
   PAGE HEADER (Modelos, Prepos, Localização)
   ===================== */

.page-header {
  padding: 4rem 0 3rem;
  background: transparent;
  text-align: center;
}

.page-header h1,
.page-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.page-header p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

/* =====================
   PROMO ALERT (Modelos Page)
   ===================== */

.promo-alert {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  padding: 1rem 0;
  margin-bottom: 2rem;
  text-align: center;
  animation: slideDown 0.5s ease;
}

.promo-alert .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.promo-alert i {
  font-size: 1.5rem;
  color: white;
  animation: bounce 1s infinite;
}

.promo-alert span {
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
}

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

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

/* =====================
   MODELS SECTION (Modelos Page)
   ===================== */

.models-section {
  padding: 3rem 0;
}

.category-title {
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 700;
}

.category-title i {
  color: var(--primary);
  font-size: 1.8rem;
}

.models-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.model-card {
  background: var(--bg-card);
  backdrop-filter: blur(15px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid rgba(255, 193, 224, 0.2);
  display: flex;
  flex-direction: column;
}

.model-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(255, 193, 224, 0.4);
}

.model-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-secondary);
}

.model-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

/* Tamanhos de imagem configuráveis para models */
.model-image.img-size-auto {
  height: auto;
  min-height: 200px;
  max-height: 600px;
}

.model-image.img-size-auto img {
  width: 100%;
  height: auto;
  object-fit: contain;
  max-height: 600px;
}

.model-image.img-size-small {
  height: 200px;
}

.model-image.img-size-small img {
  object-fit: contain;
}

.model-image.img-size-medium {
  height: 300px;
}

.model-image.img-size-medium img {
  object-fit: contain;
}

.model-image.img-size-large {
  height: 400px;
}

.model-image.img-size-large img {
  object-fit: contain;
}

.model-image.img-size-xlarge {
  height: 500px;
}

.model-image.img-size-xlarge img {
  object-fit: contain;
}

.model-card:hover .model-image img {
  transform: scale(1.08);
}

.model-image .promo-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, #ff6b9d 0%, #ff4081 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(255, 64, 129, 0.4);
  animation: none;
}

.model-content {
  padding: 1.8rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.model-content h3 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.model-description {
  color: var(--text-secondary);
  margin-bottom: 1.2rem;
  line-height: 1.6;
  flex: 1;
}

.model-price {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.current-price {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
}

.current-price.promo {
  color: #ff2060;
}

.old-price {
  font-size: 1.2rem;
  color: var(--text-secondary);
  text-decoration: line-through;
  opacity: 0.7;
}

/* Estilos para Variantes de Serviços */
.variants-list {
  margin-bottom: 1.5rem;
  background: var(--bg-secondary);
  padding: 1rem;
  border-radius: var(--radius-md);
}

.variant-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255, 193, 224, 0.2);
}

.variant-item:last-child {
  border-bottom: none;
}

.variant-name {
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 500;
}

.variant-price {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.variant-price .current-price {
  font-size: 1.1rem;
  font-weight: 700;
}

.variant-price .old-price {
  font-size: 0.9rem;
}

/* Modal Variants */
.modal-variants {
  margin: 1.5rem 0;
  background: var(--bg-secondary);
  padding: 1.2rem;
  border-radius: var(--radius-md);
}

.modal-variant-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255, 193, 224, 0.2);
}

.modal-variant-item:last-child {
  border-bottom: none;
}

.modal-variant-item .variant-name {
  font-size: 1rem;
  font-weight: 600;
}

.modal-variant-item .variant-price {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.modal-variant-item .current-price {
  font-size: 1.3rem;
}

.model-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.model-actions .btn {
  flex: 1;
  min-width: 140px;
  justify-content: center;
}

/* =====================
   MODAL (Modelos Page)
   ===================== */

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  z-index: 1000;
  overflow-y: auto;
  padding: 1rem;
}

.modal.show {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

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

.modal-content {
  background: white;
  border-radius: var(--radius-xl);
  max-width: 600px;
  width: 100%;
  padding: 2rem;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.3s ease;
  margin: 2rem auto;
}

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

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 193, 224, 0.2);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--text-primary);
  transition: var(--transition);
  z-index: 10;
}

.modal-close:hover {
  background: var(--primary);
  color: white;
  transform: rotate(90deg);
}

.modal-image {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
}

#modalBody h2 {
  font-size: 1.8rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-weight: 700;
  padding-right: 2rem;
}

.modal-description {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.modal-price {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

/* Modal Mobile Responsiveness */
@media (max-width: 768px) {
  .modal {
    padding: 0.5rem;
  }
  
  .modal-content {
    padding: 1.5rem;
    margin: 1rem auto;
    max-height: 90vh;
    overflow-y: auto;
  }
  
  .modal-image {
    height: 200px;
  }
  
  #modalBody h2 {
    font-size: 1.5rem;
    padding-right: 2.5rem;
  }
  
  .modal-description {
    font-size: 0.9rem;
  }
  
  .modal-close {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
  
  .modal-price {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .model-actions {
    flex-direction: column;
  }
  
  .model-actions .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .modal-content {
    padding: 1.2rem;
    border-radius: var(--radius-md);
  }
  
  .modal-image {
    height: 180px;
    border-radius: var(--radius-md);
  }
  
  #modalBody h2 {
    font-size: 1.3rem;
  }
  
  .modal-close {
    top: 0.8rem;
    right: 0.8rem;
  }
}

/* =====================
   PREPOS CONTENT
   ===================== */

.prepos-content {
  padding: 3rem 0;
}

.content-box {
  background: var(--bg-card);
  backdrop-filter: blur(15px);
  border-radius: var(--radius-lg);
  padding: 3rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 193, 224, 0.2);
}

.content-box h2 {
  font-size: 1.8rem;
  color: var(--text-primary);
  margin: 2rem 0 1.5rem 0;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.content-box h2:first-child {
  margin-top: 0;
}

.content-box ul {
  list-style: none;
  padding: 0;
}

.content-box li {
  color: var(--text-primary);
  margin-bottom: 1rem;
  padding-left: 2.5rem;
  position: relative;
  line-height: 1.7;
}

.content-box li i {
  position: absolute;
  left: 0;
  top: 0.2rem;
  color: var(--primary);
  font-size: 1.2rem;
}

.cta-box {
  background: var(--bg-promo);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
  border: 1px solid rgba(255, 193, 224, 0.3);
}

.cta-box h3 {
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-weight: 700;
}

.cta-box p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* =====================
   LOCATION PAGE
   ===================== */

.location-section {
  padding: 3rem 0;
}

.location-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.location-map {
  background: var(--bg-card);
  backdrop-filter: blur(15px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 193, 224, 0.2);
}

.location-map iframe {
  width: 100%;
  height: 450px;
  border: none;
  display: block;
}

.map-placeholder {
  height: 450px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
}

.map-placeholder i {
  font-size: 4rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.map-actions {
  padding: 1.5rem;
  text-align: center;
  background: rgba(255, 245, 250, 0.5);
}

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

.info-card {
  background: var(--bg-card);
  backdrop-filter: blur(15px);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 193, 224, 0.2);
  transition: var(--transition);
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.info-card i {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  display: block;
}

.info-card h3 {
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-weight: 700;
}

.info-card p {
  color: var(--text-secondary);
  line-height: 1.7;
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: white;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #128c7e 0%, #0a5f56 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.location-cta {
  background: var(--bg-promo);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
  border: 1px solid rgba(255, 193, 224, 0.3);
}

.location-cta h2 {
  font-size: 2.2rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
  font-weight: 700;
}

.location-cta p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* =====================
   UTILITY CLASSES
   ===================== */

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

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* Hide scrollbar for mobile menu but allow scrolling */
.nav-menu::-webkit-scrollbar {
  width: 0;
  display: none;
}

.nav-menu {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* =====================
   COOKIE BANNER
   ===================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-overlay);
  backdrop-filter: blur(20px);
  padding: 1.5rem 0;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  border-top: 1px solid rgba(255, 193, 224, 0.3);
  z-index: 999;
  animation: slideUp 0.5s ease;
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cookie-content p {
  color: var(--text-secondary);
  flex: 1;
  margin: 0;
}

.btn-accept {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-accept:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #ffa3cf 100%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}