/* SS Multiservicios - Estilos */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --background: hsl(0, 0%, 98%);
  --foreground: hsl(0, 0%, 10%);
  --card: hsl(0, 0%, 100%);
  --card-foreground: hsl(0, 0%, 10%);
  --primary: hsl(181, 76%, 47%);
  --primary-foreground: hsl(0, 0%, 100%);
  --secondary: hsl(38, 79%, 61%);
  --secondary-foreground: hsl(0, 0%, 10%);
  --muted: hsl(34, 57%, 70%);
  --muted-foreground: hsl(0, 0%, 35%);
  --accent: hsl(34, 57%, 70%);
  --border: hsl(33, 20%, 52%);
  --dark: hsl(33, 20%, 35%);
  --radius: 0.5rem;
}

* { margin: 0; padding: 0; box-sizing: border-box; border-color: var(--border); }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
}

.font-heading { font-family: 'Outfit', sans-serif; }
.font-impact { font-family: 'Bebas Neue', 'Outfit', sans-serif; }

.container { width: 100%; max-width: 1152px; margin: 0 auto; padding: 0 1rem; }

/* Navbar */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: var(--card); transition: all 0.3s;
}
.navbar.scrolled { box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 102px; padding: 0 1rem;
}
.navbar-logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; cursor: pointer; border: none; background: none; }
.navbar-logo img { width: 77px; height: 77px; object-fit: contain; }
.navbar-logo-text h1 { font-family: 'Bebas Neue', sans-serif; font-size: 1.25rem; letter-spacing: 0.1em; color: var(--foreground); line-height: 1.2; }
.navbar-logo-text p { font-size: 0.75rem; color: var(--muted-foreground); font-family: 'Outfit', sans-serif; }

.nav-links { display: flex; align-items: center; gap: 1.5rem; }
.nav-links a, .nav-links button { font-family: 'Outfit', sans-serif; font-weight: 500; color: var(--foreground); text-decoration: none; background: none; border: none; cursor: pointer; font-size: 1rem; transition: color 0.3s; }
.nav-links a:hover, .nav-links button:hover { color: var(--primary); }

.nav-social { display: flex; align-items: center; gap: 0.75rem; margin-left: 0.5rem; padding-left: 1.5rem; border-left: 1px solid var(--border); }
.nav-social a { padding: 0.5rem; border-radius: 0.5rem; transition: background 0.3s; display: flex; }
.nav-social a:hover { background: hsla(34, 57%, 70%, 0.3); }
.nav-social svg { width: 20px; height: 20px; color: var(--foreground); }

.btn-primary {
  background: var(--primary); color: var(--primary-foreground);
  padding: 0.5rem 1rem; border-radius: var(--radius); border: none;
  font-family: 'Outfit', sans-serif; font-weight: 600; cursor: pointer;
  transition: opacity 0.3s; font-size: 0.875rem;
}
.btn-primary:hover { opacity: 0.9; }

.btn-secondary {
  background: var(--secondary); color: var(--secondary-foreground);
  padding: 0.75rem 1.5rem; border-radius: var(--radius); border: none;
  font-family: 'Outfit', sans-serif; font-weight: 600; cursor: pointer;
  transition: transform 0.3s; font-size: 1rem; width: 100%;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
}
.btn-secondary:hover { transform: scale(1.05); }
.btn-secondary svg { width: 20px; height: 20px; }

/* Mobile menu */
.mobile-menu-btn { display: none; padding: 0.5rem; background: none; border: none; cursor: pointer; }
.mobile-menu-btn svg { width: 24px; height: 24px; }
.mobile-menu { display: none; padding: 1rem 0; border-top: 1px solid var(--border); }
.mobile-menu.active { display: block; }
.mobile-menu a, .mobile-menu button { display: block; width: 100%; text-align: left; padding: 0.75rem 0; font-family: 'Outfit', sans-serif; font-weight: 500; color: var(--foreground); text-decoration: none; background: none; border: none; cursor: pointer; font-size: 1rem; }

