body {
    margin: 0;
    background-color: #333;
    font-family: "Comfortaa", sans-serif;
}

.navbar-section {
    width: 100%;
    position: fixed; 
    top: 0;
    left: 0;
    z-index: 999;

    background-color: rgba(255, 255, 255, 0.1); 
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); 
    border-bottom: 1px solid rgba(255, 255, 255, 0.3); 
    
    color: #fff;
    font-family: "Comfortaa", sans-serif;
    transition: all 0.3s ease;
}

.logo-img {
    height: 60px !important;
    width: auto;
}


.navbar-div {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
}

.navbar-div a img {
    height: 45px;
    width: auto;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.navbar-div a img:hover {
    transform: scale(1.1);
}

.first-img-sm {
    margin-left: 1.5em;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s ease;
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: 10px;
}

.linkbar {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    transition: color 0.3s ease, transform 0.3s ease;
    margin: 0 0.5em;
}

.linkbar:hover {
    color: #1abc9c; 
    transform: scale(1.05);
}

.social-media-bar {
    display: inline-block;
    margin-left: 1em;
}

.img-social-media {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.img-social-media:hover {
    transform: scale(1.2);
}

.hero-section img {
    filter: blur(10px);
    width: 100%;
    height: 100vh;
    margin: 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
}

.hero-section {
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-hero {
    position: relative;
    z-index: 1;
    color: #fff;
    padding: 1em;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.info-hero a {
    display: inline-block; 
    padding: 0.2em 0.5em; 
    font-size: 1em;
    max-width: 1em; 
    margin: 0 auto;
    transition: all 0.3s ease;
}

.info-hero a:hover {
    transform: scale(1.05);
    background-color: rgba(255, 255, 255, 0.2);
}
.info-hero a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.acerca {
    padding: 50px 20px;
    background-color: #222;
    color: #fff;
}

.ConoceMas {
    color: #1abc9c;
    text-decoration: none;
    padding: 0;
    margin: 0;
    position: relative;
    top: 2px;
    display: none;
}



.info-hero, .acerca {
    font-size: 1.2rem;
}

.acerca {
    display: flex;
    justify-content: space-around;
}

.div-info-main {
    display: inline-block;
    width: 50vw;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2em 3em;
    color: #fff;
    text-decoration: none;
    text-align: justify;
    border-radius: 20px;
    background: linear-gradient(170deg, rgba(36, 35, 35, 0.623) 0%, rgb(31, 31, 31) 100%); 
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.712);
    border: 0.5px solid rgba(126, 126, 126, 0.63); 
    backdrop-filter: blur(8px); 
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    flex-direction: column
}

.div-info-main:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.01);
}

.first-img {

    width: 30vw;;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 40px;
    background-color: rgba(255, 255, 255, 0.1); 
    backdrop-filter: blur(8px); 
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.712);
    border: 0.5px solid rgba(126, 126, 126, 0.63);  
    transition: all 0.3s ease;
}



.first-img:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.01);
}





.prev-portfolio {
    padding: 1rem;
    overflow: hidden;
    background-color: #222;
}

.prev-portfolio h2 {
    font-family: "Comfortaa", sans-serif;
    color: #fff;
    text-align: center;
    margin: 2em 0;
}

.prev-portfolio p {
    font-family: "Comfortaa", sans-serif;
    color: white;
    text-align: center;
}

.prev-pic {
    height: 60vh;
    display: flex;
    gap: 1em;
}


.prev-pic img {
    flex: 1 1 10em;  
    min-width: 180px; 
    height: 100%;
    object-fit: cover;
    border-radius: 30px;
    cursor: pointer;
    transition: 
        flex-grow 0.6s ease,
        filter 0.6s ease,
        transform 0.6s ease,
        box-shadow 0.6s ease;
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}


.prev-pic img:hover {
    flex-grow: 4;
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0,0,0,0.45);
}


