@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Barrio&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;700&family=Poppins:wght@300;400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lexend+Tera:wght@100..900&display=swap");
.achievements {
  background: #111;
  padding: 4rem 2rem;
  text-align: center;
  color: white;
}
.achievements .title {
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 2rem;
  letter-spacing: 1px;
}
.achievements .achievements-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
@media (min-width: 992px) {
  .achievements .achievements-grid {
    flex-direction: row;
  }
}
.achievements .achievement {
  flex: 1 1 200px;
  max-width: 250px;
  text-align: center;
  color: white;
}
.achievements .achievement .icon {
  font-size: 3rem;
  color: #909df2;
  margin-bottom: 1rem;
}
.achievements .achievement .number {
  font-size: 2rem;
  font-weight: bold;
}
.achievements .achievement .description {
  font-size: 0.9rem;
  text-transform: uppercase;
  opacity: 0.8;
}

/****
  RESET
  */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: #0f172a;
  background-color: #f8fafc;
}

.font-principal {
  font-family: "Inter", sans-serif !important;
}

.font-secundaria {
  font-family: "Poppins", sans-serif !important;
}

.font-titulares {
  font-family: "Poppins", sans-serif !important;
}

.icon {
  width: 3rem;
  height: auto;
  margin: auto;
  transition: filter 0.3s;
}
.icon:hover {
  filter: grayscale(100%);
}

body {
  -webkit-user-select: none; /* Chrome, Safari */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none; /* Estándar */
}

a {
  text-decoration: none;
  color: #1e40af;
  transition: color 0.3s ease;
}
a:hover {
  color: rgb(18.8048780488, 40.1170731707, 109.6951219512);
}

ul {
  padding-left: 20px;
  list-style: disc;
  margin: 0.5rem auto;
}

.container {
  width: 100%;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.d-flex {
  display: flex !important;
}

@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-flex {
    display: flex !important;
  }
}
.btn {
  background-color: #f8fafc;
  color: #0f172a;
  border: none;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: background 0.3s, transform 0.1s;
  white-space: nowrap;
}
.btn:hover {
  background-color: rgba(248, 250, 252, 0.5);
}
.btn:active {
  transform: scale(0.98);
}
.btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(248, 250, 252, 0.5);
}
.btn {
  margin: 1rem;
}
.btn-primary {
  background-color: #1e40af;
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: background 0.3s, transform 0.1s;
  white-space: nowrap;
}
.btn-primary:hover {
  background-color: rgba(30, 64, 175, 0.5);
}
.btn-primary:active {
  transform: scale(0.98);
}
.btn-primary:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.5);
}
.btn-secondary {
  background-color: #64748b;
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: background 0.3s, transform 0.1s;
  white-space: nowrap;
}
.btn-secondary:hover {
  background-color: rgba(100, 116, 139, 0.5);
}
.btn-secondary:active {
  transform: scale(0.98);
}
.btn-secondary:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(100, 116, 139, 0.5);
}
.btn-success {
  background-color: #10b981;
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: background 0.3s, transform 0.1s;
  white-space: nowrap;
}
.btn-success:hover {
  background-color: rgba(16, 185, 129, 0.5);
}
.btn-success:active {
  transform: scale(0.98);
}
.btn-success:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.5);
}
.btn-danger {
  background-color: #ef4444;
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: background 0.3s, transform 0.1s;
  white-space: nowrap;
}
.btn-danger:hover {
  background-color: rgba(239, 68, 68, 0.5);
}
.btn-danger:active {
  transform: scale(0.98);
}
.btn-danger:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.5);
}
.btn-warning {
  background-color: #f59e0b;
  color: #212529;
  border: none;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: background 0.3s, transform 0.1s;
  white-space: nowrap;
}
.btn-warning:hover {
  background-color: rgba(245, 158, 11, 0.5);
}
.btn-warning:active {
  transform: scale(0.98);
}
.btn-warning:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.5);
}
.btn-info {
  background-color: #0ea5e9;
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: background 0.3s, transform 0.1s;
  white-space: nowrap;
}
.btn-info:hover {
  background-color: rgba(14, 165, 233, 0.5);
}
.btn-info:active {
  transform: scale(0.98);
}
.btn-info:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.5);
}
.btn-light {
  background-color: #f8fafc;
  color: #212529;
  border: none;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: background 0.3s, transform 0.1s;
  white-space: nowrap;
}
.btn-light:hover {
  background-color: rgba(248, 250, 252, 0.5);
}
.btn-light:active {
  transform: scale(0.98);
}
.btn-light:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(248, 250, 252, 0.5);
}
.btn-dark {
  background-color: #0f172a;
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: background 0.3s, transform 0.1s;
  white-space: nowrap;
}
.btn-dark:hover {
  background-color: rgba(15, 23, 42, 0.5);
}
.btn-dark:active {
  transform: scale(0.98);
}
.btn-dark:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.5);
}

.btn-lg {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
  border-radius: 0.25rem;
}

