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

body {
  font-family: 'Roboto', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #1f2933;
  background-color: #f3f4f6;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.main-header {
  background-color: #ffffff;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.top-bar {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #0d47a1;
}

.brand-text h1 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0d47a1;
}

.brand-text p {
  font-size: 0.85rem;
  color: #4b5563;
}

.top-contact {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.top-phone {
  font-weight: 500;
  font-size: 0.95rem;
}

.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(13,71,161,0.7), rgba(255,152,0,0.45));
  mix-blend-mode: multiply;
}

.hero-content {
  position: relative;
  max-width: 1160px;
  margin: 0 auto;
  padding: 3.5rem 1.25rem 3.75rem;
}

.hero-content h2 {
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.hero-content p {
  max-width: 640px;
  font-size: 0.98rem;
  margin-bottom: 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero-badges span {
  border-radius: 999px;
  background-color: rgba(15, 23, 42, 0.25);
  border: 1px solid rgba(255,255,255,0.4);
  padding: 0.35rem 0.75rem;
  font-size: 0.8rem;
}

.section {
  max-width: 1160px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem;
}

.section-title {
  text-align: center;
  margin-bottom: 2rem;
}

.section-title h2 {
  font-size: 1.6rem;
  margin-bottom: 0.35rem;
  color: #0d47a1;
}

.section-title p {
  color: #6b7280;
  font-size: 0.95rem;
}

.services {
  background-color: #f9fafb;
  border-radius: 1.25rem;
  margin-top: -1.25rem;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

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

.service-card {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 1.4rem 1.3rem;
  border: 1px solid rgba(15, 23, 42, 0.05);
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-card h3 {
  font-size: 1.05rem;
  color: #111827;
}

.service-card p {
  font-size: 0.92rem;
  color: #4b5563;
}

.service-card ul {
  list-style: none;
  margin-top: 0.25rem;
}

.service-card li {
  font-size: 0.9rem;
  color: #374151;
  padding-left: 1.1rem;
  position: relative;
  margin-bottom: 0.2rem;
}

.service-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #ff9800;
}

.highlight {
  padding-top: 2.8rem;
}

.highlight-content {
  background: linear-gradient(135deg, #0d47a1, #1976d2);
  border-radius: 1.5rem;
  padding: 2.2rem 1.8rem;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 1.5rem;
  color: #ffffff;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.18);
}

.highlight-text h2 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
}

.highlight-text ul {
  list-style: none;
}

.highlight-text li {
  font-size: 0.93rem;
  margin-bottom: 0.4rem;
  padding-left: 1.25rem;
  position: relative;
}

.highlight-text li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.85rem;
  color: #ffeb3b;
}

.highlight-images {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
}

.highlight-images img {
  border-radius: 0.9rem;
  object-fit: cover;
  min-height: 120px;
}

.gallery {
  padding-top: 2.8rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 0.6rem;
}

.gallery-item {
  border-radius: 0.75rem;
  cursor: pointer;
  object-fit: cover;
  height: 150px;
  width: 100%;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.1);
}

.gallery-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.2);
}

.gallery-note {
  text-align: center;
  margin-top: 0.9rem;
  font-size: 0.9rem;
  color: #6b7280;
}

.video-section {
  padding-top: 2.8rem;
}

.video-wrapper {
  max-width: 800px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.4);
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
}

.social-card {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 1.4rem 1.3rem;
  border: 1px solid rgba(15, 23, 42, 0.05);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
}

.social-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}

.social-card p {
  font-size: 0.9rem;
  color: #4b5563;
  margin-bottom: 0.6rem;
}

.social-embed iframe {
  width: 100%;
  min-height: 300px;
}

.instagram-note {
  border-radius: 0.8rem;
  background-color: #f3f4ff;
  border: 1px dashed rgba(37, 99, 235, 0.5);
  padding: 0.8rem;
  font-size: 0.9rem;
  color: #1d4ed8;
  margin-bottom: 0.5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 1.6rem;
  align-items: flex-start;
}

.contact-info h3,
.contact-form h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.contact-info ul {
  list-style: none;
  font-size: 0.92rem;
  color: #374151;
  margin-bottom: 0.9rem;
}

.contact-info li {
  margin-bottom: 0.25rem;
}

.map-note {
  font-size: 0.9rem;
  color: #6b7280;
}

.contact-form {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 1.4rem 1.3rem;
  border: 1px solid rgba(15, 23, 42, 0.05);
  box-shadow: 0 10px 22px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.86rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  border-radius: 0.6rem;
  border: 1px solid rgba(15, 23, 42, 0.18);
  padding: 0.55rem 0.7rem;
  font-size: 0.9rem;
  font-family: inherit;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #0d47a1;
  box-shadow: 0 0 0 1px rgba(13,71,161,0.25);
}

.form-note {
  font-size: 0.78rem;
  color: #9ca3af;
  margin-top: 0.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 0.55rem 1.2rem;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.18s ease;
  white-space: nowrap;
}

.btn-small {
  padding: 0.4rem 1rem;
  font-size: 0.82rem;
  background-color: #0d47a1;
  color: #ffffff;
}

.btn-small:hover {
  background-color: #0b3a84;
}

.btn.primary {
  background: linear-gradient(135deg, #ff9800, #ffb300);
  color: #111827;
  box-shadow: 0 10px 22px rgba(251, 146, 60, 0.4);
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 32px rgba(251, 146, 60, 0.6);
}

.btn.ghost {
  background-color: rgba(15, 23, 42, 0.04);
  color: #111827;
  border-color: rgba(15, 23, 42, 0.12);
}

.btn.ghost:hover {
  background-color: rgba(15, 23, 42, 0.06);
}

.btn.full {
  width: 100%;
}

.main-footer {
  margin-top: 2.5rem;
  padding: 1.2rem 1.25rem 1.6rem;
  text-align: center;
  font-size: 0.84rem;
  color: #6b7280;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.main-footer a {
  color: #0d47a1;
  font-weight: 500;
}

.whatsapp-float {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 40px rgba(22, 163, 74, 0.7);
  z-index: 40;
}

.whatsapp-float span {
  font-size: 1.5rem;
}

.whatsapp-float:hover {
  transform: translateY(-1px);
}

/* Modal gallery */

.modal {
  position: fixed;
  inset: 0;
  background-color: rgba(15, 23, 42, 0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 50;
  padding: 1rem;
}

.modal.open {
  display: flex;
}

.modal-image-wrapper {
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
}

.modal-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0.75rem;
}

.modal-close {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  background: rgba(15, 23, 42, 0.6);
  border-radius: 999px;
  color: #f9fafb;
  padding: 0.4rem 0.75rem;
  font-size: 0.85rem;
  border: 1px solid rgba(249, 250, 251, 0.4);
  cursor: pointer;
}

/* Responsive */

@media (max-width: 900px) {
  .highlight-content {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .top-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-content {
    padding-top: 2.5rem;
    padding-bottom: 2.7rem;
  }

  .services {
    margin-top: -0.6rem;
    border-radius: 1.25rem 1.25rem 0 0;
  }

  .video-wrapper {
    border-radius: 0.9rem;
  }
}

@media (max-width: 540px) {
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .gallery-item {
    height: 130px;
  }

  .whatsapp-float {
    width: 46px;
    height: 46px;
    right: 1rem;
    bottom: 1rem;
  }
}
