@import url(https://fonts.cdnfonts.com/css/mont);
@import url(https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap);
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px; /* Ajusta según la altura de tu navbar */
}

/* Ajuste para el comportamiento del scroll */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

/* Asegura que el scroll sea suave en todos los navegadores */
* {
  scroll-margin-top: 80px; /* Ajusta según la altura de tu navbar */
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  position: relative;
}

/* Asegurar que el menú móvil esté por encima de todo */
.mobile-menu {
  position: fixed !important;
  z-index: 9999 !important;
}

/* Evitar que el contenido se desplace cuando el menú está abierto */
body.menu-open {
  overflow: hidden;
} 
.language-selector {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.language-button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.language-button:hover,
.language-button.active {
  color: white;
}

.language-separator {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
  user-select: none;
}

.flag-icon {
  width: 24px;
  height: 16px;
  border-radius: 2px;
  object-fit: cover;
}

/* Estilos específicos para móvil */
@media (max-width: 768px) {
  .language-selector {
    padding: 4px;
  }

  .language-button {
    padding: 4px;
  }

  .flag-icon {
    width: 28px;
    height: 20px;
  }
} 
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.95);
}

.navbar-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-brand {
  display: flex;
  align-items: center;
}

.logo {
  color: white;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: bold;
}

.navbar-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.menu-button {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1002;
}

.menu-icon {
  width: 24px;
  height: 18px;
  position: relative;
  transform: rotate(0deg);
  transition: .5s ease-in-out;
}

.menu-icon span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: white;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}

.menu-icon span:nth-child(1) {
  top: 0px;
}

.menu-icon span:nth-child(2) {
  top: 8px;
}

.menu-icon span:nth-child(3) {
  top: 16px;
}

.menu-icon.open span:nth-child(1) {
  top: 8px;
  transform: rotate(135deg);
}

.menu-icon.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

.menu-icon.open span:nth-child(3) {
  top: 8px;
  transform: rotate(-135deg);
}

.navbar-menu-desktop {
  display: flex;
  gap: 2rem;
  margin-right: 2rem;
}

.navbar-menu-desktop a {
  color: white;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.navbar-menu-desktop a:hover {
  color: var(--primary-color);
}

.navbar-menu-mobile {
  display: none;
}

.navbar-overlay {
  display: none;
}

@media (max-width: 768px) {
  .navbar-menu-desktop {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .navbar-overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1001;
  }

  .navbar-menu-mobile {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: right 0.3s ease;
    z-index: 1002;
  }

  .navbar-menu-mobile.active {
    right: 0;
  }

  .navbar-menu-mobile a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }

  .navbar-menu-mobile a:hover {
    color: var(--primary-color);
  }
}

@media (min-width: 769px) {
  .hamburger-menu {
    display: none;
  }

  .navbar-overlay {
    display: none !important;
  }
} 
.footer {
  background-color: rgba(0, 0, 0, 0.95);
  padding: 4rem 0;
  position: relative;
  z-index: 2;
}

.footer-brand {
  margin-bottom: 2rem;
}

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

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-contact {
  display: flex;
  gap: 2rem;
}

.footer-link {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: rgb(255, 255, 255);
}

.footer-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.footer-link span {
  font-size: 0.9rem;
}

.footer-copyright {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
}

