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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #1a1a1a;
  background-color: #fafafa;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: 400;
  line-height: 1.1;
}

p {
  margin: 0;
}

ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

button {
  font: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

input, textarea, select {
  font: inherit;
  border: none;
  background: transparent;
}

h1 {
  font-size: 64px;
}

h2 {
  font-size: 48px;
}

h3 {
  font-size: 40px;
}

h4 {
  font-size: 32px;
}

h5 {
  font-size: 24px;
}

h6 {
  font-size: 20px;
}

p {
  margin-bottom: 24px;
  line-height: 1.7;
}
p:last-child {
  margin-bottom: 0;
}

a:hover {
  color: #c9a66b;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fade-in {
  animation: fadeIn 0.6s ease-out;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(250, 250, 250, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(229, 229, 229, 0.5);
}
.header .navbar {
  padding: 24px 0;
}
.header .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}
.header__logo {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.header__logo:hover {
  color: #c9a66b;
}
.header .nav-link {
  font-size: 14px;
  color: #666666;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 16px;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.header .nav-link:hover, .header .nav-link.active {
  color: #1a1a1a;
}
.header .navbar-toggler {
  border: none;
  padding: 8px;
}
.header .navbar-toggler:focus {
  box-shadow: none;
}

.main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 128px 24px 96px;
  min-height: 100vh;
}
@media (max-width: 768px) {
  .main {
    padding: 96px 24px 64px;
  }
}

.footer {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 96px 24px 64px;
  margin-top: 96px;
}
.footer__logo {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 32px;
  text-align: center;
}
.footer__menu {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .footer__menu {
    flex-direction: column;
    gap: 16px;
  }
}
.footer__enlace {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.footer__enlace:hover {
  color: #c9a66b;
}
.footer__copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}

.btn {
  display: inline-block;
  padding: 16px 32px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  background-color: #1a1a1a;
  color: #ffffff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn:hover {
  background-color: #c9a66b;
  transform: translateY(-2px);
}
.btn--secondary {
  background-color: transparent;
  color: #1a1a1a;
  border: 1px solid #1a1a1a;
}
.btn--secondary:hover {
  background-color: #1a1a1a;
  color: #ffffff;
}

.card {
  background-color: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}
.card {
  padding: 32px;
}

.formulario__campo {
  margin-bottom: 24px;
}
.formulario__label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.formulario__input, .formulario__textarea {
  width: 100%;
  padding: 16px;
  font-size: 16px;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  background-color: #ffffff;
  transition: border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.formulario__input:focus, .formulario__textarea:focus {
  outline: none;
  border-color: #c9a66b;
  box-shadow: 0 0 0 3px rgba(201, 166, 107, 0.1);
}
.formulario__input::placeholder, .formulario__textarea::placeholder {
  color: #999999;
}
.formulario__textarea {
  min-height: 140px;
  resize: vertical;
}
.formulario__boton {
  display: inline-block;
  padding: 16px 32px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  background-color: #1a1a1a;
  color: #ffffff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.formulario__boton:hover {
  background-color: #c9a66b;
  transform: translateY(-2px);
}
.formulario__boton {
  width: 100%;
  padding: 16px;
}

.pagina-titulo {
  text-align: center;
  padding: 96px 0;
  animation: fadeIn 0.6s ease-out;
}
.pagina-titulo__texto {
  font-size: 64px;
  font-weight: 300;
  color: #1a1a1a;
  margin-bottom: 16px;
  letter-spacing: -1px;
}
@media (max-width: 768px) {
  .pagina-titulo__texto {
    font-size: 48px;
  }
}
@media (max-width: 480px) {
  .pagina-titulo__texto {
    font-size: 40px;
  }
}
.pagina-titulo__subtexto {
  font-size: 20px;
  color: #666666;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
  min-height: 80vh;
  padding: 64px 0;
}
@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 48px;
    text-align: center;
  }
}
.hero__contenido {
  animation: fadeInUp 0.8s ease-out;
}
.hero__titulo {
  font-size: 72px;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 32px;
  letter-spacing: -2px;
}
@media (max-width: 768px) {
  .hero__titulo {
    font-size: 48px;
  }
}
@media (max-width: 480px) {
  .hero__titulo {
    font-size: 40px;
  }
}
.hero__texto {
  font-size: 20px;
  color: #666666;
  line-height: 1.7;
  margin-bottom: 48px;
  max-width: 480px;
}
@media (max-width: 768px) {
  .hero__texto {
    margin: 0 auto 48px;
  }
}
.hero__boton {
  display: inline-block;
  padding: 16px 32px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  background-color: #1a1a1a;
  color: #ffffff;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero__boton:hover {
  background-color: #c9a66b;
  transform: translateY(-2px);
}
.hero__boton:hover {
  color: #ffffff;
}
@media (max-width: 768px) {
  .hero__imagen {
    order: -1;
  }
}
.hero__imagen img {
  width: 100%;
  border-radius: 16px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero__imagen img:hover {
  transform: scale(1.02);
}
.hero__imagen .carousel {
  border-radius: 16px;
  overflow: hidden;
}
.hero__imagen .carousel .carousel-item img {
  height: 500px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .hero__imagen .carousel .carousel-item img {
    height: 350px;
  }
}
.hero__imagen .carousel .carousel-control-prev,
.hero__imagen .carousel .carousel-control-next {
  width: 50px;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero__imagen .carousel:hover .carousel-control-prev, .hero__imagen .carousel:hover .carousel-control-next {
  opacity: 0.8;
}
.hero__imagen .carousel .carousel-indicators {
  margin-bottom: 16px;
}
.hero__imagen .carousel .carousel-indicators button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ffffff;
  opacity: 0.5;
}
.hero__imagen .carousel .carousel-indicators button.active {
  opacity: 1;
}

.nosotros {
  text-align: center;
  padding: 128px 0;
  max-width: 900px;
  margin: 0 auto;
}
.nosotros__titulo {
  font-size: 40px;
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .nosotros__titulo {
    font-size: 32px;
  }
}
.nosotros__texto {
  font-size: 24px;
  color: #666666;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .nosotros__texto {
    font-size: 20px;
  }
}

