/* ===== MakeupSalon.ae — Premium Design System ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --gold: #C6A96C;
  --gold-light: #E8D5A8;
  --rose: #B76E79;
  --rose-light: #D4979F;
  --dark: #1A1A1A;
  --dark-card: #232323;
  --dark-surface: #2A2A2A;
  --light: #F5F0EB;
  --white: #FDFCFA;
  --text: #E8E4DF;
  --text-muted: #A09A93;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 8px 32px rgba(0, 0, 0, .35);
  --glass: rgba(35, 35, 35, .65);
  --glass-border: rgba(198, 169, 108, .15);
  --transition: .35s cubic-bezier(.4, 0, .2, 1);
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth;
  font-size: 16px
}

body {
  font-family: var(--font-body);
  background: var(--dark);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden
}

img {
  max-width: 100%;
  height: auto;
  display: block
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition)
}

a:hover {
  color: var(--gold-light)
}

ul {
  list-style: none
}

/* ===== Utility ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px
}

.section {
  padding: 100px 0
}

.section-label {
  font-family: var(--font-body);
  font-size: .75rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2
}

.section-subtitle {
  color: var(--text-muted);
  max-width: 600px;
  font-size: 1.05rem
}

.text-center {
  text-align: center
}

.mx-auto {
  margin-left: auto;
  margin-right: auto
}

.gold-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--rose));
  border-radius: 2px;
  margin: 20px auto 0
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 36px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .5px;
  cursor: pointer;
  border: none;
  transition: all var(--transition)
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--rose));
  color: #fff;
  box-shadow: 0 4px 20px rgba(198, 169, 108, .3)
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(198, 169, 108, .45);
  color: #fff
}

.btn-outline {
  border: 1.5px solid var(--gold);
  color: var(--gold);
  background: transparent
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--dark)
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .25)
}

.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  color: #fff
}

/* ===== Header / Navbar ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  transition: all var(--transition)
}

.header.scrolled {
  background: rgba(26, 26, 26, .92);
  backdrop-filter: blur(18px);
  padding: 10px 0;
  box-shadow: 0 2px 24px rgba(0, 0, 0, .4)
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px
}

.logo img {
  height: 48px;
  width: auto
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 1px
}

.logo-text small {
  display: block;
  font-family: var(--font-body);
  font-size: .55rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px
}

.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: .3px;
  position: relative
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition)
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold)
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%
}

.nav-cta {
  margin-left: 8px
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition)
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 26, 26, .88) 0%, rgba(26, 26, 26, .55) 50%, rgba(183, 110, 121, .18) 100%)
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  padding: 120px 0 80px
}

.hero-label {
  font-size: .75rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px
}

.hero-label::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold)
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 24px
}

.hero h1 em {
  font-style: italic;
  color: var(--rose-light)
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 480px
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap
}

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(198, 169, 108, .15)
}

.hero-stats .stat {
  text-align: center
}

.hero-stats .stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--gold);
  font-weight: 700
}

.hero-stats .stat-label {
  font-size: .75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px
}

/* ===== Services ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 48px
}

.service-card {
  background: var(--dark-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  position: relative
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: var(--gold)
}

.service-card-img {
  height: 240px;
  overflow: hidden;
  position: relative
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease
}

.service-card:hover .service-card-img img {
  transform: scale(1.08)
}

.service-card-img .service-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--glass);
  backdrop-filter: blur(10px);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: .75rem;
  color: var(--gold);
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid var(--glass-border)
}

.service-card-body {
  padding: 28px
}

.service-card-body h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 8px
}

.service-card-body p {
  color: var(--text-muted);
  font-size: .92rem;
  margin-bottom: 16px;
  line-height: 1.6
}

.service-card-body .price {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--gold)
}

.service-card-body .price span {
  font-size: .8rem;
  color: var(--text-muted);
  font-family: var(--font-body)
}

/* ===== Price List ===== */
.price-table {
  margin-top: 48px
}