.footer-copyright p {
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-contact {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
} 
.contact-section {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(135deg, rgba(17, 24, 39, 0.97) 0%, rgba(31, 41, 55, 0.95) 100%);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url(/static/media/fondo.894c2050fa57c9ca5334.webp);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  opacity: 0.05;
  z-index: -1;
}

@media (max-width: 767px) {
  .contact-section {
    padding: 4rem 0;
  }

  .contact-section::before {
    background-image: url(/static/media/Fondomobile.7a9e59bd649fcbd393a8.webp);
    background-attachment: scroll;
  }
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.contact-title {
  color: white;
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.contact-description {
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 4rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.contact-content {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

.contact-info {
  flex: 1;
  position: relative;
  z-index: 2;
}

.contact-card {
  background: rgba(255, 255, 255, 0.03);
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 2;
}

.contact-card h3 {
  color: white;
  font-size: 1.4rem;
  margin-bottom: 2rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1rem;
  padding: 0.5rem 0;
}

.social-link:hover {
  transform: translateX(10px);
  color: #ff6b00;
}

.social-icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
  opacity: 0.8;
}

.contact-form-container {
  flex: 2;
  min-width: 600px;
  position: relative;
  z-index: 2;
}

.contact-form {
  background: rgba(31, 41, 55, 0.4);
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}

.form-group {
  position: relative;
  margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-group label {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
  pointer-events: none;
  font-size: 1rem;
  font-weight: 500;
  background: transparent;
  padding: 0 0.5rem;
}

.form-group textarea ~ label {
  top: 1rem;
  transform: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #ff6b00;
  outline: none;
  background: rgba(255, 255, 255, 0.15);
}

.form-group input:focus ~ label,
.form-group textarea:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
  top: -0.5rem;
  left: 0.8rem;
  font-size: 0.9rem;
  background: rgba(31, 41, 55, 0.9);
  padding: 0 0.5rem;
  color: #ff6b00;
  font-weight: 600;
}

.submit-button {
  width: 100%;
  padding: 1.2rem;
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.9) 0%, rgba(255, 133, 51, 0.9) 100%);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.2);
  letter-spacing: 0.5px;
  font-weight: 500;
  text-transform: uppercase;
}

.submit-button:hover {
  background: linear-gradient(135deg, rgba(255, 133, 51, 0.9) 0%, rgba(255, 107, 0, 0.9) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 0, 0.3);
}

/* Media Queries */
@media (max-width: 1200px) {
  .contact-container {
    padding: 0 3rem;
  }

  .contact-content {
    gap: 3rem;
  }

  .contact-form {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .contact-container {
    padding: 0 1.5rem;
  }

  .contact-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
  }

  .contact-description {
    font-size: 1rem;
    margin-bottom: 3rem;
    padding: 0 1rem;
  }

  .contact-content {
    flex-direction: column;
    gap: 3rem;
  }

  .contact-info,
  .contact-form-container {
    width: 100%;
  }

  .contact-form-container {
    min-width: auto;
  }

  .contact-form {
    padding: 1.8rem;
  }

  .contact-card {
    padding: 2rem;
  }

  .form-group {
    margin-bottom: 1.5rem;
  }

  .form-group input,
  .form-group textarea {
    padding: 0.9rem;
    font-size: 0.95rem;
  }

  .form-group label {
    font-size: 0.95rem;
  }

  .submit-button {
    padding: 1rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 4rem 0;
  }

  .contact-container {
    padding: 0 1rem;
  }

  .contact-title {
    font-size: 2rem;
  }

  .contact-description {
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
  }

  .contact-content {
    gap: 2.5rem;
  }

  .contact-card {
    padding: 1.5rem;
  }

  .contact-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
  }

  .social-link {
    font-size: 0.95rem;
  }

  .social-icon {
    width: 20px;
    height: 20px;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .form-group {
    margin-bottom: 1.2rem;
  }

  .form-group input,
  .form-group textarea {
    padding: 0.8rem;
    font-size: 0.9rem;
  }

  .form-group label {
    font-size: 0.9rem;
  }

  .submit-button {
    padding: 0.9rem;
    font-size: 0.9rem;
  }
} 
.plans-section {
  background-image: url(/static/media/fondo2.9befee03e1ec7076a938.webp);
  background-size: cover;
  background-position: center 30%;
  background-attachment: fixed;
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0 0 6rem 0;
  margin-top: -9rem;
}

.plans-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
}

.plans-section-content {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  width: 100%;
  padding: 0 2rem;
  margin: 0 auto;
  margin-top: 0;
}

.plans-section-title {
  color: white;
  text-align: center;
  font-size: 3.2rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.plans-section-description {
  color: white;
  text-align: center;
  font-size: 1.3rem;
  margin-bottom: 3rem;
  opacity: 0.9;
}

.plans-cards-container {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
}

.plans-card {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  min-width: 0;
  transition: transform 0.3s ease;
}

.plans-card:hover {
  transform: translateY(-5px);
}

.plans-card-header h3 {
  color: white;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  text-align: center;
  font-weight: 500;
}

.plans-price-container {
  text-align: center;
  margin-bottom: 1rem;
}

.plans-price {
  color: hsl(25, 100%, 50%);
  font-size: 1.8rem;
  font-weight: bold;
}

.plans-card-description {
  color: white;
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 2rem;
  opacity: 0.9;
  line-height: 1.6;
}

.plans-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.plans-features-list li {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  padding-left: 2rem;
  position: relative;
  line-height: 1.5;
}

.plans-features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #ff6b00;
  font-size: 1.2rem;
}

.plans-card-cta {
  margin-top: auto;
  text-align: center;
}

.plans-card-cta button {
  background: rgba(255, 107, 0, 0.2);
  color: white;
  border: 1px solid rgba(255, 107, 0, 0.5);
  padding: 1rem 2rem;
  border-radius: 12px;
  cursor: pointer;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(5px);
  width: 100%;
}

.plans-card-cta button::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 0%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 100%
  );
  transform: rotate(45deg);
  transition: all 0.5s ease;
  opacity: 0;
}

.plans-card-cta button:hover {
  background: rgba(255, 107, 0, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.2);
}

.plans-card-cta button:hover::before {
  opacity: 1;
  transform: rotate(45deg) translate(50%, -50%);
}