.servicios {
  padding: 96px 0;
}
.servicios__titulo {
  font-size: 40px;
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 48px;
}
@media (max-width: 768px) {
  .servicios__titulo {
    font-size: 32px;
  }
}
.servicios__titulo {
  text-align: center;
}
.servicios__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
@media (max-width: 768px) {
  .servicios__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.servicio {
  text-align: center;
  padding: 48px;
  background-color: #ffffff;
  border-radius: 16px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.servicio:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.servicio__titulo {
  font-size: 20px;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 16px;
}
.servicio__texto {
  font-size: 16px;
  color: #666666;
  line-height: 1.7;
}

.contacto-home {
  text-align: center;
  padding: 128px;
  background-color: #1a1a1a;
  border-radius: 24px;
  color: #ffffff;
  margin-top: 96px;
}
@media (max-width: 768px) {
  .contacto-home {
    padding: 64px;
  }
}
.contacto-home__titulo {
  font-size: 40px;
  font-weight: 300;
  margin-bottom: 16px;
}
@media (max-width: 768px) {
  .contacto-home__titulo {
    font-size: 32px;
  }
}
.contacto-home__texto {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
}
.contacto-home__boton {
  display: inline-block;
  padding: 16px 32px;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  background-color: #ffffff;
  color: #1a1a1a;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.contacto-home__boton:hover {
  background-color: #c9a66b;
  color: #ffffff;
  transform: translateY(-2px);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.productos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 768px) {
  .productos__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .productos__grid {
    grid-template-columns: 1fr;
  }
}

.producto {
  background-color: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.producto:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}
.producto__imagen {
  width: 100%;
  height: 280px;
  overflow: hidden;
  background-color: #e5e5e5;
}
.producto__imagen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.producto:hover .producto__imagen img {
  transform: scale(1.08);
}
.producto__info {
  padding: 32px;
}
.producto__nombre {
  font-size: 20px;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 8px;
}
.producto__descripcion {
  font-size: 14px;
  color: #666666;
  margin-bottom: 16px;
  line-height: 1.7;
}
.producto__precio {
  font-size: 20px;
  font-weight: 600;
  color: #c9a66b;
}

.portfolio__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (max-width: 768px) {
  .portfolio__grid {
    grid-template-columns: 1fr;
  }
}

.trabajo {
  background-color: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.trabajo:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}
.trabajo__imagen {
  width: 100%;
  height: 320px;
  overflow: hidden;
}
.trabajo__imagen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.trabajo:hover .trabajo__imagen img {
  transform: scale(1.05);
}
.trabajo__info {
  padding: 48px;
}
.trabajo__titulo {
  font-size: 24px;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 8px;
}
.trabajo__descripcion {
  font-size: 16px;
  color: #666666;
  margin-bottom: 16px;
  line-height: 1.7;
}
.trabajo__categoria {
  font-size: 12px;
  color: #c9a66b;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.resenas__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
@media (max-width: 768px) {
  .resenas__grid {
    grid-template-columns: 1fr;
  }
}

.resena {
  background-color: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.resena:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}
.resena {
  padding: 48px;
}
.resena__texto {
  font-size: 20px;
  color: #1a1a1a;
  line-height: 1.7;
  margin-bottom: 32px;
  font-style: italic;
}
.resena__texto::before {
  content: '"';
  font-size: 40px;
  color: #c9a66b;
  line-height: 0;
  vertical-align: -0.4em;
  margin-right: 4px;
}
.resena__nombre {
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 4px;
}
.resena__fecha {
  font-size: 14px;
  color: #999999;
}

.contacto__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
}
@media (max-width: 768px) {
  .contacto__grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }
}
.contacto__titulo {
  font-size: 32px;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 48px;
}
.contacto__dato {
  margin-bottom: 32px;
}
.contacto__subtitulo {
  font-size: 12px;
  font-weight: 600;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.contacto__texto {
  font-size: 16px;
  color: #666666;
}
.contacto__redes {
  display: flex;
  gap: 24px;
}
.contacto__red {
  font-size: 16px;
  color: #666666;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.contacto__red:hover {
  color: #c9a66b;
}