.btn-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 0.25rem;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}
.container-sm {
  width: 100%;
  max-width: 576px;
  margin: 0 auto;
  padding: 0 1rem;
}
.container-md {
  width: 100%;
  max-width: 768px;
  margin: 0 auto;
  padding: 0 1rem;
}
.container-lg {
  width: 100%;
  max-width: 992px;
  margin: 0 auto;
  padding: 0 1rem;
}
.container-xl {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}
.container-xxl {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

.separator {
  width: 100%;
  height: 2px;
  background: #ddd;
  margin: 2rem 0;
  border-radius: 1px;
}

.separator-dark {
  width: 100%;
  height: 2px;
  background: #333;
  margin: 2rem 0;
  border-radius: 1px;
}

.separator-light {
  width: 100%;
  height: 2px;
  background: #eee;
  margin: 2rem 0;
  border-radius: 1px;
}

.separator-dashed {
  width: 100%;
  height: 2px;
  background: #bbb;
  margin: 2rem 0;
  border-radius: 1px;
  background: none;
  border-top: 2px "dashed" #bbb;
  height: 0;
}

.separator-double {
  width: 100%;
  height: 4px;
  background: #999;
  margin: 2rem 0;
  border-radius: 1px;
  background: none;
  border-top: 4px "double" #999;
  height: 0;
}

.text-start {
  text-align: left !important;
}

.text-center {
  text-align: center !important;
}

.text-end {
  text-align: right !important;
}

.display-1 {
  font-size: 5rem;
  font-weight: 300;
}

.display-2 {
  font-size: 4.5rem;
  font-weight: 300;
}

.display-3 {
  font-size: 4rem;
  font-weight: 300;
}

.display-4 {
  font-size: 3.5rem;
  font-weight: 300;
}

.fw-light {
  font-weight: 300 !important;
}

.fw-normal {
  font-weight: 400 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.carousel {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 10px;
}
.carousel .carousel-inner {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.carousel .carousel-item {
  min-width: 100%;
  transition: opacity 0.5s ease-in-out;
}
.carousel .carousel-item img {
  width: 100%;
  display: block;
}
.carousel .carousel-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 1.5rem;
  transition: background 0.3s;
}
.carousel .carousel-control:hover {
  background: rgba(0, 0, 0, 0.8);
}
.carousel .carousel-control-prev {
  left: 10px;
}
.carousel .carousel-control-next {
  right: 10px;
}
.carousel .carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.carousel .carousel-indicators button {
  width: 12px;
  height: 12px;
  background: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}
.carousel .carousel-indicators button.active {
  background: red;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.modal.active {
  opacity: 1;
  visibility: visible;
}
.modal .modal-content {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
  text-align: center;
  position: relative;
}
.modal .modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.modal-dark {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(208, 208, 208, 0.8);
  color: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.modal-dark.active {
  opacity: 1;
  visibility: visible;
}
.modal-dark .modal-content {
  background: #333;
  padding: 1.5rem;
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
  text-align: center;
  position: relative;
}
.modal-dark .modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.modal-light {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.7);
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.modal-light.active {
  opacity: 1;
  visibility: visible;
}
.modal-light .modal-content {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 8px;
  width: 90%;
  max-width: 500px;
  text-align: center;
  position: relative;
}
.modal-light .modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.modal-lg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.modal-lg.active {
  opacity: 1;
  visibility: visible;
}
.modal-lg .modal-content {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  width: 95%;
  max-width: 800px;
  text-align: center;
  position: relative;
}
.modal-lg .modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.cta {
  background: #0f172a;
  color: white;
  text-align: center;
  padding: 4rem 1.5rem !important;
}
@media (min-width: 992px) {
  .cta {
    padding: 6rem 2rem !important;
  }
}
.cta .cta-title {
  font-size: 1.25rem;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  letter-spacing: 1px;
}
@media (min-width: 992px) {
  .cta .cta-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.cta .cta-subtitle {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}
@media (min-width: 992px) {
  .cta .cta-subtitle {
    font-size: 1.1rem;
  }
}
.cta .cta-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border: 2px solid white;
  background: transparent;
  color: white;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.cta .cta-button:hover {
  background: rgba(25.5, 25.5, 25.5, 0);
  color: rgb(229.5, 229.5, 229.5);
}

.cta-primary {
  background: #1e40af;
  color: white;
  text-align: center;
  padding: 4rem 1.5rem !important;
}
@media (min-width: 992px) {
  .cta-primary {
    padding: 6rem 2rem !important;
  }
}
.cta-primary .cta-title {
  font-size: 1.25rem;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  letter-spacing: 1px;
}
@media (min-width: 992px) {
  .cta-primary .cta-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.cta-primary .cta-subtitle {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}
@media (min-width: 992px) {
  .cta-primary .cta-subtitle {
    font-size: 1.1rem;
  }
}
.cta-primary .cta-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border: 2px solid white;
  background: white;
  color: #1e40af;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.cta-primary .cta-button:hover {
  background: white;
  color: rgb(22.5365853659, 48.0780487805, 131.4634146341);
}

.cta-secondary {
  background: rgb(168.7804878049, 185.5317073171, 240.2195121951);
  color: #0f172a;
  text-align: center;
  padding: 4rem 1.5rem !important;
}
@media (min-width: 992px) {
  .cta-secondary {
    padding: 6rem 2rem !important;
  }
}
.cta-secondary .cta-title {
  font-size: 1.25rem;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  letter-spacing: 1px;
}
@media (min-width: 992px) {
  .cta-secondary .cta-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.cta-secondary .cta-subtitle {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}
@media (min-width: 992px) {
  .cta-secondary .cta-subtitle {
    font-size: 1.1rem;
  }
}
.cta-secondary .cta-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border: 2px solid #1e40af;
  background: #1e40af;
  color: white;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.cta-secondary .cta-button:hover {
  background: rgb(38.1707317073, 80.2975609756, 217.8292682927);
  color: rgb(229.5, 229.5, 229.5);
}

.cta-danger {
  background: #ef4444;
  color: white;
  text-align: center;
  padding: 4rem 1.5rem !important;
}
@media (min-width: 992px) {
  .cta-danger {
    padding: 6rem 2rem !important;
  }
}
.cta-danger .cta-title {
  font-size: 1.25rem;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  letter-spacing: 1px;
}
@media (min-width: 992px) {
  .cta-danger .cta-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.cta-danger .cta-subtitle {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}
@media (min-width: 992px) {
  .cta-danger .cta-subtitle {
    font-size: 1.1rem;
  }
}
.cta-danger .cta-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border: 2px solid white;
  background: white;
  color: #ef4444;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.cta-danger .cta-button:hover {
  background: white;
  color: rgb(234.9802955665, 21.0197044335, 21.0197044335);
}

.cta-success {
  background: #10b981;
  color: white;
  text-align: center;
  padding: 4rem 1.5rem !important;
}
@media (min-width: 992px) {
  .cta-success {
    padding: 6rem 2rem !important;
  }
}
.cta-success .cta-title {
  font-size: 1.25rem;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  letter-spacing: 1px;
}
@media (min-width: 992px) {
  .cta-success .cta-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.cta-success .cta-subtitle {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}
@media (min-width: 992px) {
  .cta-success .cta-subtitle {
    font-size: 1.1rem;
  }
}
.cta-success .cta-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border: 2px solid white;
  background: white;
  color: #10b981;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}
.cta-success .cta-button:hover {
  background: white;
  color: rgb(11.9402985075, 138.0597014925, 96.2686567164);
}

.cta {
  opacity: 1;
  transform: none;
}
.cta.animate {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
}
.cta.animate.visible {
  opacity: 1;
  transform: translateY(0);
}

.cta-branding {
  position: relative;
  padding: 100px 2rem;
  background: url("../../assets/images/portada06.jpg") no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  color: #ffffff;
  text-align: center;
  overflow: hidden;
  border-radius: 40px;
  margin: 60px 2rem;
}
.cta-branding .cta-branding-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 64, 175, 0.9) 0%, rgba(15, 23, 42, 0.8) 100%);
  z-index: 1;
}
.cta-branding .cta-branding-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}
.cta-branding .cta-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 2rem;
  backdrop-filter: blur(5px);
}
.cta-branding .cta-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: #ffffff;
}
.cta-branding .cta-description {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  opacity: 0.9;
  line-height: 1.6;
  color: #ffffff;
}
.cta-branding .cta-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cta-branding .cta-actions .btn {
  padding: 1rem 2.5rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}
.cta-branding .cta-actions .btn.btn-warning {
  background-color: #f59e0b;
  color: #0f172a;
  border: none;
}
.cta-branding .cta-actions .btn.btn-warning:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.cta-branding .cta-actions .btn.btn-outline-light {
  border: 2px solid #ffffff;
  color: #ffffff;
  background: transparent;
}
.cta-branding .cta-actions .btn.btn-outline-light:hover {
  background: #ffffff;
  color: #0f172a;
}

@media (max-width: 768px) {
  .cta-branding {
    margin: 40px 1rem;
    padding: 60px 1.5rem;
    border-radius: 25px;
  }
  .cta-branding .cta-title {
    font-size: 2rem;
  }
  .cta-branding .cta-actions {
    flex-direction: column;
  }
  .cta-branding .cta-actions .btn {
    width: 100%;
  }
}
.header .btn {
  display: block;
  margin-inline-start: auto;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  height: 10vh;
  width: 100%;
  display: flex;
  flex-direction: row;
  vertical-align: middle;
  align-content: center;
  align-items: center;
  background-color: hsl(222, 44%, 13%);
  z-index: 4;
}
.header .menu-hamburguesa {
  width: 40px;
  height: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 10;
  margin: 0 5px;
}
.header .b1 {
  width: 10%;
  height: 100%;
  padding-left: 1em;
  justify-content: center;
  align-content: center;
}
.header .b2 {
  width: 80%;
  height: 100%;
  justify-content: center;
  align-content: center;
}
.header .b3 {
  width: 10%;
  height: 100%;
  justify-content: center !important;
  align-content: center !important;
}
.header .b3 ion-icon {
  width: 48px !important;
  height: 48px !important;
}
.header .logo {
  width: 10%;
  height: 100%;
  justify-content: center;
  align-content: center;
  padding: 1em;
}
.header .nav-open-btn {
  position: fixed;
  top: 0;
  right: 0;
  width: 10%;
  align-content: center;
  vertical-align: middle;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 10px;
}

.header .container .logo {
  outline: none;
}

.features {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
  padding: 4rem 1.5rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .features {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
    padding: 8rem 2rem;
  }
}
.features .feature {
  flex: 1 1 100%;
  max-width: 450px;
  padding: 2.5rem 2rem;
  border-radius: 24px;
  background: #ffffff;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.03);
}
@media (min-width: 992px) {
  .features .feature {
    flex: 1 1 300px;
    max-width: 350px;
  }
}
.features .feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  border-color: rgba(30, 64, 175, 0.1);
}
.features .feature {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
  border-color: rgba(30, 64, 175, 0.1);
}
.features .icon {
  width: 4rem;
  height: 4rem;
  margin-bottom: 2rem;
  transition: transform 0.3s ease;
  filter: none;
}
.features .title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.5px;
  text-transform: none;
  margin-bottom: 1rem;
}
.features .text {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #64748b;
}

