/* ===== Variables ===== */
:root {
  --bg: hsl(210, 30%, 98%);
  --fg: hsl(220, 30%, 10%);
  --card: hsl(0, 0%, 100%);
  --primary: hsl(215, 70%, 40%);
  --primary-fg: hsl(0, 0%, 100%);
  --secondary: hsl(210, 30%, 94%);
  --muted: hsl(220, 10%, 45%);
  --accent: hsl(45, 95%, 55%);
  --accent-fg: hsl(220, 30%, 10%);
  --border: hsl(210, 20%, 90%);
  --radius: 0.75rem;
  --shadow-soft: 0 4px 24px -4px hsla(215, 70%, 40%, 0.12);
  --shadow-card: 0 2px 16px -2px hsla(220, 30%, 10%, 0.08);
  --gradient: linear-gradient(135deg, hsl(215, 70%, 40%), hsl(45, 95%, 55%));
  --nav-bg: hsl(220, 30%, 15%);
}

/* ===== Reset ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ===== Utilities ===== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.text-accent { color: var(--accent); }
.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-header { text-align: center; margin-bottom: 4rem; }
.section-label { font-size: 0.875rem; font-weight: 600; color: var(--primary); text-transform: uppercase; letter-spacing: 0.1em; }
.section-header h2 { font-size: 2rem; font-weight: 700; margin-top: 0.75rem; }
.section-header p { color: var(--muted); margin-top: 1rem; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ===== Buttons ===== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--primary); color: var(--primary-fg);
  padding: 1rem 2rem; border-radius: 1rem; font-weight: 600;
  transition: opacity 0.2s; box-shadow: var(--shadow-soft);
}
.btn-primary:hover { opacity: 0.9; }
.btn-glass {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2); color: white;
  padding: 1rem 2rem; border-radius: 1rem; font-weight: 600;
  transition: background 0.2s;
}
.btn-glass:hover { background: rgba(255,255,255,0.2); }
.btn-accent {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--accent); color: var(--accent-fg);
  padding: 0.625rem 1.25rem; border-radius: 0.75rem; font-size: 0.875rem; font-weight: 600;
  transition: opacity 0.2s;
}
.btn-accent:hover { opacity: 0.9; }

/* ===== Navbar ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: var(--nav-bg); border-bottom: 1px solid hsl(220, 30%, 20%);
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}
.navbar-inner { display: flex; align-items: center; justify-content: space-between; padding: 1rem 0; }
.navbar-brand { font-size: 1.25rem; font-weight: 800; color: white; }
.navbar-desktop { display: none; align-items: center; gap: 1.5rem; }
.nav-link { font-size: 0.875rem; font-weight: 500; color: rgba(255,255,255,0.7); transition: color 0.2s; }
.nav-link:hover { color: var(--accent); }
.nav-socials { display: flex; align-items: center; gap: 0.5rem; border-left: 1px solid rgba(255,255,255,0.1); padding-left: 1rem; }
.nav-social-icon {
  width: 2rem; height: 2rem; border-radius: 0.5rem;
  background: rgba(255,255,255,0.05); color: rgba(255,255,255,0.6);
  display: flex; align-items: center; justify-content: center; transition: all 0.2s;
}
.nav-social-icon:hover { background: var(--accent); color: var(--fg); }
.nav-social-icon svg { width: 16px; height: 16px; }

.navbar-toggle {
  display: flex; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px;
}
.navbar-toggle span { display: block; width: 24px; height: 2px; background: white; border-radius: 2px; transition: all 0.3s; }
.navbar-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.navbar-toggle.active span:nth-child(2) { opacity: 0; }
.navbar-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.navbar-mobile {
  display: none; flex-direction: column; gap: 1rem; padding: 0 1.5rem 1.5rem;
  background: var(--nav-bg);
}
.navbar-mobile.open { display: flex; }
.navbar-mobile .nav-socials { border-left: none; padding-left: 0; padding-top: 0.5rem; border-top: 1px solid rgba(255,255,255,0.1); }

@media (min-width: 768px) {
  .navbar-desktop { display: flex; }
  .navbar-toggle { display: none; }
}

/* ===== Hero ===== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, hsla(220,30%,10%,0.8), hsla(220,30%,10%,0.5), transparent); }
.hero-content { position: relative; z-index: 10; width: 100%; padding-top: 8rem; padding-bottom: 5rem; }
.hero-text { max-width: 640px; }
.hero-badge {
  display: inline-block; background: hsla(215,70%,40%,0.2); color: white;
  border: 1px solid hsla(215,70%,40%,0.3); padding: 0.375rem 1rem;
  border-radius: 9999px; font-size: 0.875rem; font-weight: 500; margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}
.hero-text h1 { font-size: 2.5rem; font-weight: 800; color: white; line-height: 1.1; }
.hero-desc { margin-top: 1.5rem; font-size: 1.125rem; color: rgba(255,255,255,0.8); max-width: 560px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.5rem; }

@media (min-width: 640px) { .hero-text h1 { font-size: 3rem; } }
@media (min-width: 1024px) { .hero-text h1 { font-size: 3.75rem; } }

/* ===== Animations ===== */
.fade-up { animation: fadeUp 0.6s ease-out forwards; opacity: 0; }
.fade-up-d1 { animation: fadeUp 0.6s ease-out 0.15s forwards; opacity: 0; }
.fade-up-d2 { animation: fadeUp 0.6s ease-out 0.3s forwards; opacity: 0; }
.fade-up-d3 { animation: fadeUp 0.6s ease-out 0.45s forwards; opacity: 0; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

/* ===== Services ===== */
.services { padding: 6rem 0; background: var(--secondary); }
.services-grid { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card {
  background: var(--card); border-radius: 1rem; padding: 2rem;
  border: 1px solid var(--border); transition: all 0.3s;
}
.service-card:hover { box-shadow: var(--shadow-soft); border-color: hsla(215,70%,40%,0.2); }
.service-icon {
  width: 3.5rem; height: 3.5rem; border-radius: 1rem;
  background: hsla(45,95%,55%,0.15); display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem; color: var(--primary);
}
.service-icon img { filter: invert(26%) sepia(83%) saturate(1200%) hue-rotate(200deg) brightness(92%) contrast(90%); }
.service-card h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: 0.5rem; }
.service-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }

