:root {
  --bg: #f5f3f0;
  --surface: #ffffff;
  --primary: #2c5a57;
  --primary-dark: #1f4540;
  --primary-light: #3d7a77;
  --text: #2c2c2c;
  --muted: #6b6b6b;
  --accent: #e87a6f;
  --accent-light: #f0a89d;
  --radius: 24px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

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

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

/* HEADER & NAV */
.site-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(44, 90, 87, 0.1);
  position: sticky;
  top: 0;
  z-index: 20;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 0;
}

.logo {
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--primary);
  letter-spacing: -0.5px;
  transition: var(--transition);
}

.logo:hover {
  color: var(--accent);
}

.subtext {
  margin: 0.3rem 0 0;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 500;
}

.nav-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a:hover::after {
  width: 100%;
}

/* HERO SECTION */
.hero-section {
  padding: 5rem 0 4rem;
  background: linear-gradient(135deg, rgba(44, 90, 87, 0.05) 0%, rgba(232, 122, 111, 0.05) 100%);
}

.hero-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 1.5rem;
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.8rem;
  animation: slideInUp 0.8s ease-out 0.2s both;
}

.hero-content h1 {
  margin: 0 0 1.5rem;
  font-size: clamp(2.5rem, 3.5vw, 4rem);
  line-height: 1.1;
  color: var(--primary);
  animation: slideInUp 0.8s ease-out 0.3s both;
  font-weight: 800;
}

.hero-content p {
  max-width: 34rem;
  line-height: 1.9;
  color: var(--muted);
  font-size: 1.05rem;
  animation: slideInUp 0.8s ease-out 0.4s both;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  animation: slideInUp 0.8s ease-out 0.5s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0 2rem;
  border-radius: 50px;
  font-weight: 700;
  transition: var(--transition);
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(44, 90, 87, 0.15);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #ffffff;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(44, 90, 87, 0.3);
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-secondary {
  border: 2px solid var(--accent);
  color: var(--accent);
  background: rgba(232, 122, 111, 0.08);
}

.btn-secondary:hover {
  background: var(--accent);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(232, 122, 111, 0.3);
}

.hero-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius);
  animation: slideInRight 0.8s ease-out 0.4s both;
  box-shadow: 0 20px 50px rgba(44, 90, 87, 0.2);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: var(--transition);
}

.hero-image:hover img {
  transform: scale(1.05);
}

/* SECTIONS */
.section {
  padding: 4.5rem 0;
}

.services-section {
  background: #ffffff;
}

.about-section {
  background: linear-gradient(135deg, rgba(44, 90, 87, 0.03) 0%, rgba(232, 122, 111, 0.03) 100%);
}

.section-header {
  margin-bottom: 3rem;
  text-align: center;
}

.section-label {
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
  display: inline-block;
}

.section h2 {
  margin: 0;
  font-size: clamp(2rem, 2.4vw, 2.8rem);
  color: var(--primary);
  font-weight: 800;
}

/* SERVICES */
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--surface);
  border: 1px solid rgba(44, 90, 87, 0.1);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  transform: translateY(0);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(44, 90, 87, 0.15);
  border-color: var(--accent);
}

.service-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: var(--transition);
}

.service-card:hover .service-image {
  transform: scale(1.08);
}

.service-card h3 {
  margin: 1.5rem 1.75rem 0.85rem;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.15rem;
}

.service-card p {
  padding: 0 1.75rem 1.75rem;
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  flex-grow: 1;
  font-size: 0.95rem;
}

/* SERVICE DETAILS */
.service-details-section {
  background: #ffffff;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.detail-item {
  background: linear-gradient(135deg, rgba(44, 90, 87, 0.05) 0%, rgba(232, 122, 111, 0.05) 100%);
  border: 1px solid rgba(44, 90, 87, 0.1);
  border-radius: 20px;
  padding: 2rem;
  transition: var(--transition);
  text-align: center;
}