.prev-pic:hover img:not(:hover) {
    filter: blur(4px) brightness(0.75);
    transform: scale(0.95);
}


.prev-portfolio a {
    display: inline-block; 
    padding: 0em 0; 
    font-size: 1em;
    max-width: 1em; 
    margin: 0 auto;
    transition: all 0.3s ease;
}






.btn-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  margin: 3em;
}

.btn {
  --border-radius: 24px;
  --padding: 4px;
  --transition: 0.4s;
  --button-color: #222; 
  --highlight-color-hue: 210deg;
  --base-font-size: 1em;

  user-select: none;
  display: flex;
  padding: 1.5em 3em;
  justify-content: center;
  align-items: center;
  font-family: "Comfortaa", sans-serif;
  font-size: var(--base-font-size);
  font-weight: 400;
  min-width: 280px;
  min-height: 60px;

  background-color: var(--button-color);

  box-shadow:
    inset 0px 1px 1px rgba(255, 255, 255, 0.2),
    inset 0px 2px 2px rgba(255, 255, 255, 0.15),
    inset 0px 4px 4px rgba(255, 255, 255, 0.1),
    inset 0px 8px 8px rgba(255, 255, 255, 0.05),
    inset 0px 16px 16px rgba(255, 255, 255, 0.05),
    0px -1px 1px rgba(0, 0, 0, 0.02),
    0px -2px 2px rgba(0, 0, 0, 0.03),
    0px -4px 4px rgba(0, 0, 0, 0.05),
    0px -8px 8px rgba(0, 0, 0, 0.06),
    0px -16px 16px rgba(0, 0, 0, 0.08);

  border: solid 1px #fff2;
  border-radius: var(--border-radius);
  cursor: pointer;

  transition:
    box-shadow var(--transition),
    border var(--transition),
    background-color var(--transition),
    transform 0.2s ease;
  position: relative;
}

.btn::before {
  content: "";
  position: absolute;
  top: calc(0px - var(--padding));
  left: calc(0px - var(--padding));
  width: calc(100% + var(--padding) * 2);
  height: calc(100% + var(--padding) * 2);
  border-radius: calc(var(--border-radius) + var(--padding));
  pointer-events: none;
  background-image: linear-gradient(0deg, #0004, #000a);
  z-index: -1;
  transition:
    box-shadow var(--transition),
    filter var(--transition);
  box-shadow:
    0 -8px 8px -6px #0000 inset,
    0 -16px 16px -8px #00000000 inset,
    1px 1px 1px #fff2,
    2px 2px 2px #fff1,
    -1px -1px 1px #0002,
    -2px -2px 2px #0001;
}

.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  pointer-events: none;
  background-image: linear-gradient(
    0deg,
    #fff,
    hsl(var(--highlight-color-hue), 100%, 70%),
    hsla(var(--highlight-color-hue), 100%, 70%, 50%),
    8%,
    transparent
  );
  background-position: 0 0;
  opacity: 0;
  transition:
    opacity var(--transition),
    filter var(--transition);
}

.btn:hover {
  border: solid 1px hsla(var(--highlight-color-hue), 100%, 80%, 40%);
  transform: translateY(-2px); 
}

.btn:hover::before {
  box-shadow:
    0 -8px 8px -6px hsla(var(--highlight-color-hue), 100%, 70%, 10%) inset,
    0 -16px 16px -8px hsla(var(--highlight-color-hue), 100%, 70%, 15%) inset,
    1px 1px 1px #fff2,
    2px 2px 2px #fff1,
    -1px -1px 1px #0002,
    -2px -2px 2px #0001;
}