/* ===== About ===== */
.about { padding: 6rem 0; }
.about-grid { display: grid; gap: 4rem; align-items: center; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.about-text .section-label { display: block; margin-bottom: 0; }
.about-text h2 { font-size: 2rem; font-weight: 700; margin-top: 0.75rem; }
.about-text p { color: var(--muted); margin-top: 1.5rem; line-height: 1.7; }
.about-text p + p { margin-top: 1rem; }
.highlights { margin-top: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.highlights li { display: flex; align-items: center; gap: 0.75rem; font-weight: 500; }
.highlights li svg { color: var(--primary); flex-shrink: 0; }

.name-story {
  margin-top: 2.5rem; background: hsla(45,95%,55%,0.1);
  border: 1px solid hsla(45,95%,55%,0.3); border-radius: 1rem; padding: 1.5rem;
}
.name-story-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.name-story-icon {
  width: 2.5rem; height: 2.5rem; border-radius: 0.75rem;
  background: hsla(45,95%,55%,0.2); display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
}
.name-story h3 { font-size: 1rem; font-weight: 700; }
.name-story p { font-size: 0.875rem; color: var(--muted); line-height: 1.6; margin-top: 0; }
.name-story p + p { margin-top: 0.75rem; }
.name-story strong { color: var(--fg); }
.name-story em { color: rgba(0,0,0,0.6); }

.images-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.images-grid img { border-radius: 1rem; object-fit: cover; width: 100%; height: 10rem; }
.images-grid .img-full { grid-column: span 2; height: 12rem; }
.stats-bar {
  background: var(--accent); border-radius: 1rem; padding: 1.5rem;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 1rem;
}
.stat { text-align: center; }
.stat-value { font-size: 1.5rem; font-weight: 800; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.stat-label { font-size: 0.75rem; color: var(--muted); margin-top: 0.25rem; }

/* ===== Contact ===== */
.contact { padding: 6rem 0; background: var(--secondary); }
.contact-grid { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .contact-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: repeat(4, 1fr); } }
.contact-card {
  background: var(--card); border-radius: 1rem; padding: 2rem;
  border: 1px solid var(--border); text-align: center; transition: box-shadow 0.3s;
}
.contact-card:hover { box-shadow: var(--shadow-soft); }
.contact-icon {
  width: 3.5rem; height: 3.5rem; border-radius: 1rem;
  background: hsla(45,95%,55%,0.15); display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem; color: var(--primary);
}
.contact-card h3 { font-weight: 700; margin-bottom: 0.5rem; }
.contact-card p { font-size: 0.875rem; color: var(--muted); }
.map-container { margin-top: 3rem; border-radius: 1rem; overflow: hidden; border: 1px solid var(--border); height: 20rem; }
.map-container iframe { width: 100%; height: 100%; }

/* ===== Contact Form ===== */
.contact-form-container {
  margin-top: 3rem; background: var(--card); border-radius: 1rem;
  padding: 2rem; border: 1px solid var(--border);
}
.contact-form-container h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 1.5rem; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; gap: 1rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 0.375rem; }
.form-group label { font-size: 0.875rem; font-weight: 600; color: var(--fg); }
.form-group input, .form-group textarea {
  padding: 0.75rem 1rem; border-radius: 0.75rem; border: 1px solid var(--border);
  font-family: inherit; font-size: 0.875rem; background: var(--bg);
  transition: border-color 0.2s; outline: none; resize: vertical;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--primary); }