@media (max-width: 1200px) {
  .plans-cards-container {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .plans-card {
    flex: 0 1 calc(50% - 1rem);
    margin-bottom: 1rem;
  }
}

@media (max-width: 768px) {
  .plans-card {
    flex: 0 1 100%;
  }
  
  .plans-section {
    padding: 0 0 5rem 0;
    margin-top: -7rem;
  }

  .plans-section-content {
    margin-top: 1rem;
  }

  .plans-section-title {
    font-size: 2rem;
    margin-bottom: 0.8rem;
  }
  
  .plans-section-description {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
} 
.problems-section {
  position: relative;
  padding: 6rem 2rem 4rem;
  background: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
  overflow: hidden;
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.problems-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.problems-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 4rem;
  color: #ffffff;
  font-weight: 700;
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  padding: 1rem;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.problem-card {
  position: relative;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 8px;
  padding: 2rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.03);
  transition: all 0.3s ease;
  opacity: 1;
  transform: translateY(0);
  overflow: hidden;
  display: block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  min-height: 220px;
}

.card-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  opacity: 0.9;
  transition: transform 0.3s ease;
}

.card-icon svg {
  width: 100%;
  height: 100%;
}

.problem-card h3 {
  color: #ffffff;
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.problem-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 300;
  flex-grow: 1;
}

.problem-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.5);
}

.problem-card:hover .card-icon {
  transform: scale(1.05);
  opacity: 1;
}

/* Ajuste responsive */
@media (max-width: 768px) {
  .problems-section {
    padding: 4rem 1.5rem 3rem;
  }

  .problems-title {
    font-size: 2rem;
    margin-bottom: 3rem;
  }

  .problems-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .problem-card {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .problems-section {
    padding: 2rem 1rem 2rem;
  }

  .problems-title {
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }

  .problems-grid {
    gap: 1rem;
  }

  .problem-card {
    padding: 1.25rem;
    min-height: auto;
  }

  .problem-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }

  .problem-card p {
    font-size: 0.9rem;
    margin-bottom: 0;
  }
} 
.solutions-section {
  position: relative;
  padding: 2rem 2rem 12rem;
  background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -4rem;
}

.solutions-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
}

.animate-lines .solutions-lines {
  opacity: 0.15;
  transition: opacity 0.5s ease;
}

.solutions-line {
  position: absolute;
  width: 120%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(202, 113, 82, 0.7), transparent);
  transform-origin: left;
  clip-path: inset(0 100% 0 0);
}

.animate-lines .solutions-line {
  animation: drawLine 1.5s ease forwards;
}

.animate-lines .solutions-line:nth-child(1) {
  top: -1px;
  left: -10%;
  transform: rotate(15deg);
  animation-delay: 0.2s;
}

.animate-lines .solutions-line:nth-child(2) {
  top: 10%;
  left: -20%;
  transform: rotate(-5deg);
  animation-delay: 0.6s;
}

.animate-lines .solutions-line:nth-child(3) {
  top: 30%;
  left: -15%;
  transform: rotate(10deg);
  animation-delay: 1s;
}

.animate-lines .solutions-line:nth-child(4) {
  top: 60%;
  left: -5%;
  transform: rotate(-8deg);
  animation-delay: 1.4s;
}

@keyframes drawLine {
  0% {
    clip-path: inset(0 100% 0 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}

.solutions-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.solutions-heading {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 2rem;
  color: #ffffff;
  font-weight: 600;
}

.solutions-intro {
  text-align: center;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto 4rem;
  line-height: 1.6;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  padding: 2rem;
}

.solution-card {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
  padding: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.solution-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.solution-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 2rem;
  color: #CA7152;
  opacity: 0.9;
  transition: transform 0.3s ease;
}

.solution-card h3 {
  font-size: 1.8rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.solution-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features-list li {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
}

.features-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #CA7152;
}

.solution-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.05),
    transparent
  );
  transition: 0.5s;
}

.solution-card:hover {
  transform: translateY(-5px);
  border-color: rgba(202, 113, 82, 0.2);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.solution-card:hover .solution-shine {
  left: 100%;
}

.solution-card:hover .solution-icon {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .solutions-section {
    padding: 2rem 1.5rem 10rem;
    min-height: auto;
    margin-top: -2rem;
  }

  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1rem;
  }

  .solutions-heading {
    font-size: 2.5rem;
  }

  .solution-card {
    padding: 2rem;
  }
}

@media (max-width: 480px) {
  .solutions-section {
    padding: 1rem 1rem 8rem;
    margin-top: -1rem;
  }

  .solutions-heading {
    font-size: 1.75rem;
    margin-bottom: 1rem;
  }

  .solutions-intro {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .solutions-grid {
    gap: 1rem;
    padding: 0;
  }

  .solution-card {
    padding: 1.25rem;
  }

  .solution-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 1rem;
  }

  .solution-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
  }

  .solution-description {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }

  .features-list li {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
  }
} 
/* Contenedor principal */
.portfolio-works {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 6rem 0;
  overflow: hidden;
}