.btn:hover::after {
  opacity: 0.3; 
  mask-image: linear-gradient(0deg, #fff, transparent);
}

.btn:hover .btn-letter {
  color: #fffc;
  animation-duration: 1.5s;
}

.btn:focus {
  outline: none;
}

.btn:focus .txt-1 {
  animation: opacity-anim 0.3s ease-in-out forwards;
  animation-delay: 1s;
}

.btn:focus .txt-2 {
  animation: opacity-anim 0.3s ease-in-out reverse forwards;
  animation-delay: 1s;
}

.btn:focus .btn-letter {
  animation:
    focused-letter-anim 1s ease-in-out forwards,
    letter-anim 1.2s ease-in-out infinite;
  animation-delay: 0s, 1s;
}

.btn:focus::before {
  box-shadow:
    0 -12px 16px -8px hsla(var(--highlight-color-hue), 100%, 70%, 30%) inset,
    0 -24px 24px -12px hsla(var(--highlight-color-hue), 100%, 70%, 15%) inset,
    0 0 0 1px hsla(var(--highlight-color-hue), 100%, 70%, 20%),
    0 0 20px hsla(var(--highlight-color-hue), 100%, 70%, 10%);
}

.btn:focus::after {
  opacity: 0.6;
  mask-image: linear-gradient(0deg, #fff, transparent);
  filter: brightness(120%) saturate(120%);
}

.btn:active {
  border: solid 1px hsla(var(--highlight-color-hue), 100%, 80%, 70%);
  background-color: hsla(var(--highlight-color-hue), 50%, 20%, 0.5);
  transform: translateY(1px) scale(0.98);
  transition-duration: 0.1s;
}

.btn:active::before {
  box-shadow:
    0 -4px 8px -4px hsla(var(--highlight-color-hue), 100%, 70%, 60%) inset,
    0 -8px 16px -8px hsla(var(--highlight-color-hue), 100%, 70%, 40%) inset,
    0 0 0 2px hsla(var(--highlight-color-hue), 100%, 70%, 30%),
    0 0 15px hsla(var(--highlight-color-hue), 100%, 70%, 20%);
}

.btn:active::after {
  opacity: 0.8;
  mask-image: linear-gradient(0deg, #fff, transparent);
  filter: brightness(150%) saturate(150%);
  animation: pulse-active 0.3s ease-out;
}

@keyframes pulse-active {
  0% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.02);
  }
  100% {
    opacity: 0.8;
    transform: scale(1);
  }
}

.btn:active .btn-letter {
  text-shadow: 
    0 0 2px hsla(var(--highlight-color-hue), 100%, 90%, 90%),
    0 0 4px hsla(var(--highlight-color-hue), 100%, 80%, 60%);
  animation: none;
  transform: scale(0.95);
  transition: all 0.1s ease;
}

.txt-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.txt-1,
.txt-2 {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.txt-1 {
  animation: appear-anim 1s ease-in-out forwards;
}

.txt-2 {
  opacity: 0;
}

.btn-letter {
  position: relative;
  display: inline-block;
  color: #fff5;
  animation: letter-anim 2s ease-in-out infinite;
  transition:
    color var(--transition),
    text-shadow var(--transition),
    opacity var(--transition),
    transform 0.3s ease;
}

@keyframes letter-anim {
  0%, 100% {
    transform: translateY(0);
    text-shadow: none;
    color: #fff5;
  }
  50% {
    transform: translateY(-1px);
    text-shadow: 
      0 0 3px #fff8,
      0 2px 4px rgba(255, 255, 255, 0.2);
    color: #fff;
  }
}

@keyframes focused-letter-anim {
  0%,
  100% {
    filter: blur(0px);
    transform: scale(1);
  }
  50% {
    transform: scale(1.8);
    filter: blur(6px) brightness(150%)
      drop-shadow(-24px 8px 8px hsla(var(--highlight-color-hue), 100%, 70%, 0.5));
  }
}

.btn-letter.space {
  width: 0.3em;
}

@keyframes appear-anim {
  0% {
    opacity: 0;
    transform: translateY(5px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes opacity-anim {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-3px);
  }
}

.btn-letter:nth-child(1),
.btn:focus .btn-letter:nth-child(1) {
  animation-delay: 0s;
}
.btn-letter:nth-child(2),
.btn:focus .btn-letter:nth-child(2) {
  animation-delay: 0.06s;
}
.btn-letter:nth-child(3),
.btn:focus .btn-letter:nth-child(3) {
  animation-delay: 0.12s;
}
.btn-letter:nth-child(4),
.btn:focus .btn-letter:nth-child(4) {
  animation-delay: 0.18s;
}
.btn-letter:nth-child(5),
.btn:focus .btn-letter:nth-child(5) {
  animation-delay: 0.24s;
}
.btn-letter:nth-child(6),
.btn:focus .btn-letter:nth-child(6) {
  animation-delay: 0.30s;
}
.btn-letter:nth-child(7),
.btn:focus .btn-letter:nth-child(7) {
  animation-delay: 0.36s;
}
.btn-letter:nth-child(8),
.btn:focus .btn-letter:nth-child(8) {
  animation-delay: 0.42s;
}
.btn-letter:nth-child(9),
.btn:focus .btn-letter:nth-child(9) {
  animation-delay: 0.48s;
}
.btn-letter:nth-child(10),
.btn:focus .btn-letter:nth-child(10) {
  animation-delay: 0.54s;
}

@media (max-width: 768px) {
  .btn {
    padding: 1.2em 2.4em;
    min-width: 240px;
    min-height: 50px;
    font-size: 0.9em;
  }
  
  .btn::before {
    --padding: 3px;
  }
}







.contact-section {
    padding-top: 3em;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
    width: 100%;
    height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
    background-color: #111;

}

.contact-section img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;
    object-fit: cover;

    filter: blur(12px) brightness(0.55);
    transform: scale(1.1);
    z-index: 0;
}

.contact-form {
    width: min(90%, 380px);
    max-width: 420px;

    display: flex;
    flex-direction: column;
    gap: 22px;

    padding: 2.5em 2em;
    border-radius: 30px;

    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);

    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;

    box-shadow: 
        0 20px 50px rgba(0, 0, 0, 0.6),
        inset 0 1px 1px rgba(255, 255, 255, 0.15);

    transition: all 0.4s ease;
    font-family: "Comfortaa", sans-serif;
}

.contact-form:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-5px);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.7),
        0 0 25px rgba(26, 188, 156, 0.1),
        inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

