/* Importación de fuentes */
@import url('https://fonts.googleapis.com/css2?family=Albert+Sans:ital,wght@0,100..900;1,100..900&family=Hind+Vadodara:wght@300;400;500;600;700&display=swap');

/* Variables de colores */
:root {
  --color-primary: #DD9F3F;
  --color-dark: #383C45;
  --color-gray-light: #F6F6F6;
  --color-light: #FAFAFA;
  --color-gray-medium: #D0D0D0;
}

/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Albert Sans', Arial, sans-serif;
  background: var(--color-light);
  color: var(--color-dark);
  overflow-x: hidden;
  max-width: 100%;
}

h1,
h2,
h3 {
  font-family: 'Hind Vadodara', Arial, sans-serif;
}

.gradient-text {
  background: linear-gradient(to right, var(--color-primary), var(--color-gray-medium));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.title {
  font-size: 25px;
  text-align: center;
  margin-bottom: 10px;
}

.subtitle {
  color: var(--color-dark);
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
}

.logo-container {
  display: flex;
  align-items: center;
}

.logo {
  width: 50px;
  height: auto;
}

.contact-btn {
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  background: #fff;
  padding: 10px 15px;
  border-radius: 10px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
  white-space: nowrap;
}

.contact-btn:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  position: relative;
  padding: 40px 20px;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #fff;
  width: 100%;
}

.hero-bg-shapes {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.diamond-shape {
  position: absolute;
  border-radius: 16px;
  transform: rotate(45deg);
}

.diamond-yellow {
  background-color: var(--color-primary);
  bottom: -90px;
  left: -90px;
  z-index: 1;
  width: 180px;
  height: 180px;
}

.diamond-gray {
  background-color: var(--color-dark);
  width: 80px;
  height: 80px;
  bottom: 50px;
  left: -30px;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  gap: 20px;
}

.hero-logo {
  width: 90px;
  height: auto;
  margin-bottom: 10px;
}

h1 {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--color-dark);
  line-height: 1.2;
}

.highlight {
  color: var(--color-primary);
}

.hero-subtitle {
  font-size: 16px;
  color: var(--color-dark);
  margin-bottom: 20px;
  font-weight: 300;
  line-height: 1.5;
}

.cta-btn {
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  font-weight: 600;
  padding: 14px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 16px;
  box-shadow: 0px 0px 13px -2px var(--color-primary);
  transition: all 0.3s ease;
  text-align: center;
  width: 100%;
  max-width: 250px;
}

.cta-btn:hover {
  background: var(--color-dark);
  color: #fff;
  box-shadow: 0 6px 24px rgba(35, 39, 47, 0.13);
  transform: translateY(-3px);
}

/* Services Section */
.services {
  background: var(--color-light);
  padding: 50px 20px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 60px;
  width: 100%;
  max-width: 420px;
  margin: 30px auto;
}

.service-card {
  width: 100%;
  background: #fff;
  border: 1.5px solid var(--color-primary);
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(221, 159, 63, 0.07);
  padding: 30px 20px 20px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.service-icon {
  background-color: var(--color-primary);
  border-radius: 10px;
  padding: 8px;
  position: absolute;
  top: -20px;
  right: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-icon img {
  width: 38px;
  height: 38px;
}

.service-info {
  width: 100%;
}

.service-info h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--color-dark);
}

.service-info p {
  font-size: 16px;
  margin-bottom: 15px;
  color: var(--color-dark);
  line-height: 1.5;
}

.service-info ul {
  margin-left: 18px;
  margin-bottom: 20px;
  font-size: 16px;
  color: var(--color-dark);
}

.service-info li {
  margin-bottom: 8px;
  line-height: 1.4;
}

.service-btn {
  display: block;
  width: 100%;
  background-color: var(--color-primary);
  color: #fff;
  font-weight: 600;
  padding: 12px 0;
  border-radius: 12px;
  text-align: center;
  font-size: 16px;
  box-shadow: 0px 0px 13px -2px var(--color-primary);
  margin-top: 15px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.service-btn:hover {
  background: var(--color-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(35, 39, 47, 0.13);
}

/* Portfolio Section */
.services-portfolio {
  background: var(--color-primary);
  width: 100%;
  color: var(--color-dark);
  text-align: center;
  padding: 40px 20px;
  margin-top: 30px;
  border-radius: 10px;
}

.services-portfolio h3 {
  color: var(--color-dark);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}

.services-portfolio p {
  color: var(--color-dark);
  font-size: 16px;
  margin-bottom: 20px;
}

.portfolio-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-dark);
  color: #fff;
  font-weight: 600;
  padding: 12px 25px;
  border-radius: 14px;
  text-decoration: none;
  font-size: 16px;
  border: none;
  transition: all 0.3s ease;
}

.portfolio-btn:hover {
  background: #444;
  transform: translateY(-2px);
}

.icon-link {
  width: 18px;
  height: 18px;
  margin-right: 8px;
}

/* Difference Section */
.difference {
  background: var(--color-light);
  padding: 50px 20px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.difference-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 420px;
  margin: 30px auto;
}

.difference-item {
  display: flex;
  align-items: center;
  background: var(--color-primary);
  border-radius: 999px;
  min-height: 50px;
  width: 100%;
  position: relative;
  box-shadow: 0 4px 8px rgba(221, 159, 63, 0.2);
  transition: transform 0.3s ease;
}

.difference-item:hover {
  transform: translateY(-3px);
}