.portfolio-works::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url(/static/media/fondo2.9befee03e1ec7076a938.webp);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: -1;
}

.portfolio-works::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  z-index: -1;
}

@media (max-width: 767px) {
  .portfolio-works {
    padding: 4rem 0;
  }

  .portfolio-works::before {
    background-image: url(/static/media/Fondomobile.7a9e59bd649fcbd393a8.webp);
    background-attachment: scroll;
  }
}

/* Contenedor del contenido */
.portfolio-works__container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Encabezado */
.portfolio-works__heading {
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.portfolio-works__subheading {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
  line-height: 1.6;
}

/* Grid de proyectos */
.portfolio-works__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

/* Tarjeta de proyecto */
.portfolio-project {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.portfolio-project:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Carrusel */
.portfolio-project__carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.portfolio-project__image-container {
  width: 100%;
  height: 100%;
}

.portfolio-project__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.portfolio-project:hover .portfolio-project__image {
  transform: scale(1.05);
}

/* Botones del carrusel */
.portfolio-project__nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.7);
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: #ffffff;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
}

.portfolio-project__nav-btn:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: translateY(-50%) scale(1.1);
}

.portfolio-project__nav-btn--prev {
  left: 1.5rem;
}

.portfolio-project__nav-btn--next {
  right: 1.5rem;
}

/* Indicadores del carrusel */
.portfolio-project__indicators {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.8rem;
  z-index: 2;
}

.portfolio-project__indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s ease;
}

.portfolio-project__indicator:hover {
  background: rgba(255, 255, 255, 0.6);
}

.portfolio-project__indicator--active {
  background: #ffffff;
  transform: scale(1.2);
}

/* Información del proyecto */
.portfolio-project__info {
  padding: 2.5rem;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.portfolio-project__title {
  font-size: 2rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  padding-bottom: 1rem;
  position: relative;
}

.portfolio-project__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: #ff6b00;
  border-radius: 2px;
}

.portfolio-project__description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin: 0;
}

.portfolio-project__link {
  align-self: flex-start;
  padding: 0.8rem 2rem;
  background: #ff6b00;
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

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

/* Media Queries */
@media (min-width: 768px) and (max-width: 1200px) {
  .portfolio-works__container {
    padding: 0 3rem;
  }

  .portfolio-works__heading {
    font-size: 3rem;
  }

  .portfolio-project__info {
    padding: 2rem;
  }

  .portfolio-project__title {
    font-size: 1.8rem;
  }

  .portfolio-project__description {
    font-size: 1.05rem;
  }
}

@media (max-width: 767px) {
  .portfolio-works__container {
    padding: 0 1.5rem;
  }

  .portfolio-works__heading {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }

  .portfolio-works__subheading {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    padding: 0 1rem;
  }

  .portfolio-works__grid {
    gap: 3rem;
  }

  .portfolio-project {
    border-radius: 15px;
  }

  .portfolio-project__info {
    padding: 1.8rem;
    gap: 1.2rem;
  }

  .portfolio-project__title {
    font-size: 1.6rem;
    padding-bottom: 0.8rem;
  }

  .portfolio-project__description {
    font-size: 1rem;
    line-height: 1.5;
  }

  .portfolio-project__link {
    padding: 0.7rem 1.8rem;
    font-size: 1rem;
  }

  .portfolio-project__nav-btn {
    width: 35px;
    height: 35px;
    font-size: 1.5rem;
  }

  .portfolio-project__nav-btn--prev {
    left: 1rem;
  }

  .portfolio-project__nav-btn--next {
    right: 1rem;
  }
}

@media (max-width: 480px) {
  .portfolio-works__heading {
    font-size: 2rem;
  }

  .portfolio-works__subheading {
    font-size: 1rem;
    margin-bottom: 2.5rem;
  }

  .portfolio-works__grid {
    gap: 2.5rem;
  }

  .portfolio-project__info {
    padding: 1.5rem;
    gap: 1rem;
  }

  .portfolio-project__title {
    font-size: 1.4rem;
  }

  .portfolio-project__description {
    font-size: 0.95rem;
  }

  .portfolio-project__link {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }

  .portfolio-project__nav-btn {
    width: 30px;
    height: 30px;
    font-size: 1.2rem;
  }
}

.works-section {
  padding: 4rem 0;
  background: #000000;
  min-height: auto;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.works-container {
  position: relative;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
}

.works-heading {
  text-align: center;
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 3rem;
  letter-spacing: 1px;
}

.works-carousel {
  display: flex;
  gap: 4rem;
  padding: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
  cursor: grab;
  width: 100%;
  justify-content: flex-start;
  margin: 0 auto;
  max-width: none;
  position: relative;
  padding-left: max(2rem, calc((100% - (150px * 6 + 4rem * 5)) / 2));
  padding-right: max(2rem, calc((100% - (150px * 6 + 4rem * 5)) / 2));
}

/* Efecto de desvanecimiento en los bordes */
.works-container::before,
.works-container::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 2;
  pointer-events: none;
}

.works-container::before {
  left: 0;
  background: linear-gradient(to right, 
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.8) 40%,
    rgba(0, 0, 0, 0) 100%
  );
}