.contact-form h2 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-form h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #1abc9c, transparent);
    margin: 10px auto;
    border-radius: 2px;
}

.contact-form .form-group {
    position: relative;
}

.contact-form input,
.contact-form textarea {
    width: 90%;
    padding: 16px 20px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    font-family: "Comfortaa", sans-serif;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 
        inset 0 2px 4px rgba(0, 0, 0, 0.2),
        0 1px 2px rgba(255, 255, 255, 0.1);
}

.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.contact-form input:focus,
.contact-form textarea:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(26, 188, 156, 0.6);
    box-shadow: 
        0 0 0 2px rgba(26, 188, 156, 0.2),
        inset 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-form button {
    margin-top: 0.5em;
    padding: 16px 32px;
    font-family: "Comfortaa", sans-serif;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    cursor: pointer;
    background: linear-gradient(
        135deg,
        rgba(26, 188, 156, 0.3),
        rgba(255, 255, 255, 0.15)
    );
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #fff;
    font-weight: bold;
    letter-spacing: 1px;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 10px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

.contact-form button::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: left 0.7s ease;
}

.contact-form button:hover {
    background: linear-gradient(
        135deg,
        rgba(26, 188, 156, 0.4),
        rgba(255, 255, 255, 0.2)
    );
    transform: translateY(-3px);
    box-shadow: 
        0 15px 25px rgba(0, 0, 0, 0.4),
        0 0 15px rgba(26, 188, 156, 0.3),
        inset 0 1px 1px rgba(255, 255, 255, 0.3);
    border-color: rgba(26, 188, 156, 0.6);
}