.price-category {
  background: var(--dark-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 36px;
  margin-bottom: 24px;
  transition: border-color var(--transition)
}

.price-category:hover {
  border-color: var(--gold)
}

.price-category h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px
}

.price-category h3 .icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--gold), var(--rose));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem
}

.price-category>p {
  color: var(--text-muted);
  font-size: .9rem;
  margin-bottom: 24px
}

.price-items {
  display: flex;
  flex-direction: column;
  gap: 0
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(198, 169, 108, .08)
}

.price-item:last-child {
  border-bottom: none
}

.price-item .name {
  color: var(--text);
  font-weight: 400
}

.price-item .dots {
  flex: 1;
  border-bottom: 2px dotted rgba(198, 169, 108, .15);
  margin: 0 16px;
  min-width: 40px;
  align-self: flex-end;
  margin-bottom: 6px
}

.price-item .amount {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--gold);
  white-space: nowrap
}

.price-note {
  margin-top: 24px;
  padding: 16px 20px;
  background: rgba(198, 169, 108, .06);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: var(--text-muted);
  font-size: .85rem;
  font-style: italic
}

/* ===== Gallery ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px
}

.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 4/5
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease
}

.gallery-item:hover img {
  transform: scale(1.08)
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 26, .6) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition)
}

.gallery-item:hover::after {
  opacity: 1
}

.gallery-item .gallery-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 2;
  color: #fff;
  font-size: .85rem;
  font-weight: 500;
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition)
}

.gallery-item:hover .gallery-label {
  opacity: 1;
  transform: translateY(0)
}

.gallery-item:first-child {
  grid-row: span 2;
  aspect-ratio: auto
}

/* ===== About ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 48px
}

.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative
}

.about-image img {
  width: 100%;
  height: 420px;
  object-fit: cover
}

.about-image::before {
  content: '';
  position: absolute;
  top: -12px;
  left: -12px;
  right: 12px;
  bottom: 12px;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  z-index: -1;
  opacity: .4
}

.about-text h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 16px
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: .95rem
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px
}

.about-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start
}

.about-feature .feat-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: linear-gradient(135deg, rgba(198, 169, 108, .15), rgba(183, 110, 121, .15));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--gold)
}

.about-feature .feat-text strong {
  display: block;
  color: var(--white);
  font-size: .95rem;
  margin-bottom: 2px
}

.about-feature .feat-text span {
  color: var(--text-muted);
  font-size: .85rem
}

/* ===== Testimonials ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
  margin-top: 48px
}

.testimonial-card {
  background: var(--dark-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  transition: all var(--transition)
}

.testimonial-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px)
}

.testimonial-card .stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 16px
}

.testimonial-card blockquote {
  color: var(--text);
  font-size: .95rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px
}

.testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 12px
}

.testimonial-card .author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--rose));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: 1rem
}

.testimonial-card .author-info strong {
  display: block;
  color: var(--white);
  font-size: .9rem
}

.testimonial-card .author-info span {
  color: var(--text-muted);
  font-size: .8rem
}

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 48px
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start
}

.contact-item .c-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: linear-gradient(135deg, rgba(198, 169, 108, .12), rgba(183, 110, 121, .12));
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gold)
}

.contact-item .c-text strong {
  display: block;
  color: var(--white);
  font-size: .95rem;
  margin-bottom: 4px
}

.contact-item .c-text span,
.contact-item .c-text a {
  color: var(--text-muted);
  font-size: .9rem
}

.contact-form {
  background: var(--dark-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 36px
}

.contact-form h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 24px
}

.form-group {
  margin-bottom: 18px
}

.form-group label {
  display: block;
  font-size: .85rem;
  color: var(--text-muted);
  margin-bottom: 6px
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--dark-surface);
  border: 1px solid rgba(198, 169, 108, .12);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font-body);
  font-size: .9rem;
  transition: border-color var(--transition);
  outline: none
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold)
}

.form-group textarea {
  resize: vertical;
  min-height: 100px
}

.form-group select {
  appearance: none;
  cursor: pointer
}

/* ===== Footer ===== */
.footer {
  background: var(--dark-card);
  border-top: 1px solid var(--glass-border);
  padding: 60px 0 24px
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px
}