.works-container::after {
  right: 0;
  background: linear-gradient(to left, 
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.8) 40%,
    rgba(0, 0, 0, 0) 100%
  );
}

.works-carousel::-webkit-scrollbar {
  display: none;
}

.project-logo-container {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  transition: transform 0.3s ease;
  width: 150px;
  min-width: 150px;
  max-width: 150px;
}

.project-logo-container:hover {
  transform: scale(1.05);
}

.project-logo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.project-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.project-logo-container:hover .project-logo {
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.project-title {
  color: #ffffff;
  font-size: 1rem;
  text-align: center;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  max-width: 180px;
  margin: 0;
}

.project-logo-container:hover .project-title {
  opacity: 1;
}

/* Modal Styles */
.project-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999999;
  padding: 2rem;
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.project-modal {
  background: rgba(0, 0, 0, 0.75);
  border-radius: 20px;
  width: 100%;
  max-width: 900px;
  position: relative;
  overflow: hidden;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  z-index: 1000000;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 2rem;
  cursor: pointer;
  z-index: 1000001;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: scale(1.1);
}

.modal-carousel {
  width: 100%;
  height: 400px;
  position: relative;
  overflow: hidden;
}

.modal-carousel img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.modal-indicators {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
}

.modal-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-indicator.active {
  background: #ffffff;
  transform: scale(1.2);
}

.modal-content {
  padding: 2rem;
  background: rgba(255, 107, 0, 0.08);
  border-top: 1px solid rgba(255, 107, 0, 0.3);
}

.modal-content h3 {
  color: rgba(255, 255, 255, 0.95);
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 500;
}

.modal-content p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.modal-link {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: rgba(255, 107, 0, 0.1);
  color: rgba(255, 255, 255, 0.95);
  text-decoration: none;
  border-radius: 30px;
  transition: all 0.3s ease;
  font-weight: 500;
  border: 1px solid rgba(255, 107, 0, 0.3);
}

.modal-link:hover {
  background: rgba(255, 107, 0, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 0, 0.2);
  border-color: rgba(255, 107, 0, 0.4);
}

.modal-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 1000001;
}

.modal-nav-btn:hover {
  background: rgba(0, 0, 0, 0.8);
}

.modal-nav-btn.prev {
  left: 10px;
}

.modal-nav-btn.next {
  right: 10px;
}

@media (max-width: 1200px) {
  .works-carousel {
    padding-left: 2rem;
    padding-right: 2rem;
    gap: 3rem;
  }

  .project-logo-container {
    width: 130px;
    min-width: 130px;
    max-width: 130px;
  }

  .project-logo {
    width: 130px;
    height: 130px;
  }
}

@media (max-width: 768px) {
  .works-section {
    padding: 3rem 0;
  }

  .works-heading {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .works-carousel {
    gap: 2rem;
    padding: 1rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .project-logo-container {
    width: 120px;
    min-width: 120px;
    max-width: 120px;
    scroll-snap-align: center;
  }

  .project-logo {
    width: 120px;
    height: 120px;
  }

  /* Desactivar efectos de desvanecimiento en móviles */
  .works-container::before,
  .works-container::after {
    display: none;
  }

  .project-modal {
    width: 95%;
    margin: 0.5rem;
  }

  .modal-carousel {
    height: 300px;
  }

  .modal-content {
    padding: 1.5rem;
  }

  .modal-content h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .works-section {
    padding: 0;
    margin-top: -2rem;
  }

  .works-container {
    padding: 0;
  }

  .works-heading {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    transform: translateY(-1rem);
  }

  .works-carousel {
    transform: translateY(-1rem);
  }
} 
:root {
  --color-accent: #333857;
  --color-accent-light: rgba(51, 56, 87, 0.1);
  --color-bg: #ffffff;
  --color-secondary-1: #666666;
  --color-secondary-2: #999999;
  --container-padding: 2rem;
  --font-primary: 'Space Grotesk', sans-serif;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  overflow-y: scroll;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  font-family: var(--font-primary);
  line-height: 1.6;
  color: var(--color-secondary-1);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
  font-weight: 500;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  background: transparent;
}

.hero-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-image: url(/static/media/fondo.894c2050fa57c9ca5334.webp);
  background-size: cover;
  background-position: center;
  z-index: 0;
  transform: none !important;
}

/* Asegurar que las secciones posteriores tengan z-index mayor */
section:not(.hero) {
  position: relative;
  z-index: 2;
  background-color: #000;
  scroll-margin-top: 80px;
  transition: transform 0.3s ease-out;
}

/* Restaurar el fondo original de las secciones */
.services {
  display: none;
}

.about {
  display: none;
}

.projects {
  background-color: #000000;
}

.contact {
  background-color: #000000;
}

/* Media query específico para el fondo móvil */
@media screen and (max-width: 968px) {
  .hero-logo {
    display: flex !important;
    margin-bottom: 2rem;
  }

  .hero-icon {
    width: 300px !important;
  }

  .hero-background {
    background-image: url(/static/media/Fondomobile.7a9e59bd649fcbd393a8.webp) !important;
    opacity: 1;
  }

  .hero {
    position: relative;
  }

  .hero-content {
    position: absolute !important;
    bottom: -180px !important;
    left: 0;
    right: 0;
    display: flex !important;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
  }

  .hero-cta {
    margin: 0;
    display: block !important;
  }

  .button {
    padding: 12px;
  }

  .button_lg {
    padding: 12px 40px;
    font-size: 16px;
    min-width: 160px;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0;
}

.hero-icon {
  width: 600px;
  height: auto;
  margin-bottom: 1rem;
}

.hero-glorify {
  width: 200px;
  height: auto;
}

.hero-tagline {
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-bg);
  letter-spacing: 10px;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
  opacity: 0.85;
  font-family: 'Montserrat', sans-serif;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--color-bg);
}