.detail-item:hover {
  border-color: var(--accent);
  box-shadow: 0 12px 30px rgba(44, 90, 87, 0.1);
  transform: translateY(-4px);
}

.detail-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.detail-item h4 {
  margin: 0 0 1rem;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.1rem;
}

.detail-item ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
  text-align: left;
}

.detail-item li {
  margin-bottom: 0.6rem;
  color: var(--muted);
  font-size: 0.9rem;
  padding-left: 1.5rem;
  position: relative;
}

.detail-item li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 800;
  font-size: 1.2rem;
}

/* ABOUT */
.about-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.about-text .section-label {
  display: block;
}

.about-text h2 {
  margin-top: 0.5rem;
}

.about-text h3 {
  color: var(--primary);
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
  font-size: 1.1rem;
}

.service-locations {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.location-item {
  color: var(--muted);
  font-size: 0.95rem;
  padding: 0.5rem 0;
}

.about-text p {
  color: var(--muted);
  line-height: 1.9;
  font-size: 1rem;
}

.about-list {
  margin: 2rem 0 0;
  padding-left: 0;
  color: var(--text);
  list-style: none;
}

.about-list li {
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
  font-weight: 500;
}

.about-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 800;
  font-size: 1.2rem;
}

.about-image {
  min-height: 20rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(44, 90, 87, 0.15);
}

.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* CONTACT */
.contact-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #ffffff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2.5rem;
}

.contact-section .section-label {
  color: var(--accent-light);
}

.contact-section h2 {
  color: #ffffff;
}

.contact-section p {
  color: rgba(255, 255, 255, 0.9);
}

.contact-section a {
  color: var(--accent-light);
  font-weight: 600;
  transition: var(--transition);
}

.contact-section a:hover {
  color: #ffffff;
}

.contact-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.contact-section .btn-primary {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid #ffffff;
  color: #ffffff;
  box-shadow: none;
}

.contact-section .btn-primary:hover {
  background: #ffffff;
  color: var(--primary);
}

.contact-section .btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
}

.contact-section .btn-secondary:hover {
  background: #ffffff;
  color: var(--primary);
}

.contact-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 28px;
  padding: 2rem;
  box-shadow: none;
  backdrop-filter: blur(10px);
}

.contact-card h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  color: #ffffff;
  font-weight: 700;
}

.contact-card ul {
  margin: 1rem 0 0;
  padding-left: 0;
  list-style: none;
}

.contact-card li {
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

.map-frame {
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* FOOTER */
.site-footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 2rem 0;
  text-align: center;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}

.site-footer p {
  margin: 0;
  font-size: 0.9rem;
}

/* FLOATING WHATSAPP */
.floating-whatsapp {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  background: linear-gradient(135deg, #25d366 0%, #20a952 100%);
  color: #fff;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
  font-weight: 700;
  z-index: 20;
  transition: var(--transition);
}

.floating-whatsapp:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.45);
}

/* ANIMATIONS */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-content,
  .about-content,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .details-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .hero-image {
    aspect-ratio: 16 / 9;
  }

  .service-image {
    height: 220px;
  }

  .about-image {
    min-height: 18rem;
  }

  .map-frame {
    height: 350px !important;
  }

  .nav-links {
    gap: 1rem;
  }

  .service-locations {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero-image {
    aspect-ratio: 3 / 2;
  }

  .service-image {
    height: 200px;
  }

  .service-card h3 {
    margin: 1rem 1.5rem 0.75rem;
  }

  .service-card p {
    padding: 0 1.5rem 1.5rem;
    font-size: 0.9rem;
  }

  .about-image {
    min-height: 15rem;
  }

  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    justify-content: flex-start;
    gap: 0.75rem;
  }

  .hero-section {
    padding-top: 3rem;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .section-header {
    text-align: left;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .floating-whatsapp {
    right: 1rem;
    bottom: 1rem;
    padding: 0.85rem 1.2rem;
    font-size: 0.9rem;
  }
}
