@charset "UTF-8";
.contact-container {
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 150px 10% 100px;
  background-color: #0d0b1a;
}
.contact-container .contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  width: 100%;
}
@media (max-width: 900px) {
  .contact-container .contact-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

.contact-info p {
  color: #ff6fc8;
  margin-bottom: 40px;
  font-family: "DM Sans", sans-serif;
  font-size: 1.2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.contact-form input, .contact-form textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 15px 0;
  color: white;
  font-family: "DM Sans", sans-serif;
  outline: none;
  transition: all 0.3s ease;
}
.contact-form input:focus, .contact-form textarea:focus {
  border-bottom-color: #ff6fc8;
  background: rgba(255, 111, 200, 0.02);
}
.contact-form input:not(:placeholder-shown), .contact-form textarea:not(:placeholder-shown) {
  border-bottom-color: rgba(255, 111, 200, 0.6);
}
.contact-form label {
  font-size: 0.6rem;
  color: #ff6fc8;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: "DM Sans", sans-serif;
}

.cta-button {
  align-self: center;
  width: 100%;
  background: transparent;
  border: 1px solid #ff6fc8;
  color: #ff6fc8;
  padding: 15px 40px;
  border-radius: 50px;
  transition: all 0.4s ease;
  cursor: pointer;
}
.cta-button:hover {
  background: #9b90c4;
  color: #0d0b1a;
  border-color: #0d0b1a;
  transform: translateY(-3px);
}

.social-links {
  margin-top: 20px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 1px;
}
.social-links a {
  color: #ff6fc8;
  text-decoration: none;
  transition: color 0.3s;
  display: inline-block;
}
.social-links a:hover {
  color: #9b90c4;
}

.social-links {
  color: white;
}
.social-links a {
  margin: 0 10px;
}
.social-links a:first-child {
  margin-left: 0;
}

input:not(:placeholder-shown) {
  border-bottom-color: rgba(255, 111, 200, 0.5);
}

textarea:not(:placeholder-shown) {
  border-bottom-color: rgba(255, 111, 200, 0.5);
}

.form-group {
  width: 100%;
  position: relative;
}
.form-group textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 15px 0;
  color: white;
  font-family: "DM Sans", sans-serif;
  outline: none;
  transition: all 0.3s ease;
}
.form-group textarea:focus {
  border-bottom-color: #ff6fc8;
  background: rgba(255, 111, 200, 0.02);
}
.form-group textarea:not(:placeholder-shown) {
  border-bottom-color: rgba(255, 111, 200, 0.6);
}
.form-group textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.6;
  display: block;
}

.reveal-text {
  display: block;
  font-family: "DM Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: #ff6fc8;
  text-transform: uppercase;
  letter-spacing: 5px;
  margin-bottom: 15px;
  opacity: 0.8;
}
.reveal-text::after {
  display: inline-block;
  width: 30px;
  height: 1px;
  background-color: #ff6fc8;
  vertical-align: middle;
  margin-left: 15px;
}

.nav-foto {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
  background-color: #0d0b1a;
  z-index: 9999;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.nav-foto .logo-img {
  height: 70px;
  width: auto;
}
.nav-foto .menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  width: 30px;
  height: 22px;
  z-index: 10002;
  position: relative;
  padding: 0;
}
.nav-foto .menu-toggle .bar {
  display: block;
  width: 100%;
  height: 3px;
  background-color: white;
  transition: all 0.3s ease;
  border-radius: 2px;
}
.nav-foto .nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-foto .nav-links a {
  color: white;
  text-decoration: none;
  font-family: "DM Sans", sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}
@media (max-width: 768px) {
  .nav-foto {
    padding: 15px 5%;
  }
  .nav-foto .menu-toggle {
    display: flex;
  }
  .nav-foto .nav-links {
    position: fixed;
    right: -100%;
    top: 0;
    width: 75%;
    height: 100vh;
    background-color: #0d0b1a;
    flex-direction: column;
    justify-content: center;
    transition: 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 10000;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  }
  .nav-foto .nav-links.active {
    right: 0;
  }
  .nav-foto .nav-links a {
    font-size: 1.4rem;
    margin: 15px 0;
    width: 100%;
    text-align: center;
  }
  .nav-foto .menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
    transform: translateX(10px);
  }
  .nav-foto .menu-toggle.active .bar:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
  }
  .nav-foto .menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-9.5px) rotate(-45deg);
  }
}

.footer-foto {
  width: 100%;
  background-color: #0d0b1a;
  padding: 40px 5% 20px;
}
.footer-foto .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "DM Sans", sans-serif;
  padding-top: 30px;
  font-size: 0.75rem;
  color: #9b90c4;
}
.footer-foto .footer-bottom .links {
  display: flex;
  gap: 20px;
}
.footer-foto .footer-bottom .links a {
  color: #9b90c4;
  text-decoration: none;
}
.footer-foto .footer-bottom .links a:hover {
  color: #ff6fc8;
}

.footer-cta {
  text-align: center;
  padding-bottom: 60px;
  background-color: #0d0b1a;
}
.footer-cta h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: white;
  margin-bottom: 45px;
}
.footer-cta h2 em {
  color: #ff6fc8;
  font-style: italic;
}

p {
  font-family: "DM Sans", sans-serif;
  color: #9b90c4;
  font-size: 1rem;
  margin-bottom: 30px;
}

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