.hero-text {
  margin: 2rem 0 2rem;
  max-width: 600px;
  color: var(--color-bg);
  opacity: 0.95;
}

.hero-cta {
  margin-top: 1rem;
}

.button {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border: none;
  background: none;
  color: var(--color-bg);
  cursor: pointer;
  position: relative;
  padding: 8px;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 14px;
  transition: all .15s ease;
  text-decoration: none;
  display: inline-block;
}

.button::before,
.button::after {
  display: none;
}

.button:active,
.button:focus {
  outline: none;
}

.button:active::before,
.button:active::after {
  right: 3px;
  left: 3px;
}

.button:active::before {
  top: 3px;
}

.button:active::after {
  bottom: 3px;
}

.button_lg {
  position: relative;
  display: block;
  padding: 10px 20px;
  color: var(--color-accent);
  background-color: var(--color-bg);
  overflow: hidden;
  box-shadow: inset 0px 0px 0px 1px transparent;
  border: 1px solid var(--color-accent);
  transition: all 0.3s ease;
}

.button_lg::before,
.button_lg::after {
  display: none;
}

.button_sl {
  display: block;
  position: absolute;
  top: 0;
  bottom: -1px;
  left: -8px;
  width: 0;
  background-color: var(--color-accent);
  transform: skew(-15deg);
  transition: all .2s ease;
}

.button_text {
  position: relative;
  color: var(--color-accent);
  transition: all .2s ease;
}

.button:hover .button_text {
  color: var(--color-bg);
  z-index: 1;
}

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

.button:hover .button_sl {
  width: calc(100% + 15px);
}

.button:hover .button_lg::after {
  background-color: var(--color-bg);
}

.container {
  position: relative;
  z-index: 2;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--color-accent);
}

.stat-label {
  font-size: 1rem;
  color: rgba(26, 26, 26, 0.7);
}

section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 0;
  position: relative;
}

/* Alternancia sutil de secciones */
.services,
.contact {
  background-color: var(--color-light-gray);
}

h2 {
  margin-bottom: 4rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.8s ease forwards;
}

/* Ajusta el padding-top para compensar la navbar fija */
section:not(.hero) {
  padding-top: 8rem;
}

.services {
  padding: 100px 0;
  background-color: #fff;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.services h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #000000;
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: 2px;
}

.services-grid {
  display: none;
}

.service-card {
  display: none;
}

.service-icon {
  display: none;
}

.service-features {
  display: none;
}

.services-divider {
  display: none;
}

.divider-text {
  display: none;
}

.services h2::after {
  display: none;
}

.card {
  width: 100%;
  min-height: 550px;
  background: var(--color-bg);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  overflow: visible;
  position: relative;
  box-shadow: 0px 0px 3px 1px var(--color-accent-light);
  cursor: pointer;
  transition: transform 0.3s ease;
  padding: 2.5rem;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(51, 56, 87, 0.1);
}

.card .content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card-title {
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--color-accent);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.5rem;
}

.card-title .emoji {
  font-size: 2.2rem;
}

.price {
  font-size: 2rem;
  font-weight: 400;
  color: var(--color-accent);
  margin: 0;
  line-height: 1.2;
}

.plan-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #666666;
  margin-bottom: 2rem;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
}

.features-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 1rem;
  color: #666666;
  line-height: 1.4;
  font-size: 0.95rem;
}

.features-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: bold;
}

.custom-uses {
  background: rgba(51, 56, 87, 0.05);
  padding: 1.5rem;
  border-radius: 0;
  margin-top: 1.5rem;
}

.custom-uses h4 {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-accent);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.custom-uses ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.custom-uses li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 0.8rem;
  color: #666666;
  line-height: 1.5;
  font-size: 0.95rem;
}