.footer {
  background-color: #0f172a;
  color: #ffffff;
  padding: 60px 1.5rem 40px;
  text-align: center;
}
@media (min-width: 768px) {
  .footer {
    padding: 80px 2rem 40px;
    text-align: left;
  }
}
.footer .footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 40px;
}
@media (min-width: 576px) {
  .footer .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .footer .footer-content {
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
    margin-bottom: 60px;
  }
}
.footer .footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .footer .footer-logo {
    align-items: flex-start;
  }
}
.footer .footer-logo img {
  height: 60px;
  background-color: #ffffff;
  padding: 10px;
  border-radius: 15px;
  margin-bottom: 1.5rem;
  object-fit: contain;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
@media (min-width: 768px) {
  .footer .footer-logo img {
    height: 70px;
    padding: 12px;
  }
}
.footer .footer-logo p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  max-width: 300px;
}
.footer .footer-links-group h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: #ffffff;
}
@media (min-width: 768px) {
  .footer .footer-links-group h4 {
    margin-bottom: 1.5rem;
  }
}
.footer .footer-links-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .footer-links-group ul li {
  margin-bottom: 0.8rem;
}
.footer .footer-links-group ul li a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}
.footer .footer-links-group ul li a:hover {
  color: #f59e0b;
  padding-left: 5px;
}
.footer .footer-social {
  display: flex;
  gap: 1.2rem;
  margin-top: 1rem;
}
.footer .footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}
.footer .footer-social a:hover {
  background: #1e40af;
  transform: translateY(-3px);
}
.footer .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.footer .footer-bottom .footer-copy {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
}
.footer.visible {
  opacity: 1;
  transform: translateY(0);
}

