@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.whatsapp-icon {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

.button-outline {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header {
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 100;
}

.logo {
  width: 40px;
  height: 40px;
}

.company-name {
  font-size: 1.5rem;
  font-weight: bold;
  color: #1e3a8a;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: #1f2937;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-link:hover {
  color: #3b82f6;
}

.phone-link {
  text-decoration: none;
  color: white;
  background-color: #3b82f6;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-weight: 500;
  transition: background-color 0.2s;
}

.phone-link:hover {
  background-color: #2563eb;
}

.burger-menu {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 101;
}

.burger-menu.hidden {
  display: none !important;
}

.burger-line {
  width: 24px;
  height: 2px;
  background-color: #1e3a8a;
  transition: all 0.3s ease;
}

.mobile-nav-header {
  display: none;
}

.close-menu {
  display: none;
}

.nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
  pointer-events: none;
}

.nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.hero {
  background-color: #1e3a8a;
  min-height: 600px;
  padding: 4rem 0;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hero-content {
  color: white;
}

.hero-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: bold;
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  line-height: 1.2;
}

.hero-subtitle {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  color: #bfdbfe;
  margin-bottom: clamp(1.5rem, 2.5vw, 2rem);
}

.button-group {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.button {
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-weight: bold;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.button-primary {
  background-color: #3b82f6;
  color: white;
  border: none;
}

.button-primary:hover {
  background-color: #2563eb;
}

.button-outline {
  border: 2px solid white;
  color: white;
  background: transparent;
}

.button-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.stats {
  display: flex;
  gap: 2rem;
}

.stat-item {
  text-align: left;
}

.stat-number {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #bfdbfe;
}

.services {
  padding: 5rem 0;
  background-color: #f8fafc;
}

.services-title {
  font-size: clamp(2rem, 3vw, 2.5rem);
  text-align: center;
  color: #1e3a8a;
  margin-bottom: 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: white;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.service-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-content {
  padding: 1.5rem;
}

.service-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e3a8a;
  margin-bottom: 0.75rem;
}

.service-description {
  color: #64748b;
  line-height: 1.5;
  font-size: 0.95rem;
}

.prices {
  padding: 5rem 0;
  background-color: #f8fafc;
}

.prices-title {
  font-size: clamp(2rem, 3vw, 2.5rem);
  text-align: center;
  color: #1e3a8a;
  margin-bottom: 3rem;
}

.price-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.price-card {
  background: white;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.price-header {
  background-color: #1e3a8a;
  color: white;
  padding: 1.25rem;
  text-align: center;
}

.price-header h3 {
  font-size: 1.25rem;
  font-weight: 600;
}

.price-items {
  list-style: none;
  padding: 1.5rem;
  flex-grow: 1;
}

.price-items li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid #e5e7eb;
}

.price-items li:last-child {
  border-bottom: none;
}

.service {
  color: #1f2937;
  font-size: 0.95rem;
  padding-right: 1rem;
}

.price {
  color: #3b82f6;
  font-weight: 600;
  white-space: nowrap;
}

.prices-note {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.note-content {
  color: #64748b;
  margin-bottom: 2rem;
}

.note-content p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.note-action {
  text-align: center;
}

.note-action p {
  color: #1e3a8a;
  font-weight: 500;
  margin-bottom: 1rem;
}

.price-action {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #3b82f6;
  color: white;
  text-decoration: none;
  border-radius: 0.5rem;
  font-weight: 500;
  transition: background-color 0.2s;
}

.price-action:hover {
  background-color: #2563eb;
}

.contacts {
  min-height: 600px;
  padding: 5rem 0;
}

.contacts-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.contact-info {
  background-color: #1e3a8a;
  color: white;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top-left-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: white;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-item h3 {
  color: #93c5fd;
  font-size: 1.1rem;
  font-weight: 500;
}

.contact-item a {
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  transition: color 0.2s;
}

.contact-item a:hover {
  color: #93c5fd;
}

.contact-item p {
  color: white;
  font-size: 1.2rem;
  line-height: 1.5;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.instagram-icon {
  transition: transform 0.2s;
}

.social-link:hover .instagram-icon {
  transform: scale(1.1);
}

.map {
  width: 100%;
  height: 100%;
}

.map iframe {
  width: 100%;
  height: 100%;
}

.footer {
  background-color: white;
  padding: 3rem 0 1.5rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  width: 40px;
  height: 40px;
}

.footer-brand p {
  color: #1e3a8a;
  font-weight: 600;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: #4b5563;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #1e3a8a;
}

.footer-contact a {
  color: #1e3a8a;
  text-decoration: none;
  font-weight: 500;
}

.footer-contact a:hover {
  color: #2563eb;
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
  text-align: center;
  font-size: 0.9rem;
  color: #6b7280;
}

@media (max-width: 768px) {
  .footer {
    padding: 2rem 0 1rem;
  }

  .footer-content {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .contacts-grid {
    grid-template-columns: 1fr;
  }

  .contact-info {
    padding: 3rem 2rem;
  }

  .map {
    height: 400px;
  }

  .section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}

@media (max-width: 480px) {
  .contact-info {
    padding: 2rem 1rem;
  }

  .contact-item h3 {
    font-size: 1rem;
  }

  .contact-item a,
  .contact-item p {
    font-size: 1.1rem;
  }

  .map {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .prices {
    padding: 3rem 0;
  }

  .price-list {
    gap: 1.5rem;
    padding: 0 1rem;
  }

  .prices-note {
    margin: 0 1rem;
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .prices {
    padding: 2rem 0;
  }

  .price-list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .service,
  .price {
    font-size: 0.9rem;
  }

  .note-content p {
    font-size: 0.9rem;
  }
}

@media (max-width: 1024px) {
  .hero {
    padding: 3rem 0;
  }

  .hero-grid {
    gap: 2rem;
  }

  .button-group {
    gap: 0.75rem;
  }

  .button {
    padding: 0.875rem 1.5rem;
  }

  .stats {
    gap: 1.5rem;
  }

  .stat-number {
    font-size: 1.75rem;
  }
}

@media (max-width: 768px) {
  body.no-scroll {
    overflow: hidden;
  }

  .burger-menu {
    display: flex;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: white;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    transition: right 0.3s ease;
    z-index: 100;
  }

  .main-nav.active {
    right: 0;
  }

  .mobile-nav-header {
    display: flex;
    padding: 1rem;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #e5e7eb;
  }

  .close-menu {
    display: block;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #1e3a8a;
  }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    gap: 1rem;
  }

  .nav-link {
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e7eb;
  }

  .phone-link {
    display: block;
    text-align: center;
    margin-top: 1rem;
  }

  .nav-overlay {
    display: block;
  }

  .hero {
    padding: 2rem 0;
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-image {
    order: 2;
    padding: 0 1rem;
    position: relative; /* Add this */
    z-index: 0; /* Add this */
  }

  .hero-image img {
    max-height: none;
    width: 100%;
  }

  .hero-content {
    order: 1;
    padding: 0 1rem;
    position: relative; /* Add this */
    z-index: 1; /* Add this */
  }

  .button-group {
    flex-direction: column;
    gap: 1rem;
    position: relative; /* Add this */
    z-index: 2; /* Add this */
  }

  .button {
    width: 100%;
    justify-content: center;
    position: relative; /* Add this */
    z-index: 2; /* Add this */
    cursor: pointer; /* Add this */
  }

  .stats {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1.5rem;
  }

  .stat-item {
    flex: 0 0 auto;
    width: calc(33.33% - 1rem);
    text-align: center;
  }

  .services {
    padding: 3rem 0;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 0 1rem;
  }

  .service-image {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 1.75rem;
  }

  .stats {
    gap: 1rem;
  }

  .stat-item {
    width: calc(50% - 0.5rem);
    margin-bottom: 1rem;
  }

  .services {
    padding: 2rem 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .service-card {
    max-width: 100%;
  }
}

.floating-whatsapp {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  opacity: 0.9;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  transition: transform 0.3s ease;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  opacity: 1;
}

.floating-whatsapp-icon {
  width: 35px;
  height: 35px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
}

@media (max-width: 768px) {
  .floating-whatsapp {
    display: block;
  }
}

.floating-whatsapp {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #128c7e;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  transition: transform 0.3s ease;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  background-color: #075e54;
}

.floating-whatsapp-icon {
  width: 35px;
  height: 35px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
}

@media (max-width: 768px) {
  .floating-whatsapp {
    display: block;
  }
}