.custom-uses li::before {
  content: "👉";
  position: absolute;
  left: 0;
  font-size: 0.9rem;
}

.note {
  font-size: 0.9rem;
  color: #666666;
  font-style: italic;
  margin-top: 1.5rem;
  padding: 1rem;
  border-left: 3px solid var(--color-accent);
  background: rgba(51, 56, 87, 0.03);
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  background: var(--color-accent);
  color: white;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  transition: all 0.3s ease;
  margin-top: auto;
  text-align: center;
  justify-content: center;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(51, 56, 87, 0.2);
}

.recommended {
  border: 2px solid var(--color-accent);
}

.recommended-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-accent);
  color: white;
  padding: 8px 20px;
  border-radius: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(51, 56, 87, 0.2);
  z-index: 2;
}

.recommended .card-header {
  margin-top: 0;
}

.recommended .content {
  padding-top: 40px;
}

.star-icon {
  width: 18px;
  height: 18px;
  fill: white;
}

.recommended-badge span {
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.recommended:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(51, 56, 87, 0.15);
}

.card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 45px;
}

.card-header h3 {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-accent);
  margin: 0;
  font-family: var(--font-primary);
  line-height: 1.3;
}

.plan-icon {
  width: 24px;
  height: 24px;
  color: var(--color-accent);
  flex-shrink: 0;
}

.price-container {
  text-align: left;
  margin: 35px 0 15px;
  position: relative;
}

.original-price {
  font-family: var(--font-primary);
  color: #666;
  text-decoration: line-through;
  font-size: 1.2rem;
  margin: 0;
  font-weight: 400;
  line-height: 1;
}

.discount-badge {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--color-accent);
  color: white;
  padding: 4px 8px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.perfect-for {
  font-size: 0.9rem;
  color: #666666;
  margin: 20px 0;
  padding: 15px;
  background: rgba(51, 56, 87, 0.05);
  border-radius: 5px;
}

.examples-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 0 20px;
}

.examples-list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  color: #666666;
  font-size: 0.9rem;
}

.examples-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-accent);
}

@media (max-width: 850px) {
  .services-grid {
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }

  .services-divider {
    width: 100%;
    height: 3px;
    margin: 40px 0;
  }

  .divider-text {
    font-size: 1rem;
    padding: 0 15px;
  }

  .card {
    width: 100%;
    max-width: 320px;
  }

  .card .content {
    width: 100%;
    max-width: 316px;
  }
}

.about {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 150px 0;
  position: relative;
}

/* Agregar un patrón sutil */
.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(#333857 0.5px, transparent 0.5px);
  background-size: 50px 50px;
  opacity: 0.03;
}

.about-content {
  max-width: 1200px;
  margin: 0 auto;
}

.about-main {
  text-align: center;
  margin-bottom: 100px;
}

.about-text {
  max-width: 800px;
  margin: 0 auto;
}

.about h2 {
  text-align: center;
  margin-bottom: 60px;
  color: #000000;
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: 2px;
  position: relative;
}

.about h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: #000000;
  margin: 20px auto 0;
  transform: scaleX(0);
  transition: transform 0.3s ease;
  animation: expandLine 0.8s ease forwards 0.5s;
}

@keyframes expandLine {
  to {
    transform: scaleX(1);
  }
}