/* Hero */
.hero {
  position: relative; min-height: 600px; display: flex; align-items: flex-end;
  padding: 2rem 1rem; overflow: hidden; margin-top: 102px;
}
.hero-bg {
  position: absolute; inset: 0; background-size: contain;
  background-position: center; background-repeat: no-repeat;
}
.hero-content { position: relative; z-index: 10; width: 100%; text-align: center; margin-bottom: 3rem; }
.hero h1 { font-family: 'Bebas Neue', sans-serif; font-size: 4.5rem; letter-spacing: 0.1em; color: white; margin-bottom: 1rem; text-shadow: 0 2px 8px rgba(0,0,0,0.9); }
.hero .subtitle { font-family: 'Bebas Neue', sans-serif; font-size: 1.875rem; letter-spacing: 0.05em; color: white; margin-bottom: 0.5rem; text-shadow: 0 2px 6px rgba(0,0,0,0.8); }
.hero .description { font-size: 1.125rem; color: white; max-width: 48rem; margin: 0 auto; text-shadow: 0 2px 6px rgba(0,0,0,0.8); }

.hero-buttons { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; max-width: 56rem; margin: 2rem auto 0; position: relative; z-index: 10; }
.hero-buttons a { text-decoration: none; }

/* Announcement */
.announcement { padding: 3rem 1rem; background: hsla(181, 76%, 47%, 0.05); border-top: 1px solid hsla(181, 76%, 47%, 0.1); border-bottom: 1px solid hsla(181, 76%, 47%, 0.1); }
.announcement p { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; letter-spacing: 0.05em; text-align: center; max-width: 56rem; margin: 0 auto; }

/* Sections */
.section { padding: 5rem 1rem; scroll-margin-top: 102px; }
.section-muted { background: hsla(34, 57%, 70%, 0.1); }
.section-title { font-family: 'Outfit', sans-serif; font-size: 2rem; font-weight: 700; text-align: center; margin-bottom: 1rem; }
.section-subtitle { color: var(--muted-foreground); font-size: 1.125rem; text-align: center; max-width: 42rem; margin: 0 auto 3rem; }

/* Cards */
.card {
  background: var(--card); border: 1px solid hsla(181, 76%, 47%, 0.2);
  border-radius: var(--radius); overflow: hidden; transition: border-color 0.3s;
}
.card:hover { border-color: var(--primary); }
.card-secondary { border-color: hsla(38, 79%, 61%, 0.2); }
.card-secondary:hover { border-color: var(--secondary); }
.card-header { padding: 1.5rem 1.5rem 0; }
.card-title { font-family: 'Outfit', sans-serif; font-size: 1.25rem; font-weight: 700; color: var(--primary); }
.card-title-secondary { color: var(--secondary); }
.card-content { padding: 1.5rem; }

.service-list { list-style: none; }
.service-list li { display: flex; align-items: center; gap: 0.5rem; padding: 0.25rem 0; font-size: 0.875rem; color: var(--muted-foreground); }
.service-list svg { width: 16px; height: 16px; flex-shrink: 0; }

.service-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 2rem; }
.service-header svg { width: 32px; height: 32px; }
.service-header h3 { font-family: 'Outfit', sans-serif; font-size: 1.5rem; font-weight: 700; }

.service-image { width: 100%; height: 400px; object-fit: cover; border-radius: var(--radius); margin-bottom: 2rem; }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }

/* About */
.about-card { padding: 1.5rem; }
.about-card h3 { font-family: 'Outfit', sans-serif; font-size: 1.5rem; font-weight: 600; margin-bottom: 1rem; }
.about-card p { color: var(--muted-foreground); line-height: 1.8; }
.about-icon { padding: 0.75rem; background: hsla(181, 76%, 47%, 0.1); border-radius: 0.5rem; display: inline-flex; }
.about-icon-secondary { background: hsla(38, 79%, 61%, 0.1); }
.about-icon svg { width: 24px; height: 24px; }
.mission-quote { color: var(--primary); font-weight: 600; margin-top: 1rem; }

/* Certifications */
.cert-hero { width: 100%; border-radius: 0.75rem; box-shadow: 0 4px 20px rgba(0,0,0,0.1); cursor: pointer; }
.cert-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.cert-card { text-align: center; padding: 1.5rem; background: var(--background); border-radius: 0.5rem; border: 1px solid hsla(181, 76%, 47%, 0.2); }
.cert-card svg { width: 48px; height: 48px; margin: 0 auto 1rem; }
.cert-card h3 { font-family: 'Outfit', sans-serif; font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }
.cert-card p { color: var(--muted-foreground); font-size: 0.875rem; }

/* Gallery */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.gallery-item { aspect-ratio: 1; overflow: hidden; border-radius: var(--radius); border: 1px solid hsla(181, 76%, 47%, 0.2); cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.gallery-item:hover img { transform: scale(1.05); }

/* Modal */
.modal-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.8); z-index: 100; align-items: center; justify-content: center; padding: 2rem; }
.modal-overlay.active { display: flex; }
.modal-content { max-width: 90vw; max-height: 90vh; position: relative; }
.modal-content img { max-width: 100%; max-height: 85vh; border-radius: 0.5rem; }
.modal-close { position: absolute; top: -2rem; right: 0; background: none; border: none; color: white; font-size: 2rem; cursor: pointer; }