.back-top-btn {
  border: 1px solid red;
}

.navbar {
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 12vh;
  background: rgba(255, 255, 255, 0.9);
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  transition: all 0.3s ease-in-out;
  z-index: 1000;
  backdrop-filter: blur(5px);
}
.navbar ul {
  display: flex;
  gap: 1rem;
}
.navbar {
  z-index: 1001 !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.navbar.scrolled {
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 12vh;
  background: rgba(255, 255, 255, 0.95);
  color: #0f172a;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  transition: all 0.3s ease-in-out;
  z-index: 1000;
  backdrop-filter: blur(5px);
}
.navbar.scrolled ul {
  display: flex;
  gap: 1rem;
}
.navbar.scrolled {
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
.navbar.scrolled .logo img {
  height: 55px;
  transition: height 0.3s;
}
.navbar .logo img {
  height: 70px;
  transition: height 0.3s;
  margin: auto;
  vertical-align: middle;
}
.navbar .nav-links {
  display: none;
}
.navbar .nav-links li {
  list-style: none;
}
.navbar .nav-links a {
  text-decoration: none;
  color: #0f172a;
  font-size: 1.1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.navbar .nav-links a:hover {
  color: #f8b400;
}
.navbar .nav-links a.btn-warning {
  background-color: #f59e0b;
  color: #0f172a;
  padding: 0.7rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  border: 2px solid transparent;
}
.navbar .nav-links a.btn-warning:hover {
  background-color: rgb(221.4251968504, 142.4744094488, 9.0748031496);
  border-color: #0f172a;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
  transform: scale(1.05);
  color: #0f172a;
}
@media (min-width: 992px) {
  .navbar .nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    list-style: none;
    padding: 0;
    margin: 0;
  }
}
.navbar .hamburger {
  font-size: 2rem;
  background: none;
  border: none;
  color: #0f172a;
  cursor: pointer;
  display: block;
  position: relative;
  width: 40px;
  height: 40px;
}
@media (min-width: 992px) {
  .navbar .hamburger {
    display: none;
  }
}
.navbar .hamburger span {
  display: block;
  width: 35px;
  height: 2px;
  background-color: #0f172a;
  border-radius: 5px;
  position: absolute;
  left: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.navbar .hamburger span:nth-child(1) {
  top: 8px;
}
.navbar .hamburger span:nth-child(2) {
  top: 18px;
}
.navbar .hamburger span:nth-child(3) {
  top: 28px;
}
.navbar .hamburger.scrolled {
  color: #64748b;
}
.navbar .hamburger.scrolled span {
  background-color: #1e40af;
}
.navbar .hamburger.active span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
.navbar .hamburger.active span:nth-child(2) {
  opacity: 0;
}
.navbar .hamburger.active span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  margin-top: 10vh;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  color: black;
  display: flex;
  flex-direction: column !important;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease-in-out;
}
.menu-overlay ul {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.menu-overlay {
  z-index: 100 !important;
}
.menu-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.menu-overlay .overlay-menu {
  list-style: none;
  text-align: center;
}
.menu-overlay .overlay-menu li {
  margin: 1rem 0;
}
.menu-overlay .overlay-menu li a {
  text-decoration: none;
  color: white;
  font-size: 1.5rem;
  transition: color 0.3s ease-in-out;
}
.menu-overlay .overlay-menu li a:hover {
  color: #ffcc00;
}

.hero-branding {
  background-color: #ffffff;
  padding: 100px 1rem 60px;
  min-height: auto;
  display: flex;
  align-items: center;
  position: relative;
}
@media (min-width: 992px) {
  .hero-branding {
    padding: 140px 2rem 80px;
    min-height: 80vh;
  }
}
.hero-branding .hero-branding-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 992px) {
  .hero-branding .hero-branding-content {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}
.hero-branding .hero-tag {
  display: inline-block;
  color: #1e40af;
  background: rgba(30, 64, 175, 0.1);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .hero-branding .hero-tag {
    font-size: 0.85rem;
    margin-bottom: 2rem;
  }
}
.hero-branding .hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.1;
  color: #0f172a;
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .hero-branding .hero-title {
    font-size: 3.5rem;
  }
}
@media (min-width: 992px) {
  .hero-branding .hero-title {
    font-size: 4rem;
    letter-spacing: -2px;
    margin-bottom: 2rem;
  }
}
.hero-branding .hero-title span {
  color: #1e40af;
  display: block;
}
.hero-branding .hero-description {
  font-size: 1.1rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 100%;
}
@media (min-width: 768px) {
  .hero-branding .hero-description {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    max-width: 500px;
  }
}
.hero-branding .hero-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 576px) {
  .hero-branding .hero-cta {
    flex-direction: row;
  }
}
.hero-branding .hero-cta .btn {
  margin: 0;
  padding: 0.8rem 2rem;
  border-radius: 12px;
  font-weight: 700;
  text-transform: none;
  font-size: 1rem;
}
@media (min-width: 768px) {
  .hero-branding .hero-cta .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
  }
}
.hero-branding .hero-cta .btn-outline-dark {
  border: 2px solid #0f172a;
  color: #0f172a;
  background: transparent;
}
.hero-branding .hero-cta .btn-outline-dark:hover {
  background: #0f172a;
  color: #fff;
}
.hero-branding .hero-branding-visual {
  position: relative;
}
.hero-branding .hero-branding-visual .main-image-wrapper {
  position: relative;
  border-radius: 30px;
  overflow: visible;
}
.hero-branding .hero-branding-visual .main-image-wrapper .main-hero-img {
  width: 100%;
  height: auto;
  border-radius: 30px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
  display: block;
}
.hero-branding .hero-branding-visual .hero-floating-card {
  position: absolute;
  bottom: 40px;
  left: -30px;
  background: #ffffff;
  padding: 1rem 1.5rem;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
  animation: float 4s infinite ease-in-out;
}
.hero-branding .hero-branding-visual .hero-floating-card i {
  color: #10b981;
  font-size: 1.5rem;
}
.hero-branding .hero-branding-visual .hero-floating-card span {
  font-weight: 700;
  color: #0f172a;
  font-size: 0.95rem;
}
.hero-branding .hero-branding-visual .hero-floating-card.top-right {
  bottom: auto;
  top: 20px;
  left: auto;
  right: -20px;
  animation-delay: 2s;
}
.hero-branding .hero-branding-visual .hero-floating-card.top-right i {
  color: #f59e0b;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}
@media (max-width: 992px) {
  .hero-branding {
    padding-top: 120px;
  }
  .hero-branding .hero-branding-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  .hero-branding .hero-branding-text {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-branding .hero-title {
    font-size: 3rem;
  }
  .hero-branding .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-branding .hero-branding-visual {
    max-width: 500px;
    margin: 0 auto;
  }
  .hero-branding .hero-floating-card {
    left: 0;
  }
  .hero-branding .hero-floating-card.top-right {
    right: 0;
  }
}
@media (min-width: 992px) {
  .split-section {
    flex-direction: row-reverse !important;
    gap: 4rem;
  }
  .split-section .hero-text {
    max-width: 550px;
  }
}

.hero-light {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  padding: 4rem 1.5rem;
  background: #ffffff;
  margin-top: 0;
}
@media (min-width: 992px) {
  .hero-light {
    flex-direction: row;
    justify-content: space-between;
    padding: 6rem 2rem;
    align-items: flex-start;
  }
}
.hero-light .hero-text {
  flex: 1;
  max-width: 100%;
  text-align: center;
}
@media (min-width: 992px) {
  .hero-light .hero-text {
    max-width: 500px;
    text-align: left;
  }
}
.hero-light .hero-title {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.2;
  color: #1e40af;
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
}
@media (min-width: 992px) {
  .hero-light .hero-title {
    font-size: 2.25rem;
  }
}
.hero-light .badge-text {
  display: inline-block;
  background: rgba(30, 64, 175, 0.1);
  color: #1e40af;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}
.hero-light .hero-description {
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.hero-light .hero-description strong {
  color: #0f172a;
}
@media (min-width: 992px) {
  .hero-light .hero-description {
    font-size: 1.15rem;
  }
}
.hero-light .hero-image {
  flex: 1;
  display: flex;
  width: 100%;
  max-width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  border: none;
}
@media (min-width: 992px) {
  .hero-light .hero-image {
    max-width: 600px;
  }
}
.hero-light .hero-image.modern-frame {
  border: 4px solid white;
  outline: 1px solid rgba(0, 0, 0, 0.05);
}
@media (min-width: 992px) {
  .hero-light .hero-image.modern-frame {
    border: 8px solid white;
  }
}
.hero-light .hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.hero-light .hero-image:hover img {
  transform: scale(1.05);
}

.hero-dark {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  padding: 4rem 1.5rem;
  background: #f8fafc;
  margin-top: 0;
}
@media (min-width: 992px) {
  .hero-dark {
    flex-direction: row;
    justify-content: space-between;
    padding: 6rem 2rem;
    align-items: flex-start;
  }
}
.hero-dark .hero-text {
  flex: 1;
  max-width: 100%;
  text-align: center;
}
@media (min-width: 992px) {
  .hero-dark .hero-text {
    max-width: 500px;
    text-align: left;
  }
}
.hero-dark .hero-title {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.2;
  color: #1e40af;
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
}
@media (min-width: 992px) {
  .hero-dark .hero-title {
    font-size: 2.25rem;
  }
}
.hero-dark .badge-text {
  display: inline-block;
  background: rgba(30, 64, 175, 0.1);
  color: #1e40af;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}
.hero-dark .hero-description {
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.hero-dark .hero-description strong {
  color: #0f172a;
}
@media (min-width: 992px) {
  .hero-dark .hero-description {
    font-size: 1.15rem;
  }
}
.hero-dark .hero-image {
  flex: 1;
  display: flex;
  width: 100%;
  max-width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  border: none;
}
@media (min-width: 992px) {
  .hero-dark .hero-image {
    max-width: 600px;
  }
}
.hero-dark .hero-image.modern-frame {
  border: 4px solid white;
  outline: 1px solid rgba(0, 0, 0, 0.05);
}
@media (min-width: 992px) {
  .hero-dark .hero-image.modern-frame {
    border: 8px solid white;
  }
}
.hero-dark .hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.hero-dark .hero-image:hover img {
  transform: scale(1.05);
}

.hero-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2rem;
  padding: 4rem 1.5rem;
  background: #badbff;
  margin-top: 0;
}
@media (min-width: 992px) {
  .hero-primary {
    flex-direction: row;
    justify-content: space-between;
    padding: 6rem 2rem;
    align-items: flex-start;
  }
}
.hero-primary .hero-text {
  flex: 1;
  max-width: 100%;
  text-align: center;
}
@media (min-width: 992px) {
  .hero-primary .hero-text {
    max-width: 500px;
    text-align: center;
  }
}
.hero-primary .hero-title {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1.2;
  color: #1e40af;
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
}
@media (min-width: 992px) {
  .hero-primary .hero-title {
    font-size: 2.25rem;
  }
}
.hero-primary .badge-text {
  display: inline-block;
  background: rgba(30, 64, 175, 0.1);
  color: #1e40af;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}
.hero-primary .hero-description {
  font-size: 1.05rem;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.hero-primary .hero-description strong {
  color: #0f172a;
}
@media (min-width: 992px) {
  .hero-primary .hero-description {
    font-size: 1.15rem;
  }
}
.hero-primary .hero-image {
  flex: 1;
  display: flex;
  width: 100%;
  max-width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  border: none;
}
@media (min-width: 992px) {
  .hero-primary .hero-image {
    max-width: 600px;
  }
}
.hero-primary .hero-image.modern-frame {
  border: 4px solid white;
  outline: 1px solid rgba(0, 0, 0, 0.05);
}
@media (min-width: 992px) {
  .hero-primary .hero-image.modern-frame {
    border: 8px solid white;
  }
}
.hero-primary .hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.hero-primary .hero-image:hover img {
  transform: scale(1.05);
}

.fondo1 {
  margin-top: 170px;
  background: url("../../assets/images/IMG-20171114-WA0024.jpg") no-repeat top center;
  background-size: cover;
  width: 100%;
  height: auto;
  min-height: 400px;
  max-height: 700px;
}

.video-container {
  position: relative;
  width: 100% !important;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-background {
  width: 100% !important;
  height: auto;
}

.audio-button {
  position: absolute;
  bottom: 20px;
  left: 20px;
  padding: 10px 15px;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  font-size: 16px;
}

.audio-button:hover {
  background-color: rgba(0, 0, 0, 0.9);
}

.gallery-container {
  padding: 2rem;
  text-align: center;
}
.gallery-container .gallery-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: hsl(217, 24%, 59%);
}
.gallery-container .gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  padding: 0;
  list-style: none;
}
.gallery-container .gallery .gallery-item {
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.gallery-container .gallery .gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}
.gallery-container .gallery .gallery-item img:hover {
  transform: scale(1.05);
}

.testimonial {
  background-color: #f8fafc;
  padding: 60px 1.5rem;
  text-align: center;
}
@media (min-width: 768px) {
  .testimonial {
    padding: 100px 2rem;
  }
}
.testimonial .testimonial-title {
  font-size: 2rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 2rem;
  letter-spacing: -1px;
}
@media (min-width: 768px) {
  .testimonial .testimonial-title {
    font-size: 2.5rem;
    margin-bottom: 4rem;
  }
}
.testimonial .testimonial-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 768px) {
  .testimonial .testimonial-container {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
}
.testimonial .testimonial-item {
  background: #ffffff;
  padding: 2rem 1.5rem;
  border-radius: 30px;
  box-shadow: 0 15px 35px rgba(15, 23, 42, 0.05);
  flex: 1 1 100%;
  max-width: 500px;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.02);
}
@media (min-width: 768px) {
  .testimonial .testimonial-item {
    padding: 3rem 2.5rem;
    flex: 1 1 400px;
  }
}
.testimonial .testimonial-item::before {
  content: "“";
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 5rem;
  color: rgba(30, 64, 175, 0.1);
  font-family: serif;
  line-height: 1;
}
@media (min-width: 768px) {
  .testimonial .testimonial-item::before {
    top: 20px;
    left: 30px;
    font-size: 8rem;
  }
}
.testimonial .testimonial-avatars {
  margin-bottom: 1.5rem;
}
.testimonial .testimonial-avatars img {
  width: 65px;
  height: 65px;
  border-radius: 18px;
  object-fit: contain;
  background: #f1f5f9;
  padding: 10px;
}
.testimonial .testimonial-text {
  font-size: 1.2rem;
  font-style: italic;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}
.testimonial .testimonial-author .author-name {
  display: block;
  font-weight: 700;
  color: #0f172a;
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}
.testimonial .testimonial-author .author-company {
  font-size: 0.85rem;
  color: #1e40af;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.testimonial {
  opacity: 1;
  transform: none;
}
.testimonial.animate {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-in-out, transform 0.8s ease-in-out;
}
.testimonial.animate.visible {
  opacity: 1;
  transform: translateY(0);
}

.shop-categories {
  padding: 60px 1.5rem;
  background-color: #f8fafc;
  text-align: center;
}
@media (min-width: 768px) {
  .shop-categories {
    padding: 80px 20px;
  }
}
.shop-categories .section-header {
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .shop-categories .section-header {
    margin-bottom: 50px;
  }
}
.shop-categories .section-header .section-title {
  font-size: 2rem;
  color: #0f172a;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .shop-categories .section-header .section-title {
    font-size: 2.5rem;
  }
}
.shop-categories .section-header .section-subtitle {
  color: #64748b;
  font-size: 1rem;
}
@media (min-width: 768px) {
  .shop-categories .section-header .section-subtitle {
    font-size: 1.1rem;
  }
}
.shop-categories .categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 15px;
  max-width: 1200px;
  margin: 0 auto 30px;
}
@media (min-width: 576px) {
  .shop-categories .categories-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
  }
}
.shop-categories .category-card {
  background: #fff;
  padding: 20px 10px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .shop-categories .category-card {
    padding: 40px 20px;
  }
}
.shop-categories .category-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.shop-categories .category-card .category-icon {
  font-size: 2.5rem;
  color: #f59e0b;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .shop-categories .category-card .category-icon {
    font-size: 3rem;
    margin-bottom: 20px;
  }
}
.shop-categories .category-card .category-name {
  font-size: 1rem;
  font-weight: 600;
}
@media (min-width: 768px) {
  .shop-categories .category-card .category-name {
    font-size: 1.25rem;
  }
}

.promotions-banner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 30px 20px;
  background-color: #0f172a;
  color: #fff;
  max-width: 90%;
  margin: -30px auto 30px;
  border-radius: 20px;
  position: relative;
  z-index: 20;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.05);
}
@media (min-width: 768px) {
  .promotions-banner {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 40px 30px;
    max-width: 1200px;
    margin: -60px auto 40px;
    border-radius: 24px;
  }
}
.promotions-banner .promotion-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 10px;
  transition: transform 0.3s ease;
}
.promotions-banner .promotion-item:hover {
  transform: translateY(-5px);
}
.promotions-banner .promotion-item .promo-icon {
  font-size: 2.2rem;
  color: #f59e0b;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
}
.promotions-banner .promotion-item .promo-content h4 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}
.promotions-banner .promotion-item .promo-content p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
  .promotions-banner {
    margin: 20px;
    grid-template-columns: 1fr;
  }
}
.newsletter {
  background: linear-gradient(135deg, #0f172a 0%, #2a4365 100%);
  padding: 100px 2rem;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.newsletter::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -20%;
  width: 100%;
  height: 200%;
  background: radial-gradient(circle, rgba(30, 64, 175, 0.1) 0%, transparent 60%);
  pointer-events: none;
}
.newsletter .newsletter-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.newsletter .newsletter-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
}
.newsletter .newsletter-content p {
  margin-bottom: 40px;
  font-size: 1.15rem;
  opacity: 0.8;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.newsletter .newsletter-form {
  display: flex;
  gap: 15px;
  max-width: 600px;
  margin: 0 auto 30px;
  background: rgba(255, 255, 255, 0.05);
  padding: 10px;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.newsletter .newsletter-form input {
  flex: 1;
  padding: 18px 25px;
  border-radius: 12px;
  border: none;
  font-size: 1rem;
  background: #ffffff;
  color: #0f172a;
  outline: none;
}
.newsletter .newsletter-form input::placeholder {
  color: #94a3b8;
}
.newsletter .newsletter-form button {
  padding: 18px 35px;
  border-radius: 12px;
  font-weight: 700;
  background-color: #f59e0b;
  color: #0f172a;
  border: none;
  transition: all 0.3s ease;
  font-size: 1rem;
}
.newsletter .newsletter-form button:hover {
  background-color: rgb(221.4251968504, 142.4744094488, 9.0748031496);
  transform: scale(1.02);
}
.newsletter .newsletter-disclaimer {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
  .newsletter {
    padding: 80px 1.5rem;
  }
  .newsletter .newsletter-content h2 {
    font-size: 2rem;
  }
  .newsletter .newsletter-form {
    flex-direction: column;
    background: transparent;
    padding: 0;
    border: none;
  }
  .newsletter .newsletter-form input,
  .newsletter .newsletter-form button {
    width: 100%;
  }
}
.contact-hero {
  background-color: #ffffff;
  padding: 100px 1.5rem 40px;
  text-align: center;
}
@media (min-width: 992px) {
  .contact-hero {
    padding: 140px 2rem 60px;
  }
}
.contact-hero .contact-hero-content {
  max-width: 800px;
  margin: 0 auto;
}
.contact-hero .contact-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -1.5px;
  margin: 1.5rem 0;
}
@media (min-width: 992px) {
  .contact-hero .contact-title {
    font-size: 3.5rem;
  }
}
.contact-hero .contact-title span {
  color: #1e40af;
}
.contact-hero .contact-description {
  font-size: 1.1rem;
  color: #64748b;
  line-height: 1.6;
}
@media (min-width: 992px) {
  .contact-hero .contact-description {
    font-size: 1.25rem;
  }
}

.contact-methods {
  padding: 40px 1.5rem 60px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .contact-methods {
    padding: 60px 2rem 100px;
  }
}
.contact-methods .contact-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .contact-methods .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .contact-methods .contact-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}
.contact-methods .contact-card {
  background: #f8fafc;
  padding: 2.5rem 1.5rem;
  border-radius: 30px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.02);
}
@media (min-width: 992px) {
  .contact-methods .contact-card {
    padding: 3.5rem 2rem;
  }
}
.contact-methods .contact-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
}
.contact-methods .contact-card p {
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  padding: 0 1rem;
}
.contact-methods .contact-card .contact-link {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1e40af;
  text-decoration: none;
  transition: color 0.3s ease;
}
.contact-methods .contact-card .contact-link:hover {
  color: #f59e0b;
}
.contact-methods .contact-card .contact-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: #64748b;
}

@media (max-width: 768px) {
  .contact-hero .contact-title {
    font-size: 2.5rem;
  }
}

/*# sourceMappingURL=estilos.css.map */