.contact-form button:hover::before {
    left: 100%;
}

.contact-form button:active {
    transform: translateY(1px);
    transition-duration: 0.1s;
}

.contact-form .form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    opacity: 0.9;
    letter-spacing: 0.5px;
}

























.about-section {
    padding: 6em 2em;

}

.about-story {
    text-align: justify;
    background-color: #1a1a1a;
    color: white;
}

.about-philosophy {
    background-color: #222;
}

.about-gear {
    background-color: #1a1a1a;
}

.about-cta {
    padding: 6em 4vw;
    background-color: #222;
    text-align: center;
}

.container {
    width: 100%;
    margin: 0 auto;
}


.about-content {
    padding: 2em 7em;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3em;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1em;
    text-align: left;
    color: #fff;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5em;
    opacity: 0.9;
}

.about-image img {
    width: 100%;
    border-radius: 25px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.02);
}

.about-stats {
    display: flex;
    gap: 1.5em;
}

.stat-item {
    text-align: center;

    background: rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    transition: all 0.3s ease;
    padding: 2em ;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.stat-item h3 {
    font-size: 3em;
    color: #ffffff;
    padding: 0;
    margin: 0;

}

.stat-item:hover h3 {
    color: #1abc9c;
}

.stat-item p {
    font-size: 1em;
    opacity: 0.9;
    margin-bottom: 0;
}

.about-philosophy h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2em;
    color: #fff;
}