.about-text h3 {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 30px;
  color: #000000;
  background: linear-gradient(to right, #000000, #333333);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lead-text {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--color-secondary-1);
  margin-bottom: 60px;
}

.values-grid {
  display: none;
}

.value-card {
  display: none;
}

.expertise-section {
  text-align: center;
  padding: 80px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.expertise-content {
  max-width: 900px;
  margin: 0 auto;
}

.expertise-content h3 {
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 40px;
  color: #000000;
}

.expertise-list {
  display: none;
}

.team-grid {
  display: none;
}

.team-member {
  text-align: center;
  transition: transform 0.3s ease;
}

.team-member:hover {
  transform: translateY(-10px);
}

.member-image {
  width: 200px;
  height: 200px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.member-info h4 {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 5px;
  color: #000000;
}

.member-info span {
  display: block;
  font-size: 1rem;
  color: #666666;
  margin-bottom: 15px;
}

.member-info p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #666666;
}

.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.projects {
  background-color: #fff;
  padding: 150px 0;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.projects .container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.projects h2 {
  text-align: center;
  margin-bottom: 80px;
  color: #000000;
  font-size: 3rem;
  font-weight: 300;
  position: relative;
  display: inline-block;
}

.projects h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.project-card {
  background: #fff;
  border-radius: 12px;
  padding: 15px 15px 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 500px;
  margin: 0 auto;
  gap: 10px;
}

.project-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

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

.view-more {
  color: white;
  font-size: 1.2rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 10px 20px;
  border: 2px solid white;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.project-card:hover .view-more {
  background: white;
  color: black;
}

/* Estilos del Modal */
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}

.video-modal-content {
  position: relative;
  width: 100%;
  max-width: 1000px;
  max-height: 90vh;
}

.close-modal {
  position: absolute;
  top: -50px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 3.5rem;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.close-modal:hover {
  transform: scale(1.1);
}

.modal-video {
  width: 100%;
  height: auto;
  max-height: 90vh;
  border-radius: 8px;
}

@media (max-width: 968px) {
  .project-overlay {
    opacity: 1;
  }
  
  .view-more {
    font-size: 1rem;
    padding: 8px 16px;
  }

  .close-modal {
    font-size: 3rem;
    top: -45px;
    width: 50px;
    height: 50px;
  }
}

.contact {
  padding: 150px 0;
  background-color: #fff;
}

.contact h2 {
  text-align: center;
  margin-bottom: 80px;
  color: #000000;
  font-size: 3rem;
  font-weight: 300;
}

.contact-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 100px;
  padding: 0 20px;
}

.contact-info {
  padding-right: 50px;
}

.contact-info h3 {
  font-size: 2.5rem;
  font-weight: 300;
  color: #000000;
  margin-bottom: 30px;
}

.contact-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #666666;
  margin-bottom: 60px;
}

.contact-details {
  margin-top: 60px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.contact-icon {
  width: 24px;
  height: 24px;
  fill: #000000;
  transition: all 0.3s ease;
}

.contact-item span {
  color: #666666;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.contact-link:hover {
  transform: translateX(5px);
}

.contact-link:hover .contact-icon {
  fill: var(--color-accent);
}

.contact-link:hover span {
  color: var(--color-accent);
}

.contact-form-wrapper {
  background: #fff;
  padding: 40px 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.form-group {
  position: relative;
  margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px 0;
  font-size: 16px;
  color: #000000;
  border: none;
  border-bottom: 1px solid var(--color-accent-light);
  outline: none;
  background: transparent;
  transition: border-color 0.3s ease;
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.form-group label {
  position: absolute;
  left: 0;
  top: 15px;
  color: #666666;
  pointer-events: none;
  transition: all 0.3s ease;
}

.form-group input:focus ~ label,
.form-group textarea:focus ~ label,
.form-group input:valid ~ label,
.form-group textarea:valid ~ label {
  top: -20px;
  font-size: 14px;
  color: #000000;
}

.form-group input:focus,
.form-group textarea:focus {
  border-bottom-color: #000000;
}

.character-count {
  position: absolute;
  bottom: -20px;
  right: 0;
  font-size: 0.8rem;
  color: #666666;
  font-family: var(--font-primary);
}

@media (max-width: 768px) {
  .character-count {
    font-size: 0.75rem;
    bottom: -18px;
  }
}

.contact-form .button {
  align-self: flex-start;
  margin-top: 20px;
}

@media (max-width: 968px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .contact-info {
    padding-right: 0;
  }
}

@media (max-width: 576px) {
  .contact {
    padding: 100px 0;
  }

  .contact-wrapper {
    padding: 0 15px;
  }
}

.button-reflect {
  position: relative;
  display: inline-block;
  padding: 15px 30px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 16px;
  overflow: hidden;
  transition: 0.5s;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.button-reflect:hover {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.button-reflect span {
  position: relative;
  z-index: 1;
}

.button-reflect::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: 0.5s;
}

.button-reflect:hover::before {
  left: 100%;
} 
:root {
  /* Colores */
  --color-bg: #ffffff;
  --color-text: #333857;
  --color-accent: #333857;
  --color-accent-light: rgba(51, 56, 87, 0.1);
  --color-secondary-1: #7a848b;
  --color-secondary-2: #d4dcdb;
  --color-gray: rgba(51, 56, 87, 0.1);
  --color-light-gray: #f5f5f5;
  
  /* Espaciado */
  --container-padding: clamp(1rem, 5vw, 10rem);
  
  /* Transiciones */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Space Grotesk', sans-serif;
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
}

.layout {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* Estilos de texto */
h1 {
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--color-text);
}

h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  color: var(--color-text);
}

p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(26, 26, 26, 0.8);
}

/* Animaciones globales */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 0.8s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.btn {
  background-color: #333857;
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: var(--transition);
}

.btn:hover {
  background-color: #3f4468;
  transform: translateY(-2px);
}

.text-accent {
  color: #333857;
}

/* Efecto de selección de texto */
::selection {
  background-color: rgba(51, 56, 87, 0.3);
  color: white;
}

.bg-accent {
  background-color: rgba(51, 56, 87, 0.1);
}

.border-accent {
  border-color: #333857;
}

/* Efecto de gradiente para fondos */
.gradient-bg {
  background: linear-gradient(
    135deg,
    rgba(51, 56, 87, 0.1) 0%,
    rgba(51, 56, 87, 0.05) 100%
  );
}


