/* === JSC PALETA MORADO PROFESIONAL + MAPEO BS5 === */
:root{
  /* Base brand */
  --primary: #6B46C1;        /* Morado profesional */
  --primary-light: #8B7EDB;
  --primary-dark: #4C1D95;
  --secondary: #3B82F6;      /* Azul complementario */
  --secondary-light: #60A5FA;
  --secondary-dark: #1E40AF;

  /* Neutros */
  --light: #F8FAFC;
  --dark: #111827;
  --text: #111827;
  --muted: #6B7280;

  /* Acentos */
  --accent-gold: #F59E0B;
  --success: #10B981;
  --warning: #F59E0B;
  --danger: #EF4444;

  /* Mapear a Bootstrap 5 */
  --bs-primary: var(--primary);
  --bs-secondary: var(--secondary);
  --bs-success: var(--success);
  --bs-warning: var(--warning);
  --bs-danger: var(--danger);
  --bs-body-color: var(--text);
  --bs-body-bg: #ffffff;
  --nav-offset: 120px;
}

/* Utilidades de marca */
.text-brand{ color:var(--primary)!important; }
.bg-brand{ background:var(--primary)!important; }
.badge-brand{
  background: #F3E8FF; color: var(--primary-dark);
  border:1px solid #E9D5FF; padding:.35rem .6rem; border-radius:999px; font-weight:600; font-size:.85rem;
}
.btn-outline-primary{ color:var(--primary)!important; border-color:var(--primary)!important; background:transparent!important; }
.btn-outline-primary:hover{ background:var(--primary)!important; color:#fff!important; }

a{ color:var(--secondary); }
a:hover{ color:var(--primary); }

/* Nav y activos */
.nav-pills .nav-link.active,
.nav-pills .show>.nav-link{ background-color:var(--primary)!important; }
.dropdown-item.active, .dropdown-item:active{ background-color:var(--primary)!important; }

/* Formularios focus */
.form-control:focus, .form-select:focus{
  border-color: var(--secondary);
  box-shadow: 0 0 0 .2rem rgba(59,130,246,.25);
}

/* Gradiente héroe (usar en el contenedor del hero) */
.hero-gradient{
  background: linear-gradient(135deg,var(--primary-dark), var(--primary) 55%, var(--secondary));
  color:#fff;
}

/* Botón primario consistente (no depende de Angular Material) */
.btn.btn-primary{ background: #6B46C1; border-color: #6B46C1; }
.btn.btn-primary:hover{ background: #4C1D95; border-color: #4C1D95; }
.hero__cta{ border-radius: 999px; padding: .875rem 1.25rem; font-weight: 600; }

/* Contraste garantizado en fondos de marca */
.on-brand{ color:#6e00d0  !important; }

/* Marca en navbar: evitar desbordes en móvil */
.navbar-brand h1{
  font-size: clamp(1rem, 4vw, 1.5rem);
  line-height: 1.1;
  letter-spacing: 0;
  margin: 0;
}
@media (max-width: 425px){
  .navbar-brand h1{ max-width: 60vw; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
}

/********** Template CSS **********/

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

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

h3,
.h3,
h4,
.h4,
.fw-medium {
    font-weight: 600 !important;
}

h5,
.h5,
h6,
.h6,
.fw-semi-bold {
    font-weight: 500 !important;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    transition: .5s;
    font-weight: 500;
}

.btn-primary,
.btn-outline-primary:hover {
    color: var(--light);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.fixed-top {
    transition: .5s;
}

.top-bar {
    height: 45px;
    border-bottom: 1px solid rgba(53, 94, 252, .07);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    padding: 25px 15px;
    color: var(--muted);
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        margin-top: 10px;
        border-top: 1px solid rgba(0, 0, 0, .07);
        background: #FFFFFF;
    }

    .navbar .navbar-nav .nav-link {
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: start;
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 3rem;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary);
    border: 10px solid var(--primary);
}

.carousel-control-prev-icon {
    border-radius: 0 3rem 3rem 0;
}

.carousel-control-next-icon {
    border-radius: 3rem 0 0 3rem;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    padding-top: 12rem;
    padding-bottom: 6rem;
    background: url(../img/header.jpg) top left no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-weight: 500;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--tertiary);
}


/*** Facts ***/
.facts {
    /*background: linear-gradient(rgba(53, 94, 252, .95), rgba(53, 94, 252, .95)), url(../img/bg.png);*/
    background: linear-gradient(rgb(129 101 255 / 95%), rgb(0 53 255 / 90%)), url(../img/bg.png);
}


/*** Callback ***/
.callback {
    position: relative;
}

.callback::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 50%;
    top: 0;
    left: 0;
    /*background: linear-gradient(rgba(53, 94, 252, .95), rgba(53, 94, 252, .95)), url(../img/bg.png);*/
    background: linear-gradient(rgb(129 101 255 / 95%), rgb(0 53 255 / 90%)), url(../img/bg.png);
    z-index: -1;
}


/*** Feature ***/
.feature .feature-box,
.feature .feature-box * {
    transition: .5s;
}

.feature .feature-box:hover {
    background: var(--primary);
    border-color: var(--primary) !important;
}

.feature .feature-box:hover * {
    color: #FFFFFF !important;
}


/*** Service ***/
.service .nav .nav-link {
    transition: .5s;
}

.service .nav .nav-link.active {
    border-color: var(--primary) !important;
    background: var(--primary);
}

.service .nav .nav-link.active h5 {
    color: #FFFFFF !important;
}

.service .nav .nav-link.active h5 i {
    color: #FFFFFF !important;
}


/*** Project ***/
.project-item,
.project-item .project-img {
    position: relative;
}

.project-item .project-img a {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .5);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    opacity: 0;
    transition: .5s;
}

.project-item:hover .project-img a {
    opacity: 1;
}

.project-item .project-title {
    position: absolute;
    top: 3rem;
    right: 0;
    bottom: 0;
    left: 3rem;
    border: 1px solid var(--light);
    border-radius: 8px;
    display: flex;
    align-items: flex-end;
    padding: 18px;
    z-index: -1;
    transition: .5s;
}

.project-item:hover .project-title {
    background: var(--primary);
    border-color: var(--primary);
}

.project-item .project-title h4 {
    transition: .5s;
}

.project-item:hover .project-title h4 {
    color: #FFFFFF;
}

.project-carousel .owl-nav {
    margin-top: 25px;
    display: flex;
    justify-content: center;
}

.project-carousel .owl-nav .owl-prev,
.project-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: var(--light);
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

.project-carousel .owl-nav .owl-prev:hover,
.project-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    color: var(--light);
}


/*** Team ***/
.team-item {
    position: relative;
    padding: 4rem 0;
}

.team-item img {
    position: relative;
    z-index: 2;
}

.team-item .team-text {
    position: absolute;
    top: 0;
    right: 3rem;
    bottom: 0;
    left: 3rem;
    padding: 15px;
    border: 1px solid var(--light);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transition: .5s;
    z-index: 1;
}

.team-item:hover .team-text {
    background: var(--primary);
    border-color: var(--primary);
}

.team-item .team-text h4 {
    transition: .5s;
}

.team-item:hover .team-text h4 {
    color: #FFFFFF;
}

.team-item .team-social .btn {
    background: var(--light);
    color: var(--primary);
}

.team-item:hover .team-social .btn {
    background: #FFFFFF;
}

.team-item .team-social .btn:hover {
    background: var(--primary);
    color: var(--light);
}


/*** Testimonial ***/
.testimonial-item {
    position: relative;
    text-align: center;
    padding-top: 30px;
}

.testimonial-item .testimonial-text {
    position: relative;
    text-align: center;
}

.testimonial-item .testimonial-text .btn-square {
    position: absolute;
    width: 60px;
    height: 60px;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-item .testimonial-text::before {
    position: absolute;
    content: "";
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    border: 30px solid;
    border-color: var(--light) transparent transparent transparent;
}

.testimonial-item .testimonial-text::after {
    position: absolute;
    content: "";
    bottom: -59px;
    left: 50%;
    transform: translateX(-50%);
    border: 30px solid;
    border-color: #FFFFFF transparent transparent transparent;
}

.testimonial-carousel .owl-item img {
    margin: 0 auto;
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-dots {
    margin-top: 25px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 30px;
    height: 30px;
    border: 1px solid var(--light);
    border-radius: 30px;
    transition: .5s;
}

.testimonial-carousel .owl-dot::after {
    position: absolute;
    content: "";
    width: 16px;
    height: 16px;
    top: 6px;
    left: 6px;
    border-radius: 16px;
    background: var(--light);
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    border-color: var(--primary);
}

.testimonial-carousel .owl-dot.active::after {
    background: var(--primary);
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    color: var(--light);
    background: #000B1C;
}

.copyright a {
    color: var(--light);
}

.copyright a:hover {
    color: var(--primary);
}




















.gradient-background-header {
    height: clamp(5rem, 7vw, 9rem); /* Este es el valor base, para pantallas grandes */
    width: 100%;
    background: linear-gradient(21deg, #ddb5c2, #c9e6f8, #f0f0f6, #f0efff);
    background-size: 300% 300%;
    animation: gradient-animation 15s ease infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}











.gradient-background {
    height: 100vh;
    width: 100%;
    background: linear-gradient(21deg, #d4577f, #dbf1ff, #605eec, #605eec);
    background-size: 300% 300%;
    animation: gradient-animation 15s ease infinite;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
  }

  /* Contenedor del hero: ancho máximo y grid base (1 columna en móvil) */
  .gradient-background .content-container{
    width: min(1200px, 100%);
    margin: 0 auto;
    padding: clamp(16px, 4vw, 32px);
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: clamp(12px, 3vw, 32px);
  }
  
  .game-bar-love {
    height: 5rem;
    background-color: #e7c9f5;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .content-image {
    max-width: 21rem;
    transform: translateX(0%);
    user-select: none;
  }
  
  .cont-img-fluid { display: none !important; }
  
  .background-image { z-index: 1; width: min(80vw, 520px); height: auto; object-fit: contain; display: block; }
  
  .text-container {
    position: relative;
    /* z-index removido */
    text-align: center;
    color: #fff;
    user-select: none;
  }
  
  .home-title {
    font-size: clamp(1.75rem, 5vw, 3rem);
    line-height: 1.15;
    font-weight: bold;
    margin: 0 0 .75rem 0;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.25);
  }
  
  .home-slogan {
    font-size: clamp(1rem, 3.5vw, 1.5rem);
    line-height: 1.35;
    margin-top: .5rem;
  }
  
  .action-button {
    margin-top: 20px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
  }
  
  /* contenido de video/galería (opcional) */
  
  @keyframes gradient-animation {
    0% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
    100% {
      background-position: 0% 50%;
    }
  }
  
  @media (min-width: 1px) and (max-width: 480px) {
    .gradient-background-header{ height: clamp(3.5rem, 10vw, 7rem); }
    .gradient-background {
      height: 31rem;
      width: 100%;
      background: linear-gradient(21deg, #d4577f, #dbf1ff, #605eec, #605eec);
      background-size: 300% 300%;
      animation: gradient-animation 15s ease infinite;
      display: flex;
      justify-content: center;
      align-items: center;
      position: relative;
    }
  
    .content-image {
      display: flex;
      max-width: 21rem;
      /* no transform en móvil */
      margin: auto;
      justify-content: center;
    }
  
    img {
      max-width: 100%;
      height: auto;
      max-height: 18rem;
      display: block;
    }
  
    .content-container {
      width: 100%;
      height: 100%;
    }
  
    .background-image { position: relative; bottom: -14px; max-height: 60dvh; }
  
    .text-container {
      position: relative;
      /* z-index removido */
      text-align: center;
      color: #fff;
      justify-content: center;
      display: flex;
      flex-direction: column;
      bottom: 0;
      padding: 1rem;
      user-select: none;
    }
  
    .home-title {
      font-size: clamp(1.5rem, 7vw, 2rem);
      background-color: transparent;
      color: white;
      line-height: 1.2;
    }
  
    .home-slogan {
      font-size: clamp(.95rem, 4.2vw, 1.15rem);
      background-color: transparent;
      color: white;
      line-height: 1.25;
      margin-bottom: 1.25rem;
    }
  
    .action-button {
      margin-top: 16px;
      font-size: 1rem;
      padding: .6rem 1rem;
      display: flex;
      align-items: center;
      justify-self: center;
      width: auto;
      margin: 0 auto;
      z-index: 0;
    }
  }
  
  @media (min-width: 481px) and (max-width: 767px) {
    .gradient-background-header{ height: clamp(3.5rem, 8vw, 8rem); }
    .gradient-background { height: 34rem; }
    .gradient-background .content-container{ grid-template-columns: 1fr; }
    .gradient-background .background-image{ max-height: 65dvh; }
  
    .content-image {
      max-width: 21rem;
      /* no transform en este breakpoint */
      margin: auto;
    }
  
    .content-container {
      width: 100%;
      height: 100%;
    }
  
    .background-image { position: relative; bottom: -22px; }
  
    .text-container {
      position: relative;
      /* z-index removido */
      text-align: center;
      color: #fff;
      justify-content: center;
      display: flex;
      flex-direction: column;
      bottom: 0;
      padding: 1rem 1.25rem;
      user-select: none;
    }
  
    .home-title {
      font-size: clamp(1.6rem, 6vw, 2.1rem);
      background-color: transparent;
      color: white;
      line-height: 1.2;
    }
  
    .home-slogan {
      font-size: clamp(1rem, 4vw, 1.25rem);
      background-color: transparent;
      color: white;
      line-height: 1.3;
      margin-bottom: 1.5rem;
    }
  
    .action-button {
      margin-top: 20px;
      font-size: 1.2rem;
      display: flex;
      align-items: center;
      justify-self: center;
      /* text-align: -webkit-center; */
      width: 10rem;
      margin: auto;
      z-index: 0;
    }
  }
  



  @media (min-width: 768px) and (max-width: 1023px) {
    .gradient-background-header{ height: clamp(7.5rem, 7vw, 8.5rem); }
    .gradient-background { height: 37rem; }
    .gradient-background .content-container{ grid-template-columns: 1.1fr .9fr; }
    .gradient-background .text-container{ text-align: left; }
    .gradient-background .content-image{ justify-self: end; }
    .gradient-background .background-image{ max-width: min(60vw, 520px); max-height: 70dvh; }
  
    .content-image {
      max-width: 21rem;
      /* no transform */
      margin: auto;
    }
  
    .content-container {
      width: 100%;
      height: 100%;
    }
  
    .background-image {
      position: relative;
      bottom: -23px;
      left: 0;
    }
  
    .cont-t {
      display: flex;
      justify-content: flex-end;
      align-items: center;
    }
  
    .text-container { width: 30rem; position: relative; text-align: left; color: #fff; justify-content: center; display: flex; flex-direction: column; bottom: 0; padding: 1.25rem; user-select: none; margin: 0; }
  
    .home-title {
      font-size: 2.3rem;
      background-color: transparent;
      color: white;
      line-height: 3rem;
    }
  
    .home-slogan {
      font-size: 1.5rem;
      background-color: transparent;
      color: white;
      line-height: 1.2;
      margin-bottom: 2rem;
      padding: 1px 6.25rem 1px;
    }
  
    .action-button {
      margin-top: 20px;
      font-size: 1.2rem;
      display: flex;
      align-items: center;
      justify-self: center;
      /* text-align: -webkit-center; */
      width: 10rem;
      margin: auto;
    }
  }
  
  @media (min-width: 769px) and (max-width: 995px) {
    .gradient-background-header{ height: clamp(3.5rem, 5vw, 8rem); }
  }

  @media (min-width: 1024px) and (max-width: 1440px) {
    .gradient-background-header{ height: clamp(7.2rem, 6vw, 9rem); }
    .gradient-background { height: 41rem; }
    .gradient-background .content-container{ grid-template-columns: 1fr 1fr; }
    .gradient-background .text-container{ text-align: left; }
    .gradient-background .content-image{ justify-self: end; }
    .gradient-background .background-image{ max-width: min(40vw, 520px); max-height: calc(100dvh - 6rem); }
  
    .content-image {
      max-width: 21rem;
      /* no transform */
      margin: auto;
    }
  
    .content-container {
      width: 100%;
      height: 100%;
    }
  
    .background-image { position: relative; bottom: -1rem; left: 0; clip-path: inset(0 0 85px 0); }
  
    img { max-width: 100%; height: auto; display: block; }
  
    .cont-t {
      display: flex;
      justify-content: flex-end;
      align-items: center;
    }
  
    .cont-img-fluid {
      display: block;
      width: 78%;
      height: auto;
    }
  
    .text-container { width: 36rem; position: relative; text-align: left; color: #fff; justify-content: center; display: flex; flex-direction: column; bottom: 0; padding: 1.5rem; user-select: none; margin: 0; }
  
    .home-title {
      font-size: 3rem;
      background-color: transparent;
      color: white;
      line-height: 4rem;
    }
  
    .home-slogan {
      margin-top: 0rem;
      font-size: 1.5rem;
      background-color: transparent;
      color: white;
      line-height: 1.2;
      /* margen previo removido */
      padding: 1px 2rem 1px;
    }
  
    .action-button {
      margin-top: 20px;
      font-size: 1.2rem;
      display: flex;
      align-items: center;
      justify-self: center;
      /* text-align: -webkit-center; */
      width: 10rem;
      margin: auto;
    }
  }
  
  @media (min-width: 1441px) and (max-width: 2560px) {
    .gradient-background-header{ height: clamp(5rem, 5vw, 9rem); }
    .gradient-background { height: 50rem; }
    .gradient-background .content-container{ grid-template-columns: 1fr 1fr; }
    .gradient-background .text-container{ text-align: left; }
    .gradient-background .content-image{ justify-self: end; }
    .gradient-background .background-image{ max-width: min(40vw, 620px); max-height: calc(100dvh - 6rem); }
  
    .content-image {
      max-width: 21rem;
      /* no transform */
      margin: auto;
    }
  
    .content-container {
      width: 100%;
      height: 100%;
    }
  
    .background-image { position: relative; bottom: -1rem; left: 0; clip-path: inset(0 0 85px 0); }
  
    img { max-width: 100%; height: auto; display: block; }
  
    .cont-t {
      display: flex;
      justify-content: flex-end;
      align-items: center;
    }
  
    .cont-img-fluid {
      display: block;
      width: 78%;
      height: auto;
    }
  
    .text-container { width: 36rem; position: relative; text-align: left; color: #fff; justify-content: center; display: flex; flex-direction: column; bottom: 0; padding: 1.5rem; user-select: none; margin: 0; }
  
    .home-title {
      font-size: 3rem;
      background-color: transparent;
      color: white;
      line-height: 4rem;
    }
  
    .home-slogan {
      margin-top: 0rem;
      font-size: 1.5rem;
      background-color: transparent;
      color: white;
      line-height: 1.2;
      /* margen previo removido */
      padding: 1px 2rem 1px;
    }
  
    .action-button {
      margin-top: 20px;
      font-size: 1.2rem;
      display: flex;
      align-items: center;
      justify-self: center;
      /* text-align: -webkit-center; */
      width: 10rem;
      margin: auto;
    }
  }
  
  /* ------------------------------------------------------------------------------------------------------- Footer */
  .service-container {
    padding: 1rem;
    transition: background-color 0.3s;
  
    /* variantes de ejemplo */
    /* .coaching { background-color: #4caf50; color: #fff; }
       .hr { background-color: #f44336; color: #fff; } */
  }
  
  .service-content {
    margin-top: 1rem;
  }
  
  @import url(//fonts.googleapis.com/css?family=Lato:300:400);
  
  body {
    margin: 0;
  }
  
  h1 {
    font-family: "Lato", sans-serif;
    font-weight: 300;
    letter-spacing: 2px;
    font-size: 48px;
  }
  p {
    font-family: "Lato", sans-serif;
    letter-spacing: 1px;
    font-size: 14px;
    color: #ffffff;
  }
  
  .header {
    position: relative;
    text-align: center;
    background: linear-gradient(
      60deg,
      rgba(84, 58, 183, 1) 0%,
      rgba(0, 172, 193, 1) 100%
    );
    color: white;
  }
  .logo {
    width: 50px;
    fill: white;
    padding-right: 15px;
    display: inline-block;
    vertical-align: middle;
  }
  
  .inner-header {
    height: 65vh;
    width: 100%;
    margin: 0;
    padding: 0;
  }
  
  .flex {
    /*Flexbox for containers*/
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  
  .waves {
    position: relative;
    width: 100%;
    height: 15vh;
    margin-bottom: -7px; /*Fix for safari gap*/
    min-height: 100px;
    max-height: 150px;
  }
  
  .content {
    position: relative;
    height: 20vh;
    text-align: center;
    background-color: white;
  }
  
  /* Animation */
  
  .parallax > use {
    animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
  }
  .parallax > use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
  }
  .parallax > use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
  }
  .parallax > use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
  }
  .parallax > use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
  }
  @keyframes move-forever {
    0% {
      transform: translate3d(-90px, 0, 0);
    }
    100% {
      transform: translate3d(85px, 0, 0);
    }
  }
  /*Shrinking for mobile*/
  @media (max-width: 768px) {
    .waves {
      height: 40px;
      min-height: 40px;
    }
    .content {
      height: 30vh;
    }
    h1 {
      font-size: 24px;
    }
  }
  
  .animated-phrase {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  
  .heart {
    width: 1.5rem;
    height: 1.5rem;
    background-color: red;
    position: relative;
    display: inline-block;
    transform: rotate(-45deg);
    animation: heartbeat 0.8s infinite ease-in-out;
  }
  
  .heart::before,
  .heart::after {
    content: "";
    width: 1.5rem;
    height: 1.5rem;
    background-color: red;
    border-radius: 50%;
    position: absolute;
  }
  
  .heart::before {
    top: -0.75rem;
    left: 0;
  }
  
  .heart::after {
    left: 0.75rem;
    top: 0;
  }
  
  @keyframes heartbeat {
    0%,
    100% {
      transform: scale(1) rotate(-45deg);
    }
    50% {
      transform: scale(1.2) rotate(-45deg);
    }
  }
  
  .about-us {
    padding: 40px 20px;
    text-align: center;
  }
  
  .section-tag {
    font-size: 14px;
    color: purple;
    font-weight: bold;
  }
  
  .section-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  .about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: center;
  }
  
  .about-quote {
    background: rgba(120, 100, 200, 0.2);
    padding: 20px;
    border-radius: 8px;
    text-align: left;
  }
  
  .quote-icon {
    font-size: 40px;
    color: purple;
    font-weight: bold;
  }
  
  .quote-text {
    font-size: 18px;
    font-weight: bold;
  }
  
  .quote-author {
    margin-top: 10px;
    font-size: 14px;
    font-weight: normal;
  }
  
  .about-image img {
    width: 100%;
    border-radius: 8px;
  }
  
  .about-info {
    text-align: left;
  }
  
  .info-text {
    font-size: 16px;
  }
  
  .about-button {
    margin-top: 10px;
  }
  
  /* Responsivo */
  @media (max-width: 768px) {
    .about-container {
      grid-template-columns: 1fr;
      text-align: center;
    }
  
    .about-quote,
    .about-info {
      text-align: center;
    }
  }
  
  
  
  
  /* General */
  .about-section {
    background-color: white;
    padding: 60px 20px;
    text-align: center;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Grid */
  .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
  }
  
  /* Tarjetas */
  .card {
    background-color: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
    position: relative;
  }
  
  .card:hover {
    transform: translateY(-5px);
  }
  
  /* Líneas decorativas */
  .card::before {
    content: "";
    width: 60px;
    height: 2px;
    background-color: #6b4eff;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
  }
  
  /* Íconos */
  .card-icon {
    font-size: 40px;
    color: #6b4eff;
    margin-bottom: 15px;
  }
  
  /* Títulos */
  .card-header {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
  }
  
  /* Textos */
  .card-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
  }
  
  /* Botón */
  .cta-container {
    margin-top: 40px;
  }
  
  .cta-text {
    font-size: 16px;
    color: #4a4a4a;
    margin-bottom: 15px;
  }
  
  .cta-button {
    background-color: #6b4eff;
    color: white;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 50px;
    transition: background 0.3s;
  }
  
  .cta-button:hover {
    background-color: #4a32cc;
  }
  
  
  
  
  
  
  
  
  .statistics-section {
    width: 100%;
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  
  .statistics-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }
  
  .statistics-text {
    flex: 1;
    max-width: 50%;
    background: #FFF9E6;
    padding: 20px;
    border-radius: 10px;
    text-align: left;
    font-size: 1.2rem;
    font-weight: bold;
    color: #222;
  }
  
  .statistics-image {
    flex: 1;
    max-width: 50%;
    display: flex;
    justify-content: center;
  }
  
  .statistics-image img {
    width: 100%;
    height: auto;
    max-height: 320px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  /* Sección de datos */
  .statistics-data {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .stat {
    flex: 1;
    min-width: 280px;
    background: #F7D7E3;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: bold;
  }
  
  .stat h3 {
    font-size: 2rem;
    color: #E57373;
  }
  
  .stat p {
    font-size: 0.9rem;
    font-weight: normal;
    color: #333;
  }
  
  /* RESPONSIVE */
  @media (max-width: 768px) {
    .statistics-container {
        flex-direction: column;
        text-align: center;
    }
  
    .statistics-text, .statistics-image {
        max-width: 100%;
    }
  
    .statistics-data {
        flex-direction: column;
        align-items: center;
    }
  
    .stat {
        width: 100%;
    }
  }
  
  