.icon-filo {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.philosophy-grid {
    display: flex;
    gap: 2em;
    overflow-wrap: normal;
    justify-content: space-evenly;
}

.philosophy-card {
    max-width: 25vw;
    color: white;
    text-align: center;
    padding: 2.5em 2em;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.philosophy-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.philosophy-icon {
    width: 70px;
    height: 70px;

    object-fit: contain;
    margin: 0 auto 1.5em;
    background: rgba(26, 188, 156, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(26, 188, 156, 0.4);
    font-size: 1.8rem;
}

.philosophy-card h3 {
    margin-bottom: 0.5em;
    color: #fff;
    font-size: 1.3rem;
}


.about-gear h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2em;
    color: #fff;
}

.gear-grid {
    display: flex;
    justify-content: space-evenly;
    padding: 3em;
    gap: 3em;
    align-items: center;
    color: white;
}

.gear-list h3 {
    margin-bottom: 1.5em;
    color: #1abc9c;
    font-size: 2em;
}


.gear-item {
    margin-bottom: 1.5em;
    padding-bottom: 1.5em;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.gear-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.gear-item h4 {
    margin-bottom: 0.5em;
    color: #fff;
    font-size: 1.1rem;
}

.gear-item p {
    opacity: 0.8;
    font-size: 0.95rem;
}

.gear-image img {
    width: 60vh;
    height: 60vh;
    border-radius: 25px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.gear-image img:hover {
    transform: scale(1.02);
}

.about-cta .container {
    font-family: "Comfortaa", sans-serif;
    max-width: 40vw;
    color: white;
    font-size: 1.2em;
    text-align: center;

}

.about-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1em;
    color: #fff;
}









@media screen and (max-width: 900px) {

    
    
    
    body {
        overflow-x: hidden !important;
        width: 100%;
        max-width: 100vw;
    }

    


    .hero-section, .acerca, .prev-portfolio {
        max-width: 100vw;
        overflow-x: hidden;
    }



    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .logo-img {
        position: relative;
        z-index: 3000;
    }
    .navbar-links {
        position: fixed;
        top: 0;
        right: 0;

        width: 100%;
        height: 100vh;

        background: rgba(24, 24, 24, 0.918);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);


        flex-direction: column;
        align-items: center;
        justify-content: flex-start;

        padding: 7em 0;

        gap: 25px;

        transform: translateY(-20px);
        opacity: 0;
        pointer-events: none;

        transition: all 0.35s ease;

        overflow-y: auto;       
        -webkit-overflow-scrolling: touch;
    }

    .navbar-links.show {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .navbar-links a {
        font-size: 1.4rem;
        letter-spacing: 1px;
    }

    .social-media-bar {
        margin: 0;
    }


    .hero-section img {
        filter: blur(10px);
        width: 100%;
        height: 100%;
        margin: 0;
        position: fixed;
        top: 0;
        left: 0;
        z-index: -1;
        object-fit: cover;
    }


    .acerca {
        flex-wrap: wrap !important;
    }

    .ConoceMas {
        color: #1abc9c;
        text-decoration: none;
        padding: 1em 0;
        margin: 0;
        position: relative;
        display: block;
    }

    .div-info-main {
        padding: 1em;
        width: 90vw;
        font-size: 1em;
    }

    .div-info-main h2 {
        font-size: 1.5em;
        margin: 1em 0;
    }

    .div-info-main p {
        font-size: 1em;
    }

    .extra-text {
        display: none;
    }

    .first-img {
        margin: 2em 0;
        width: 90vw;
    }






    .contact-form {
        width: 70vw;
    }





    .prev-portfolio {
        padding: 5vw;
        background-color: #222;
    }

    .prev-pic {
        display: flex;
        overflow-x: scroll;
        width: 100%;
        height: 50vh;
        gap: 5vw;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        border: none;
    }

    .prev-pic img {
        min-width: 90vw !important;
    }

    .prev-pic img {
        min-width: 90vw;
        transition: filter 0.4s ease, transform 0.4s ease;
    }

    .prev-pic img.active {
        filter: blur(0);
    }






    .hero-portfolio-content {
        width: 60vw;
        padding: 2.5em 2em;
        border-radius: 30px;
    }

    

    .hero-portfolio-content h1 {
        font-size: 2em !important;
    }

    .hero-sub {
        font-size: 0.8em !important;
    }
















    .about-section {
        padding: 2em 2em;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        padding: 0;
        gap: 2em;
        text-align: center;
    }
    
    .about-text h2 {
        font-size: 2rem;
        text-align: center;
        margin-bottom: 0.8em;
    }
    
    .about-text p {
        font-size: 1rem;
        text-align: justify;
        line-height: 1.6;
        margin-bottom: 1.2em;
    }
    
    .about-image img {
        max-width: 100%;
        margin: 0 auto;
        display: block;
    }
    

    
    .about-stats {
        flex-direction: column;
        gap: 1em;
        margin-top: 0;
        padding: 0;
    }
    
    .stat-item {
        width: 80%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    
    .stat-item h3 {
        font-size: 2.5em;
        padding: 0;
        margin: 0;
    }
    
    .stat-item p {
        font-size: 0.9em;
        padding: 0;
        margin: 0;
    }

    .about-philosophy h2 {
        font-size: 2rem;
        margin-bottom: 1.5em;
    }
    
    .philosophy-grid {
        padding: 2em;
        flex-direction: column;
        gap: 1.5em;
        align-items: center;
    }
    
    .philosophy-card {
        max-width: 90vw;
        width: 100%;
        padding: 2em 1.5em;
    }
    
    .philosophy-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .philosophy-card h3 {
        font-size: 1.2rem;
    }
    
    .philosophy-card p {
        font-size: 0.9rem;
    }

    .about-gear h2 {
        font-size: 2rem;
        margin-bottom: 1.5em;
    }
    
    .gear-grid {
        flex-direction: column;
        padding: 1.5em;
        gap: 2em;
        text-align: center;
    }
    
    .gear-list {
        width: 100%;
    }
    
    .gear-list h3 {
        font-size: 1.5rem;
        margin-bottom: 1em;
    }
    
    .gear-item {
        padding: 1em 0;
        margin-bottom: 1em;
    }
    
    .gear-item h4 {
        font-size: 1rem;
    }
    
    .gear-item p {
        font-size: 0.85rem;
    }
    
    .gear-image img {
        width: 100%;
        height: auto;
        max-height: 300px;
        object-fit: cover;
    }
    
    .about-cta {
        padding: 4em 1em;
    }
    
    .about-cta .container {
        max-width: 90vw;
        font-size: 1em;
    }
    
    .about-cta h2 {
        font-size: 2rem;
        margin-bottom: 0.8em;
    }
    
    .about-cta p {
        font-size: 1rem;
        margin-bottom: 2em;
    }
    

}


























.hero-portfolio {
    position: relative;
    width: 100%;
    height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
    background-color: #111;
}

.hero-portfolio img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;
    object-fit: cover;

    filter: blur(12px) brightness(0.55);
    transform: scale(1.1);
    z-index: 0;
}

.hero-portfolio-content {
    position: relative;
    z-index: 1;

    max-width: 720px;
    padding: 3em 4em;

    text-align: center;
    color: #fff;

    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 40px;

    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.8);

    animation: heroFade 1.2s ease forwards;
}


.hero-portfolio-content h1 {
    font-size: clamp(3rem, 6vw, 4.5rem);
    letter-spacing: 2px;
    margin-bottom: 0.4em;
}


.hero-line {
    width: 80px;
    height: 3px;
    margin: 0 auto 1em;

    background: linear-gradient(
        90deg,
        transparent,
        #1abc9c,
        transparent
    );
    border-radius: 10px;
}


.hero-sub {
    font-size: 0.9rem;
    letter-spacing: 2px;
    opacity: 0.75;
    text-transform: uppercase;
}


@keyframes heroFade {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}






.portafolio {
    padding: 8em 4vw;
    background-color: #222;
}

.contenedor-imgs {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2em;
}

.contenedor-imgs img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    border-radius: 28px;
    cursor: pointer;

    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);

    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.45),
        inset 0 1px 1px rgba(255, 255, 255, 0.15);

    transition:
        transform 0.5s ease,
        box-shadow 0.5s ease,
        filter 0.5s ease;
}