.footer-brand .logo {
  margin-bottom: 16px
}

.footer-brand p {
  color: var(--text-muted);
  font-size: .88rem;
  margin-bottom: 20px
}

.social-links {
  display: flex;
  gap: 10px
}

.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--dark-surface);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: .9rem;
  transition: all var(--transition)
}

.social-links a:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(198, 169, 108, .08)
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 16px
}

.footer-col ul li {
  margin-bottom: 10px
}

.footer-col ul li a {
  color: var(--text-muted);
  font-size: .88rem;
  transition: color var(--transition)
}

.footer-col ul li a:hover {
  color: var(--gold)
}

.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px
}

.footer-bottom p {
  color: var(--text-muted);
  font-size: .82rem
}

.footer-bottom a {
  color: var(--gold)
}

/* ===== Lightbox ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .92);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s ease
}

.lightbox.active {
  display: flex;
  opacity: 1
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-sm);
  object-fit: contain
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--dark-card);
  border: 1px solid var(--glass-border);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition)
}

.lightbox-close:hover {
  border-color: var(--gold);
  color: var(--gold)
}

/* ===== WhatsApp Float ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
  transition: all var(--transition);
  animation: pulse-wp 2s infinite
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: #fff
}

@keyframes pulse-wp {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, .4)
  }

  50% {
    box-shadow: 0 4px 36px rgba(37, 211, 102, .6)
  }
}

/* ===== Scroll Animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s ease, transform .8s ease
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0)
}

/* ===== FAQ ===== */
.faq-list {
  margin-top: 48px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto
}

.faq-item {
  background: var(--dark-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color var(--transition)
}

.faq-item:hover,
.faq-item[open] {
  border-color: var(--gold)
}

.faq-item summary {
  padding: 20px 24px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--white);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color var(--transition)
}

.faq-item summary::-webkit-details-marker {
  display: none
}

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 300;
  transition: transform var(--transition)
}

.faq-item[open] summary::after {
  content: '−'
}

.faq-item summary:hover {
  color: var(--gold)
}

.faq-item p {
  padding: 0 24px 20px;
  color: var(--text-muted);
  font-size: .92rem;
  line-height: 1.7
}

/* ===== Responsive ===== */

/* --- Tablet (769px–992px) --- */
@media(max-width:992px) {

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr
  }

  .hero-stats {
    gap: 28px
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .section {
    padding: 70px 0
  }

  .about-image img {
    height: 320px
  }
}

/* --- Mobile (max 768px) --- */
@media(max-width:768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--dark-card);
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 24px;
    transition: right var(--transition);
    box-shadow: -4px 0 24px rgba(0, 0, 0, .4)
  }

  .nav-links.open {
    right: 0
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 12px
  }

  .hamburger {
    display: flex
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px)
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0
  }

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px)
  }

  .services-grid {
    grid-template-columns: 1fr
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr
  }

  .gallery-item:first-child {
    grid-row: span 1
  }

  .testimonials-grid {
    grid-template-columns: 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .hero h1 {
    font-size: 2.2rem
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start
  }

  .section {
    padding: 60px 0
  }

  .about-image img {
    height: 260px
  }

  .contact-form {
    padding: 24px
  }

  .price-category {
    padding: 24px
  }
}

/* --- Small Mobile (max 480px) --- */
@media(max-width:480px) {
  .container {
    padding: 0 16px
  }

  .hero-content {
    padding: 100px 0 60px
  }

  .hero h1 {
    font-size: 1.85rem
  }

  .hero p {
    font-size: 1rem
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px
  }

  .section-title {
    font-size: 1.6rem
  }

  .btn {
    padding: 12px 24px;
    font-size: .88rem
  }

  .price-item .name {
    font-size: .88rem
  }

  .price-item .amount {
    font-size: .95rem
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px
  }
}