html,
body {
  width: 100%;
  overflow-x: hidden;
  background-color: #000;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

ul {
  list-style: none;
}

#cursor, #cursor-follower {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 10000;
  border-radius: 50%;
  transition: transform 0.1s ease-out, opacity 0.3s ease;
}

#cursor {
  width: 8px;
  height: 8px;
  background-color: #ff6fc8;
}

#cursor-follower {
  width: 40px;
  height: 40px;
  border: 1px solid #ff6fc8;
  transition: transform 0.3s ease-out, background 0.3s ease, border 0.3s ease;
}

.cursor-hover #cursor {
  transform: scale(1.5);
  opacity: 0.5;
}
.cursor-hover #cursor-follower {
  transform: scale(1.5);
  background-color: rgba(255, 111, 200, 0.1);
  border-color: white;
}

@media (max-width: 768px) {
  /* Ocultamos los elementos del cursor personalizado */
  #cursor,
  #cursor-follower {
    display: none !important;
  }
  /* Restauramos el cursor por defecto del sistema para inputs y botones */
  /* (Aunque sea táctil, esto evita conflictos visuales) */
  *, a, button, input, select, textarea {
    cursor: auto !important;
  }
}
.hero-foto {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #0d0b1a;
  padding-top: 100px;
}

.gallery-section {
  padding: 50px 5%;
  background-color: #0d0b1a;
}
.gallery-section .grid-editorial {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-auto-rows: 250px;
  grid-auto-flow: dense;
  gap: 20px;
}
.gallery-section .grid-editorial .grid-item {
  position: relative;
  overflow: hidden;
  background-color: #111;
}
.gallery-section .grid-editorial .grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.19, 1, 0.22, 1);
  filter: grayscale(20%);
}
.gallery-section .grid-editorial .grid-item span {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: white;
  font-family: "DM Sans", sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
  z-index: 2;
}
.gallery-section .grid-editorial .grid-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.gallery-section .grid-editorial .grid-item:hover img {
  transform: scale(1.05);
  filter: grayscale(0%);
}
.gallery-section .grid-editorial .grid-item:hover span {
  opacity: 1;
  transform: translateY(0);
}
.gallery-section .grid-editorial .grid-item:hover::after {
  opacity: 1;
}
.gallery-section .grid-editorial .grid-item.tall {
  grid-row: span 2;
}
.gallery-section .grid-editorial .grid-item.wide {
  grid-column: span 2;
}
.gallery-section .grid-editorial .grid-item.medium {
  grid-row: span 1.5;
}
@media (max-width: 768px) {
  .gallery-section .grid-editorial .grid-item {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
  }
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 20000;
  align-items: center;
  justify-content: center;
}
.lightbox .lightbox-content {
  max-width: 90%;
  max-height: 80%;
  object-fit: contain;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.lightbox .close-lightbox {
  position: absolute;
  top: 30px;
  right: 40px;
  color: white;
  font-size: 3rem;
  cursor: pointer;
}
.lightbox .close-lightbox:hover {
  color: #ff6fc8;
}

h1, .main-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 5rem;
  line-height: 1.1;
  color: white;
  margin-bottom: 20px;
  font-weight: 300;
}
h1 em, .main-title em {
  font-style: italic;
  font-family: "Cormorant Garamond", serif;
}
@media (max-width: 900px) {
  h1, .main-title {
    font-size: 3.5rem;
  }
}

.display-large {
  font-size: clamp(4rem, 12vw, 8rem);
  letter-spacing: -2px;
  text-transform: capitalize;
}

.reveal-text {
  display: block;
  font-family: "DM Sans", sans-serif;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: #ff6fc8;
  margin-bottom: 15px;
  opacity: 0.8;
}

em {
  color: #ff6fc8;
  font-style: inherit;
}

em {
  font-style: italic;
}

.about-section {
  padding: 120px 5% 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  background-color: #0d0b1a;
}
@media (max-width: 900px) {
  .about-section {
    grid-template-columns: 1fr;
    padding: 130px 5% 40px 5% 40px;
    gap: 30px;
  }
}

.about-image {
  height: 55vh;
  width: 100%;
  max-width: 450px;
  border-radius: 5px;
  justify-self: end;
  position: relative;
  overflow: hidden;
  border: 1px solid #9b90c4;
  background-color: #1a1635;
}
@media (max-width: 900px) {
  .about-image {
    justify-self: center;
    height: 40vh;
    max-width: 100%;
  }
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

@media (max-width: 900px) {
  .about-text {
    text-align: left;
  }
}
.about-text p {
  font-family: "DM Sans", sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
  color: #9b90c4;
  margin-bottom: 20px;
  max-width: 500px;
}
@media (max-width: 900px) {
  .about-text p {
    max-width: 100%;
    font-size: 1rem;
  }
}
.about-text p strong {
  color: #ff6fc8;
  font-weight: 400;
}

.philosophy-quote {
  grid-column: span 2;
  text-align: center;
}
.philosophy-quote blockquote {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.5rem, 6vw, 3.2rem);
  font-style: italic;
  color: #ff6fc8;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.2;
}
@media (max-width: 900px) {
  .philosophy-quote {
    grid-column: span 1;
    padding: 40px 0;
  }
  .philosophy-quote blockquote {
    white-space: normal;
  }
}/*# sourceMappingURL=main.css.map */