.difference-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 50px;
  background: #fff;
  border: 2px solid var(--color-dark);
  margin-right: 10px;
  flex-shrink: 0;
  border-radius: 50px;
}

.difference-icon img {
  width: 22px;
  height: 22px;
}

.difference-text {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  padding-right: 15px;
}

/* Visit Us Section */
.visit-us {
  background: var(--color-light);
  padding: 50px 20px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.visit-us-map {
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 2px 16px rgba(221, 159, 63, 0.1);
  margin: 30px auto;
}

.visit-us-map iframe {
  width: 100%;
  height: 300px;
  border-radius: 18px;
  border: none;
}

/* Footer */
.footer {
  background: var(--color-dark);
  color: #fff;
  padding: 40px 20px;
}
.footer-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 480px;
  margin: 0 auto;
  align-items: flex-start;
  text-align: left;
}
.footer-logo-img {
  width: 100px;
  margin-bottom: 16px;
}
.footer-tagline {
  font-size: 18px;
  font-weight: bolder;
  line-height: 1.5;
  margin-bottom: 10px;
}
.footer-section-title {
  font-size: 16px;
  color: var(--color-primary);
  margin-bottom: 12px;
}
.footer-links-list {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}
.footer-link {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-link:hover {
  color: #fff;
}
.footer-contact-item {
  font-size: 14px;
  margin-bottom: 10px;
  color: var(--color-light);
}
.footer-social-list {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}
.footer-social-icon {
  width: 44px;
  height: 44px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease;
}
.footer-social-icon img {
  width: 20px;
  height: 20px;
}
.footer-social-icon:hover {
  background: #ffffff57;
  transform: translateY(-3px);
}
.footer-bottom {
  margin-top: 30px;
  border-top: 1px solid var(--color-gray-medium);
  padding-top: 16px;
  font-size: 12px;
  color: var(--color-light);
  text-align: center;
}

/* Desktop Styles */
@media (min-width: 992px) {
  .title{
    font-size: 40px;
  }
  .subtitle{
    font-size: 30px;
  }

  .hero {
    display: flex;
    min-height: 100vh;
    padding: 0;
  }

  /* Left side content */
  .hero-content {
    position: absolute;
    left: 120px;
    top: 50%;
    transform: translateY(-50%);
    max-width: 500px;
    margin: 0;
    padding: 0;
    z-index: 5;
  }

  .hero-logo {
    width: 120px;
    margin-bottom: 30px;
  }

  h1 {
    font-size: 50px;
    font-weight: 500;
  }

  .highlight {
    display: block;
    margin-top: 5px;
  }

  .hero-subtitle {
    font-size: 18px;
    max-width: 450px;
    margin-top: 15px;
    margin-bottom: 30px;
  }

  /* Right side shapes */
  .hero-bg-shapes {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100vh;
    overflow: visible;
  }

  .diamond-yellow {
    width: 600px;
    height: 600px;
    top: 50%;
    right: -800px;
    transform: translateY(-50%) rotate(45deg);
    border-radius: 30px;
    left: auto;
    bottom: auto;
  }

  .diamond-gray {
    width: 300px;
    height: 300px;
    right: -400px;
    bottom: 200px;
    border-radius: 30px;
    left: auto;
    top: auto;
  }

  .cta-btn {
    padding: 16px 30px;
    font-size: 18px;
  }

  /* --- Servicios --- */
  .services {
    padding: 80px 60px 60px;
  }

  .services-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 50px auto;
  }

  .service-card {
    width: calc(50% - 20px);
    padding: 40px 30px 30px;
  }

  .service-card .service-icon {
    top: -24px;
    right: 30px;
    padding: 10px;
  }

  .service-info h3 {
    font-size: 20px;
  }

  .service-info p,
  .service-info li {
    font-size: 17px;
  }

  .service-btn {
    padding: 14px 0;
    font-size: 17px;
  }

  .services-portfolio {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 60px auto 0;
    padding: 50px 40px;
    border-radius: 16px;
    background-color: var(--color-gray-medium);
  }

  .portafolio-container-text {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .services-portfolio h3 {
    font-size: 25px;
    margin-bottom: 0;
  }

  .services-portfolio p {
    font-size: 25px;
    margin-bottom: 0;
  }

  .portfolio-btn {
    padding: 14px 30px;
    font-size: 18px;
    width: 500px;
  }

  /* --- Marcamos Diferencia --- */
  .difference {
    padding: 80px 60px 60px;
  }

  .difference-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 50px auto;
    justify-content: center;
  }

  .difference-item {
    width: calc(50% - 10px);
  }

  .difference-icon {
    width: 70px;
    height: 60px;
  }

  .difference-text {
    font-size: 17px;
  }

  /* --- Visítanos --- */
  .visit-us-map {
  max-width: 1200px;
  width: 100%;
  margin: 30px auto;
}

  /* --- Footer --- */
    .footer {
    padding: 80px 60px 20px;
  }
  .footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
    text-align: left;
  }
  .footer-logo-block .footer-logo-img {
    width: 140px;
    margin-bottom: 24px;
  }
  .footer-tagline {
    font-size: 16px;
    margin-bottom: 0;
  }
  .footer-links-block {
    display: block;
  }
  .footer-links-list {
    margin-bottom: 24px;
  }
  .footer-link {
    font-size: 15px;
  }
  .footer-contact-item {
    font-size: 15px;
  }
  .footer-social-list {
    justify-content: flex-start;
  }
  .footer-social-icon {
    width: 44px;
    height: 44px;
  }
  .footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    font-size: 14px;
  }

}