/* Multimedia */
.multimedia-video { display: flex; justify-content: center; }
.multimedia-video > div { background: var(--card); border-radius: 0.5rem; box-shadow: 0 4px 20px rgba(0,0,0,0.1); overflow: hidden; border: 1px solid var(--border); padding: 1rem; transition: border-color 0.3s; }
.multimedia-video > div:hover { border-color: var(--primary); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.contact-info-item { display: flex; align-items: center; gap: 0.75rem; padding: 0.5rem 0; text-decoration: none; color: var(--muted-foreground); transition: color 0.3s; }
.contact-info-item:hover { color: var(--primary); }
.contact-icon { padding: 0.5rem; background: hsla(181, 76%, 47%, 0.1); border-radius: 0.5rem; display: flex; transition: background 0.3s; }
.contact-info-item:hover .contact-icon { background: hsla(181, 76%, 47%, 0.2); }
.contact-icon svg { width: 20px; height: 20px; color: var(--primary); }
.contact-label { font-weight: 500; color: var(--foreground); }

.social-links { display: flex; gap: 1rem; padding-top: 1rem; border-top: 1px solid var(--border); margin-top: 1rem; }
.social-link { padding: 0.5rem; background: hsla(181, 76%, 47%, 0.1); border-radius: 0.5rem; display: flex; transition: background 0.3s; }
.social-link:hover { background: hsla(181, 76%, 47%, 0.2); }
.social-link svg { width: 24px; height: 24px; color: var(--primary); }

/* Form */
.form-group { margin-bottom: 1rem; }
.form-input, .form-textarea {
  width: 100%; padding: 0.75rem 1rem; border: 1px solid hsla(181, 76%, 47%, 0.2);
  border-radius: var(--radius); font-family: 'Outfit', sans-serif; font-size: 1rem;
  background: var(--background); color: var(--foreground); transition: border-color 0.3s;
}
.form-input:focus, .form-textarea:focus { outline: none; border-color: var(--primary); }
.form-textarea { resize: none; min-height: 150px; }
.btn-submit {
  width: 100%; padding: 0.75rem; background: var(--primary); color: var(--primary-foreground);
  border: none; border-radius: var(--radius); font-family: 'Outfit', sans-serif;
  font-weight: 600; font-size: 1rem; cursor: pointer; transition: opacity 0.3s;
}
.btn-submit:hover { opacity: 0.9; }

/* Google Map */
.google-map { width: 100%; height: 500px; }
.google-map iframe { width: 100%; height: 100%; border: 0; }

/* Footer */
.footer { background: var(--dark); color: var(--primary-foreground); padding: 2rem 1rem; }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-bottom: 1.5rem; }
.footer h3 { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.125rem; margin-bottom: 0.75rem; }
.footer p, .footer a { font-size: 0.875rem; color: hsla(0, 0%, 100%, 0.8); }
.footer a { text-decoration: none; }
.footer a:hover { text-decoration: underline; }
.footer-bottom { border-top: 1px solid hsla(0, 0%, 100%, 0.2); padding-top: 1.5rem; text-align: center; font-size: 0.875rem; color: hsla(0, 0%, 100%, 0.8); }
.footer-bottom a { color: var(--secondary); }

/* WhatsApp Button */
.whatsapp-btn {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 50;
  width: 60px; height: 60px; background: #25D366; color: white;
  border: none; border-radius: 50%; cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2); transition: all 0.3s;
  display: flex; align-items: center; justify-content: center;
}
.whatsapp-btn:hover { background: #128C7E; transform: scale(1.1); }
.whatsapp-btn svg { width: 28px; height: 28px; }

/* Responsive */
@media (max-width: 768px) {
  .nav-links, .nav-social { display: none; }
  .navbar-logo-text { display: none; }
  .mobile-menu-btn { display: block; }
  .hero h1 { font-size: 3rem; margin-top: 50px; }
  .hero .subtitle { font-size: 1.5rem; }
  .hero-buttons { grid-template-columns: 1fr; }
  .grid-3, .cert-cards, .gallery-grid { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .announcement p { font-size: 1.5rem; }
  .google-map { height: 400px; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .grid-3, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