.contenedor-imgs img:hover {
    transform: scale(1.04);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.7),
        0 0 25px rgba(255, 255, 255, 0.08);
    filter: brightness(1.05) contrast(1.05);
    z-index: 2;
}

.contenedor-imgs:hover img:not(:hover) {
    filter: blur(3px) brightness(0.75);
    transform: scale(0.97);
}



















.footer-section {
    width: 100%;         
    background-color: #222;
    padding: 80px 0 30px;
    color: #fff;
}

.footer-glass {
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;

    padding: 50px;
    border-radius: 0;


    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

}

.footer-brand img {
    width: 4em;
    margin-bottom: 15px;
}

.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.85;
    max-width: 30em;

}

.footer-links h4,
.footer-social h4 {
    margin-bottom: 15px;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.footer-links a {
    display: block;
    margin-bottom: 10px;
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    transform: translateX(5px);
    color: #1abc9c;
}

.footer-social a {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;

    color: #fff;
    text-decoration: none;
    opacity: 0.85;

    transition: all 0.3s ease;
}

.footer-social img {
    justify-items: center;
    width: 2em;
    height: 2em;
}

.footer-social a:hover {
    opacity: 1;
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    opacity: 0.6;
    font-size: 0.85rem;
}


@media screen and (max-width: 900px) {

    .footer-brand {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }

    .footer-glass {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2em 2em;
        row-gap: 2em; 

    }

    .footer-social {
        display: flex;
        justify-content: center;
        margin: 0;
    }

    .footer-social a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin: 0 0.5em;
    }

    .footer-social a span {
        display: none;
    }

    .footer-social h4 {
        display: none;
    }

    .footer-social img {
        width: 2em;
        height: 2em;
    }

    .footer-links a:hover,
    .footer-social a:hover {
        transform: none;
    }
}