.btn-full { width: 100%; justify-content: center; border: none; cursor: pointer; font-family: inherit; font-size: 1rem; }
.form-feedback { margin-top: 0.75rem; padding: 0.75rem 1rem; border-radius: 0.75rem; font-size: 0.875rem; font-weight: 500; }
.form-feedback.success { background: hsla(140, 60%, 50%, 0.15); color: hsl(140, 60%, 30%); }
.form-feedback.error { background: hsla(0, 60%, 50%, 0.15); color: hsl(0, 60%, 30%); }

/* ===== Footer ===== */
.footer { background: var(--fg); color: rgba(255,255,255,0.7); padding: 3rem 0; }
.ecommerce-banner {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.75rem;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1rem; padding: 1rem 1.5rem; text-align: center; margin-bottom: 2rem;
}
.ecommerce-banner span { font-size: 0.875rem; color: rgba(255,255,255,0.8); }
.ecommerce-banner a { font-size: 0.875rem; font-weight: 600; color: var(--accent); transition: opacity 0.2s; white-space: nowrap; }
.ecommerce-banner a:hover { opacity: 0.8; }
.footer-inner {
  display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
}
@media (min-width: 768px) { .footer-inner { flex-direction: row; justify-content: space-between; } }
.footer-brand { font-size: 1.125rem; font-weight: 800; color: white; }
.footer-socials { display: flex; gap: 1rem; }
.footer-social-icon {
  width: 2.5rem; height: 2.5rem; border-radius: 0.75rem;
  background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.7);
  display: flex; align-items: center; justify-content: center; transition: all 0.2s;
}
.footer-social-icon:hover { background: var(--accent); color: var(--fg); }
.footer-social-icon svg { width: 20px; height: 20px; }
.footer-copy { font-size: 0.875rem; text-align: center; }

/* ===== Floating Buttons ===== */
.floating-buttons {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 50;
  display: flex; flex-direction: column; align-items: center; gap: 0.75rem;
}
.float-btn {
  width: 3rem; height: 3rem; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2); transition: all 0.2s; color: white;
}
.float-btn:hover { transform: scale(1.1); box-shadow: 0 6px 20px rgba(0,0,0,0.3); }
.float-btn svg { width: 24px; height: 24px; }
.float-instagram { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.float-tiktok { background: #000; }
.float-facebook { background: #1877F2; }
.float-whatsapp { width: 4rem; height: 4rem; background: #25D366; }
.float-whatsapp:hover { background: #1DA851; }
.float-whatsapp svg { width: 32px; height: 32px; }
