/*-----------------------------------*\
  #style.css
\*-----------------------------------*/

/**
 * copyright 2022 codewithsadee
 */





/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/

:root {

  /**
   * colors
   */

  --rich-black-fogra-29_50: hsl(210, 26%, 11%, 0.5);
  --rich-black-fogra-29-1: hsl(210, 26%, 11%);
  --rich-black-fogra-29-2: hsl(210, 50%, 4%);
  --silver-metallic: hsl(212, 9%, 67%);
  --coquelicot_20: hsla(38, 62%, 57%, 0.25);
  --coquelicot_10: hsla(38, 62%, 57%, 0.12);
  --sonic-silver: hsl(0, 0%, 47%);
  --cadet-gray: hsl(214, 15%, 62%);
  --light-gray: hsl(0, 0%, 80%);
  --coquelicot: hsl(38, 62%, 57%);
  --gainsboro: hsl(0, 0%, 88%);
  --white_20: hsl(0, 0%, 100%, 0.2);
  --white_10: hsl(0, 0%, 100%, 0.1);
  --black_10: hsl(0, 0%, 0%, 0.1);
  --white: hsl(0, 0%, 100%);

  /**
   * typography
   */

  --ff-catamaran: 'Catamaran', sans-serif;
  --ff-rubik: 'Rubik', sans-serif;

  --fs-1: 3.8rem;
  --fs-2: 3rem;
  --fs-3: 2.5rem;
  --fs-4: 2rem;
  --fs-5: 1.8rem;
  --fs-6: 1.5rem;

  --fw-900: 900;
  --fw-800: 800;
  --fw-700: 700;
  --fw-500: 500;

  /**
   * spacing
   */

  --section-padding: 80px;

  /**
   * shadow
   */

  --shadow-1: 0 0 20px var(--black_10);
  --shadow-2: 0px 10px 24px var(--coquelicot_20);

  /**
   * border radius
   */

  --radius-10: 10px;
  --radius-8: 8px;
  --radius-5: 5px;

  /**
   * transition
   */

  --transition-1: 0.25s ease;
  --transition-2: 0.5s ease;
  --cubic-in: cubic-bezier(0.51, 0.03, 0.64, 0.28);
  --cubic-out: cubic-bezier(0.33, 0.85, 0.4, 0.96);

}





/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

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

li {
  list-style: none;
}

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

a,
img,
span,
input,
button,
strong,
ion-icon {
  display: block;
}

img {
  height: auto;
}

input,
button {
  background: none;
  border: none;
  font: inherit;
}

input {
  width: 100%;
}

button {
  cursor: pointer;
}

ion-icon {
  pointer-events: none;
}

address {
  font-style: normal;
}

html {
  font-family: var(--ff-rubik);
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  background-color: var(--white);
  color: var(--sonic-silver);
  font-size: 1.6rem;
  line-height: 1.6;
}

:focus-visible {
  outline-offset: 4px;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background-color: var(--light-gray);
}

::-webkit-scrollbar-thumb {
  background-color: var(--coquelicot);
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--rich-black-fogra-29-1);
}





/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/

.container {
  padding-inline: 15px;
}

.section {
  padding-block: var(--section-padding);
}

.bg-dark {
  background-color: var(--rich-black-fogra-29-1);
  color: var(--silver-metallic);
}

.has-bg-image {
  background-repeat: no-repeat;
  background-position: top left;
}

.has-before,
.has-after {
  position: relative;
  z-index: 1;
}

.has-before::before,
.has-after::after {
  content: "";
  position: absolute;
}

.h1,
.h2,
.h3 {
  font-family: var(--ff-catamaran);
  line-height: 1.25;
}

.h1 {
  color: var(--white);
  font-size: var(--fs-1);
  font-weight: var(--fw-900);
}

.h2,
.h3 {
  color: var(--rich-black-fogra-29-1);
  font-weight: var(--fw-800);
}

.h2 {
  font-size: var(--fs-2);
}

.h3 {
  font-size: var(--fs-4);
}

.section-text {
  font-size: var(--fs-6);
}

.btn {
  max-width: max-content;
  font-size: var(--fs-6);
  text-transform: uppercase;
  font-weight: var(--fw-500);
  padding: 15px 35px;
  border-radius: var(--radius-8);
  transition: var(--transition-1);
}

.btn-primary {
  background-color: var(--coquelicot);
  color: var(--white);
}

.btn-primary:is(:hover, :focus) {
  background-color: var(--white);
  color: var(--coquelicot);
  box-shadow: var(--shadow-2);
}

.btn-secondary {
  background-color: var(--white);
  color: var(--coquelicot);
}

.btn-secondary:is(:hover, :focus) {
  background-color: var(--rich-black-fogra-29-1);
}

.w-100 {
  width: 100%;
}

.circle,
.abs-img {
  position: absolute;
}

.circle {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -56%);
  width: 100%;
  z-index: -1;
  animation: rotate360 15s linear infinite;
}

@keyframes rotate360 {
  0% {
    transform: translate(-50%, -56%) rotate(0);
  }

  100% {
    transform: translate(-50%, -56%) rotate(1turn);
  }
}

.circle-2 {
  animation-direction: reverse;
}

.hero-subtitle,
.section-subtitle {
  font-family: var(--ff-catamaran);
  font-weight: var(--fw-700);
  text-transform: uppercase;
  max-width: max-content;
}

.section-subtitle {
  background-color: var(--coquelicot_10);
  color: var(--coquelicot);
  padding: 8px 20px;
  border-radius: var(--radius-8);
}

.section-title {
  margin-block: 18px 35px;
}

.btn-link {
  --color: var(--white);

  color: var(--color);
  font-size: var(--fs-6);
  font-weight: var(--fw-500);
  text-transform: uppercase;
  max-width: max-content;
  transition: var(--transition-1);
}

.btn-link::before {
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color);
  transition: var(--transition-1);
}

.btn-link:is(:hover, :focus) {
  --color: var(--coquelicot);
}

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

.img-holder {
  aspect-ratio: var(--width) / var(--height);
  background-color: var(--light-gray);
  overflow: hidden;
}

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

.has-scrollbar {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  padding-block-end: 30px;
  scroll-snap-type: inline mandatory;
}

.scrollbar-item {
  min-width: 100%;
  scroll-snap-align: start;
}

.has-scrollbar::-webkit-scrollbar {
  height: 10px;
}

.has-scrollbar::-webkit-scrollbar-track,
.has-scrollbar::-webkit-scrollbar-thumb {
  border-radius: 50px;
}

.has-scrollbar::-webkit-scrollbar-thumb:hover {
  background-color: var(--coquelicot);
}

.has-scrollbar::-webkit-scrollbar-button {
  width: calc(25% - 25px);
}





/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/

.header .btn {
  display: none;
}

.header {
  background-color: var(--white);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding-block: 10px;
  box-shadow: var(--shadow-1);
  z-index: 4;
}

.header>.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  color: var(--rich-black-fogra-29-1);
  font-family: var(--ff-catamaran);
  font-size: 3.5rem;
  font-weight: var(--fw-900);
  display: flex;
  align-items: center;
  margin-inline-start: -8px;
}

.logo ion-icon {
  color: var(--coquelicot);
  font-size: 40px;
  transform: rotate(90deg) translate(-2px, -5px);
}

.nav-open-btn {
  background-color: var(--coquelicot);
  padding: 20px 15px;
  border-radius: var(--radius-8);
}

.nav-open-btn .line {
  background-color: var(--white);
  width: 30px;
  height: 3px;
}

.nav-open-btn .line:not(:last-child) {
  margin-block-end: 6px;
}

.nav-open-btn .line:nth-child(2) {
  width: 25px;
  margin-inline-start: auto;
}

.navbar {
  background-color: var(--coquelicot);
  color: var(--white);
  position: fixed;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  display: grid;
  place-content: center;
  visibility: hidden;
  transition: 0.25s var(--cubic-in);
}

.navbar.active {
  visibility: visible;
  transform: translateY(-100%);
  transition: 0.5s var(--cubic-out);
}

.nav-close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  background-color: var(--rich-black-fogra-29-1);
  color: var(--white);
  font-size: 40px;
  padding: 10px;
  border-radius: var(--radius-8);
}

.navbar-link {
  font-family: var(--ff-catamaran);
  font-size: var(--fs-4);
  text-align: center;
  padding-block: 10px;
  margin-block-end: 20px;
  transition: var(--transition-1);
}

.navbar-link:is(:hover, :focus, .active) {
  color: var(--rich-black-fogra-29-1);
}





/*-----------------------------------*\
  #HERO
\*-----------------------------------*/

.hero {
  color: var(--cadet-gray);
  text-align: center;
  padding-block-start: calc(var(--section-padding) + 80px);
  padding-block-end: 0;
  overflow: hidden;
}

.hero::after {
  bottom: 0;
  left: 0;
  width: 100%;
  height: 240px;
  background-color: var(--coquelicot);
  z-index: -1;
}

.hero-content {
  margin-block-end: 90px;
}

.hero-subtitle {
  background-color: var(--white_10);
  color: var(--white);
  margin-inline: auto;
  padding: 5px;
  padding-inline-end: 15px;
  border-radius: var(--radius-8);
}

.hero-subtitle .strong {
  display: inline-block;
  background-color: var(--coquelicot);
  padding: 2px 15px;
  margin-inline-end: 15px;
  border-radius: var(--radius-5);
}

.hero-title {
  margin-block: 30px 8px;
}

.hero .section-text {
  margin-block-end: 40px;
}

.hero .btn {
  margin-inline: auto;
}

.hero-banner {
  position: relative;
}

.abs-img-1 {
  top: 20px;
  right: -50px;
  width: 190px;
}

.abs-img-2 {
  bottom: -50px;
  left: -40px;
  width: 280px;
}

.hero .abs-img {
  animation: move 3s linear infinite alternate;
}

@keyframes move {
  0% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(-5px, 10px);
  }

  100% {
    transform: translate(5px, 20px);
  }
}

.hero .abs-img-2 {
  animation-direction: alternate-reverse;
}





/*-----------------------------------*\
  #ABOUT
\*-----------------------------------*/

.about {
  overflow: hidden;
}

.about-banner {
  margin-block-end: 50px;
}

.about-banner::after {
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: var(--coquelicot);
  border-radius: var(--radius-10);
  z-index: -2;
}

.about-banner .abs-img {
  bottom: 0;
  left: 0;
  z-index: -1;
  animation: moveUp 2.5s ease infinite;
}

@keyframes moveUp {

  0%,
  30%,
  60%,
  100% {
    transform: translateY(0);
  }

  20% {
    transform: translateY(-30px);
  }

  40% {
    transform: translateY(-15px);
  }
}

.about .section-text:not(:last-of-type) {
  margin-block-end: 0px;
}

.about .wrapper {
  margin-block-start: 30px;
}

.about-coach {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-block-end: 0px;
}

.about .coach-avatar {
  overflow: hidden;
  border-radius: 50%;
}

.about .coach-name {
  font-weight: var(--fw-700);
  margin-block-end: 5px;
}

.about .coach-title {
  font-size: var(--fs-6);
}

.about .btn-primary:is(:hover, :focus) {
  background-color: var(--rich-black-fogra-29-1);
  color: var(--white);
  box-shadow: none;
}


/*-----------------------------------*\
  #CLASS
\*-----------------------------------*/

.class {
  padding-block-start: calc(var(--section-padding) + 250px);
}

.class .section-subtitle {
  margin-inline: auto;
}

.class .section-title {
  color: var(--white);
}

.class-card {
  background-color: var(--white);
  border-radius: var(--radius-10);
  height: 100%;
  overflow: hidden;
}

.class-card .card-banner img {
  transition: var(--transition-2);
}

.class-card:is(:hover, :focus-within) .card-banner img {
  transform: scale(1.1);
}

.class-card .card-content {
  padding: 24px;
}

.class-card .title-wrapper {
  display: flex;
  align-items: center;
}

.class-card .title-icon {
  padding-inline-end: 20px;
  margin-inline-end: 20px;
  min-width: max-content;
  border-inline-end: 1px solid var(--gainsboro);
}

.class-card .card-title {
  transition: var(--transition-1);
}

.class-card .card-title:is(:hover, :focus) {
  color: var(--coquelicot);
}

.class-card .card-text {
  color: var(--sonic-silver);
  font-size: var(--fs-6);
  margin-block: 16px 12px;
}

.class-card .progress-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--ff-catamaran);
  color: var(--rich-black-fogra-29-1);
  font-size: var(--fs-6);
  font-weight: var(--fw-800);
  margin-block-end: 8px;
}

.class-card .progress-bg {
  background-color: var(--coquelicot_10);
  border-radius: 50px;
}

.class-card .progress-bar {
  background-color: var(--coquelicot);
  height: 10px;
  border-radius: inherit;
}





/*-----------------------------------*\
  #BLOG
\*-----------------------------------*/

.blog .section-subtitle {
  margin-inline: auto;
}

.blog-card {
  background-color: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius-10);
  height: 100%;
  overflow: hidden;
}

.blog-card .card-banner {
  position: relative;
}

.blog-card .card-banner img {
  transition: var(--transition-2);
}

.blog-card:is(:hover, :focus) .card-banner img {
  transform: scale(1.1);
}

.blog-card .card-meta {
  background-color: var(--coquelicot);
  color: var(--white);
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 8px 20px;
  font-size: var(--fs-6);
  font-weight: var(--fw-500);
  text-transform: uppercase;
}

.blog-card .card-content {
  padding: 25px;
}

.blog-card .card-title {
  transition: var(--transition-1);
}

.blog-card .card-title:is(:hover, :focus) {
  color: var(--coquelicot);
}

.blog-card .card-text {
  font-size: var(--fs-6);
  margin-block: 8px 12px;
}

.blog-card .btn-link {
  --color: var(--coquelicot);
}

.blog-card .btn-link:is(:hover, :focus) {
  --color: var(--rich-black-fogra-29-1);
}





/*-----------------------------------*\
  #FOOTER
\*-----------------------------------*/

.footer {
  font-size: var(--fs-6);
}

.footer-top .container {
  display: grid;
  gap: 50px;
}

.footer .logo {
  color: var(--white);
}

.footer-brand-text {
  margin-block: 25px;
}

.footer-top .wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 20px;
}

.footer-brand-list li:not(:last-child) {
  margin-block-end: 15px;
}

.footer-brand-title,
.footer-list-title {
  color: var(--white);
  font-family: var(--ff-catamaran);
}

.footer-list-title {
  font-size: var(--fs-4);
  font-weight: var(--fw-800);
  margin-block-end: 28px;
}

.footer-list-title::before {
  bottom: 0;
  width: 70px;
  height: 1px;
  background-color: var(--coquelicot);
}

.footer-list>li:not(:first-child) {
  margin-block-start: 12px;
}

.footer-link {
  transition: var(--transition-1);
}

.footer-link:not(.address):is(:hover, :focus) {
  color: var(--coquelicot);
}

.footer-list-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
}

.footer-list-item .icon {
  background-color: var(--coquelicot);
  color: var(--white);
  font-size: 24px;
  padding: 8px;
  border-radius: 50px;
}

.footer-form {
  position: relative;
  margin-block-end: 30px;
}

.footer-form .input-field {
  background-color: var(--white);
  color: var(--rich-black-fogra-29-1);
  padding-block: 18px;
  padding-inline: 30px 80px;
  border-radius: var(--radius-10);
}

.footer-form .btn {
  position: absolute;
  top: 5px;
  right: 5px;
  bottom: 5px;
  padding: 0;
  font-size: 26px;
  padding-inline: 12px;
}

.footer-form .btn-primary:is(:hover, :focus) {
  background-color: var(--rich-black-fogra-29-1);
  color: var(--white);
  box-shadow: none;
}

.social-list {
  display: flex;
  gap: 15px;
}

.social-link {
  background-color: var(--white_20);
  color: var(--white);
  padding: 13px;
  border-radius: 50%;
  transition: var(--transition-1);
}

.social-link:is(:hover, :focus) {
  background-color: var(--coquelicot);
}

.footer-bottom {
  background-color: var(--rich-black-fogra-29-2);
  color: var(--white);
  text-align: center;
  padding-block: 15px;
}

.copyright-link {
  display: inline-block;
  color: var(--coquelicot);
}

.footer-bottom-list {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-block-start: 10px;
}

.footer-bottom-link {
  padding-inline-start: 20px;
  transition: var(--transition-1);
}

.footer-bottom-link::before {
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 10px;
  height: 10px;
  background-color: var(--coquelicot);
  border-radius: 50%;
}

.footer-bottom-link:is(:hover, :focus) {
  color: var(--coquelicot);
}





/*-----------------------------------*\
  #BACK TO TOP
\*-----------------------------------*/

.back-top-btn {
  position: fixed;
  bottom: 20px;
  right: 40px;
  background-color: var(--coquelicot);
  color: var(--rich-black-fogra-29-1);
  font-size: 20px;
  padding: 11px;
  border-radius: 50%;
  border: 2px solid var(--rich-black-fogra-29-1);
  visibility: hidden;
  opacity: 0;
  transition: var(--transition-1);
  z-index: 4;
}

.back-top-btn.active {
  visibility: visible;
  opacity: 1;
  transform: translateY(-10px);
}





/*-----------------------------------*\
  #MEDIA QUERIES
\*-----------------------------------*/

/**
 * responsive for larger than 575px screen
 */

@media (min-width: 575px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-1: 5.8rem;
    --fs-2: 4rem;

  }



  /**
   * REUSED STYLE
   */

  .container {
    max-width: 540px;
    width: 100%;
    margin-inline: auto;
  }

  .hero-subtitle,
  .section-subtitle {
    font-size: var(--fs-5);
  }



  /**
   * HEADER
   */

  .header .container {
    max-width: unset;
    padding-inline: 30px;
  }



  /**
   * HERO
   */

  .hero-content {
    padding-inline: 40px;
  }

  .hero-subtitle .strong {
    padding-block: 6px;
  }

  .hero::after {
    height: 340px;
  }

  .abs-img-1 {
    top: 130px;
    right: -10px;
    width: 230px;
  }

  .abs-img-2 {
    bottom: 20px;
    left: -40px;
    width: 310px;
  }



  /**
   * ABOUT
   */

  .about .wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 40px;
  }

  .about-coach {
    margin-block-end: 0;
  }



  /**
   * VIDEO
   */

  .video-card .card-title {
    --fs-3: 3.5rem;
  }



  /**
   * FOOTER
   */

  .footer-top .container {
    grid-template-columns: 1fr 1fr;
    column-gap: 25px;
  }

}





/**
 * responsive for larger than 768px screen
 */

@media (min-width: 768px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-2: 4.5rem;

  }



  /**
   * REUSED STYLE
   */

  .container {
    max-width: 720px;
  }

  .scrollbar-item {
    min-width: calc(50% - 12.5px);
  }



  /**
   * HERO
   */

  .hero-banner {
    max-width: max-content;
    margin-inline: auto;
  }

  .abs-img-1 {
    top: 140px;
    right: 50px;
  }



  /**
   * FOOTER
   */

  .footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer-bottom-list {
    margin-block-start: 0;
  }

}





/**
 * responsive for larger than 992px screen
 */

@media (min-width: 992px) {

  /**
   * REUSED STYLE
   */

  .container,
  .header .container {
    max-width: 960px;
  }



  /**
   * HEADER
   */

  .nav-open-btn,
  .nav-close-btn {
    display: none;
  }

  .header .btn {
    display: block;
  }

  .header {
    background-color: transparent;
    box-shadow: none;
    padding-block: 30px;
    transition: var(--transition-1);
  }

  .header.active {
    transform: translateY(-100%);
    background-color: var(--white);
    padding-block: 20px;
    box-shadow: var(--shadow-1);
    animation: slideIn 0.5s ease forwards;
  }

  @keyframes slideIn {
    0% {
      transform: translateY(-100%);
    }

    100% {
      transform: translateY(0);
    }
  }

  .header .container {
    gap: 30px;
  }

  .header .logo {
    color: var(--white);
  }

  .header.active .logo {
    color: var(--rich-black-fogra-29-1);
  }

  .navbar,
  .navbar.active {
    all: unset;
    margin-inline-start: auto;
  }

  .navbar-list {
    display: flex;
    gap: 10px;
  }

  .navbar-link {
    color: var(--white);
    font-size: unset;
    padding: 0 10px;
    margin-block-end: 0;
  }

  .header.active .navbar-link {
    color: var(--rich-black-fogra-29-1);
  }

  .header .navbar-link:is(:hover, :focus, .active) {
    color: var(--coquelicot);
  }

  .header.active .btn {
    background-color: var(--coquelicot);
    color: var(--white);
  }

  .header.active .btn:is(:hover, :focus) {
    background-color: var(--rich-black-fogra-29-1);
  }



  /**
   * HERO
   */

  .hero {
    background-size: contain;
    text-align: left;
  }

  .hero::before {
    content: "";
    position: absolute;
    top: -1000px;
    left: -500px;
    width: 1500px;
    height: 1500px;
    background-image: radial-gradient(circle, var(--coquelicot_20) 20%, transparent 70% 100%);
    z-index: -1;
  }

  .hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 25px;
  }

  .hero-content {
    padding-inline: 0;
    margin-block-end: 0;
  }

  .hero-subtitle,
  .hero .btn {
    margin-inline: 0;
  }

  .hero::after {
    width: 330px;
    height: 100%;
    left: auto;
    right: 0;
  }



  /**
   * ABOUT
   */

  .about .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
  }

  .about-banner {
    margin-block-end: 0;
  }

  .about .wrapper {
    gap: 30px;
  }



  /**
   * FOOTER
   */

  .footer-top .container {
    grid-template-columns: 0.85fr 0.5fr 1fr 0.85fr;
    column-gap: 50px;
  }

}





/**
 * responsive for larger than 1200px screen
 */

@media (min-width: 1200px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-1: 7rem;
    --fs-2: 5.5rem;
    --fs-4: 2.2rem;
    --fs-5: 2rem;

    /**
     * spacing
     */

    --section-padding: 120px;

  }



  /**
   * REUSED STYLE
   */

  .container,
  .header .container {
    max-width: 1140px;
  }

  .btn {
    padding: 18px 45px;
    border-radius: var(--radius-10);
  }

  .section-subtitle {
    --fs-5: 2.2rem;
  }

  .has-scrollbar {
    gap: 30px;
  }

  .scrollbar-item {
    min-width: calc(33.33% - 20px);
  }



  /**
   * HEADER
   */

  .header .container {
    padding-inline: 0;
  }



  /**
   * HERO
   */

  .hero::after {
    width: 420px;
  }

  .hero .section-text {
    --fs-6: 1.8rem;
  }

  .abs-img-1 {
    top: 170px;
    right: -30px;
    width: 260px;
  }

  .abs-img-2 {
    bottom: 60px;
    left: -80px;
    width: 360px;
  }



  /**
   * ABOUT
   */

  .about .wrapper {
    gap: 40px;
  }



  /**
   * CLASS, BLOG
   */

  :is(.class-card, .blog-card) .card-content {
    padding: 30px;
  }

  .blog-card .card-meta {
    padding: 15px 30px;
  }



  /**
   * FOOTER
   */

  .footer-top .container {
    grid-template-columns: 1fr 0.6fr 0.9fr 1fr;
  }

}

.language-switcher {
  display: flex;
  gap: 10px;
  align-items: center;
}

.language-switcher img {
  width: 28px;
  height: auto;
  cursor: pointer;
  border-radius: 3px;
  transition: transform 0.2s ease;
}

.language-switcher img:hover {
  transform: scale(1.1);
}


.pricing-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  padding: 40px 20px;
  max-width: 1100px;
  margin: auto;
  font-family: 'Poppins', sans-serif;
}

.pricing-card {
  background: #0b0b0b;
  border-radius: 18px;
  padding: 25px 25px 30px;
  color: white;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform .4s ease, box-shadow .4s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .7);
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
}

.price {
  background: linear-gradient(135deg, #ffcc5c, #e5aa17);
  padding: 8px 15px;
  border-radius: 10px;
  color: #000;
  font-size: 1.3rem;
  font-weight: 800;
}

.card-body {
  margin-top: 20px;
  font-size: .95rem;
  opacity: .9;
}

.badge {
  background: #e5aa17;
  color: #000;
  display: inline-block;
  padding: 5px 10px;
  border-radius: 6px;
  font-size: .8rem;
  margin-top: 8px;
  font-weight: 700;
}

.btn {
  margin-top: 25px;
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 12px;
  border-radius: 10px;
  background: linear-gradient(135deg, #ffcc5c, #e5aa17);
  color: #000;
  font-size: 1rem;
  font-weight: 800;
  text-decoration: none;
  transition: .3s;
}

.btn:hover {
  filter: brightness(1.1);
}

/* ====== PRICING CARDS ====== */

.pricing-container {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.pricing-card {
  background: linear-gradient(145deg, #0c0c0c 0%, #141414 100%);
  border-radius: 18px;
  padding: 25px 22px 30px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, .7);
  position: relative;
  overflow: hidden;
  transition: .4s ease;
}

.pricing-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 204, 92, .25), transparent 50%);
  opacity: .7;
}

.pricing-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 25px 50px rgba(0, 0, 0, .9);
  border-color: #ffcc5c;
}

/* HEADER */
.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.card-title {
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: .5px;
}

/* PRICE TAG */
.price {
  background: linear-gradient(135deg, #ffcc5c, #e3a515);
  padding: 8px 14px;
  border-radius: 10px;
  color: #000;
  font-weight: 900;
  font-size: 1.2rem;
}

/* BODY TEXT */
.card-body {
  margin-top: 15px;
  font-size: .95rem;
  line-height: 1.5em;
  opacity: .9;
}

/* BADGE */
.badge {
  display: inline-block;
  background: #ffcc5c;
  color: #000;
  padding: 6px 10px;
  border-radius: 8px;
  font-weight: 800;
  font-size: .8rem;
  margin-top: 10px;
}

/* BUTTON */
.pricing-card .btn {
  margin-top: 22px;
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px 0;
  border-radius: 10px;
  font-weight: 900;
  background: linear-gradient(135deg, #ffcc5c, #e3a515);
  color: #000;
  text-decoration: none;
  transition: .3s;
}

.pricing-card .btn:hover {
  filter: brightness(1.12);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .pricing-container {
    gap: 18px;
  }

  .pricing-card {
    padding: 20px;
  }
}

/* Alinear header */
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* WhatsApp Verde */
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s;
}

.btn-whatsapp:hover {
  background: #1ebe57;
  transform: scale(1.1);
}

/* FLAGS */
.lang-item img {
  width: 28px;
  cursor: pointer;
  transition: .2s;
}

.lang-item img:hover {
  transform: scale(1.1);
}


.hide-link {
  display: none;
}


#class.section {
  padding-top: 50px;
  margin-top: -40px;
  /* si quieres subirla aún más, ajusta aquí */
}

.reviews-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 10px 0;
  scroll-behavior: smooth;
}

/* TARJETAS más estrechas */
.review-card {
  min-width: 75%;
  max-width: 75%;
  scroll-snap-align: center;
  background: rgba(0, 0, 0, .7);
  padding: 35px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .2);
  color: white;
  line-height: 1.75;
}

/* Texto más grande */
.review-text {
  font-size: 1.35rem;
  margin-bottom: 18px;
}

/* Usuario + estrellas */
.review-user {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
}

.rating {
  color: #D5A34D;
  letter-spacing: 2px;
}

/* ocultar scrollbar */
.reviews-slider::-webkit-scrollbar {
  display: none;
}

.reviews-slider {
  -ms-overflow-style: none;
  scrollbar-width: none;
}


.footer {
  background: #ffffff;
  color: #000;
  padding: 50px 0 30px;
}

.footer-container {
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 15px;
}

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

.footer-logo span {
  font-size: 1.4rem;
  font-weight: 700;
}

.footer-text {
  max-width: 500px;
  margin: 0 auto 20px;
  color: #333;
}

.footer-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 25px;
  padding: 0;
  margin-bottom: 25px;
}

.footer-links a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  transition: 0.2s;
}

.footer-links a:hover {
  color: #b8860b;
  /* dorado sutil */
}

.footer .copyright {
  font-size: 0.9rem;
  color: #555;
}


.hero {
  padding-block-start: calc(var(--section-padding) + 5px);
}

.about-instagram {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 40px;
  grid-column: 1 / -1;
}

/* 🔥 Tamaño reducido */
.about-instagram .instagram-media {
  max-width: 700px !important;
  /* ← hazlo más pequeño cambiando este número */
  width: 100% !important;
  margin: 0 auto !important;
  transform: scale(0.95);
  /* opcional: encoge un poco */
  transform-origin: center;
}

/* ❌ Sin bordes ni sombras */
.about-instagram blockquote.instagram-media {
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
}


.pricing-container {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* GOLD BAR */
.price-row {
  background: linear-gradient(135deg, #FFE499 0%, #E7AA51 45%, #AC7031 100%);
  border-radius: 18px;
  padding: 14px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 900;
  width: 50%;
}

/* Left text */
.price-row .label {
  font-size: 1.35rem;
  /* antes 1.05rem */
  color: #000;
  font-weight: 900;
  letter-spacing: .5px;
}

.price-row small {
  display: block;
  font-size: 1rem;
  /* antes 0.8rem */
  font-weight: 700;
}

/* Right price */
.price-row .amount {
  font-size: 2.4rem;
  /* antes 1.9rem */
  color: #000;
  font-weight: 900;
}

.with-colete {
  position: relative;
}

.with-colete::after {
  content: "";
  position: absolute;
  right: 180px;
  bottom: 0;
  width: 550px;
  height: 110%;
  background-image: url("../images/colete-3.png");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
  pointer-events: none;
}

.with-colete.section {
  padding-top: 30px;
  /* antes 80 + ajustes extras */
}

/* ====== PRICING RESPONSIVE ====== */

.pricing-container {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}

/* GOLD BAR */
.price-row {
  background: linear-gradient(135deg, #FFE499 0%, #E7AA51 45%, #AC7031 100%);
  border-radius: 18px;
  padding: 16px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 900;
  width: 50%;
}

/* Left text */
.price-row .label {
  font-size: 1.35rem;
  color: #000;
  font-weight: 900;
  letter-spacing: .5px;
}

.price-row small {
  display: block;
  font-size: 1rem;
  font-weight: 700;
}

/* Right price */
.price-row .amount {
  font-size: 2.4rem;
  color: #000;
  font-weight: 900;
}


/* ========= TABLET ========= */
@media (max-width: 992px) {
  .price-row {
    width: 70%;
  }
}


/* ========= MOBILE ========= */
@media (max-width: 768px) {

  .pricing-container {
    align-items: center;
  }

  .price-row {
    width: 100%;
  }

  .price-row .label {
    font-size: 1.1rem;
  }

  .price-row small {
    font-size: 0.9rem;
  }

  .price-row .amount {
    font-size: 1.9rem;
  }
}

/* ===== MOBILE: COLETE BACKGROUND ===== */
/* ===== MOBILE: COLETE MÁS GRANDE ===== */
@media (max-width: 768px) {

  .with-colete {
    position: relative;
  }

  .with-colete::after {
    right: 50%;
    bottom: 10px;
    transform: translateX(50%);

    /* 🔥 AUMENTAMOS TAMAÑO AQUÍ */
    width: 650px;
    /* antes 450px */
    height: 650px;
    /* antes 450px */

    background-position: center bottom;
    background-size: contain;

    z-index: 0;
    opacity: .28;
    /* puedes subirlo o bajarlo si quieres */
  }

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

  .pricing-container {
    position: relative;
    z-index: 3;
  }
}

.about-banner img.w-100:first-child {
  width: 40%;
  margin: 0 auto;
  display: block;
}

/* 📌 HERO IMAGE */
.hero-banner img {
  width: 85%;
  max-width: 520px;
  /* límite para pantallas grandes */
  margin: 0 auto;
  display: block;
}

/* 📱 Tablet */
@media (max-width: 992px) {
  .hero-banner img {
    width: 80%;
    max-width: 450px;
  }
}

/* 📱📱 Mobile */
@media (max-width: 768px) {
  .hero-banner img {
    width: 90%;
    /* un poco más grande para móvil */
    max-width: 380px;
  }
}

.hero {
  padding-block-start: 60px;
  /* antes era mucho más */
}

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

.logo-img {
  width: 80px;
  height: auto;
}


@media (max-width: 1350px) {

  .with-colete {
    position: relative;
  }

  .with-colete::after {
    right: 50%;
    bottom: 10px;
    transform: translateX(50%);
    width: 650px;
    height: 650px;
    background-position: center bottom;
    background-size: contain;
    z-index: 0;
    opacity: .28;
  }

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

  .pricing-container {
    position: relative;
    z-index: 3;
  }


  .pricing-container {
    align-items: center;
  }

  .price-row {
    width: 50%;
  }
}

.contact-box {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.contact-left,
.contact-right {
  width: 50%;
}

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

.contact-left input,
.contact-left textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact-left button {
  padding: 10px;
  border: none;
  background: #000;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
}

.contact-right {
  text-align: center;
}

.whatsapp-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  font-size: 18px;
  color: #25D366;
  transition: 0.3s ease;
}

.whatsapp-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s ease;
}

/* HOVER */
.whatsapp-btn:hover .whatsapp-icon {
  background: #1ebe57;
  transform: scale(1.08);
}

.whatsapp-btn:hover {
  color: #1ebe57;
}

.about-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* centra horizontal */
  justify-content: center;
  /* centra vertical */
  text-align: center;
}

.contact-left input,
.contact-left textarea {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 16px;
  outline: none;
  resize: none;
}

.contact-left textarea {
  min-height: 120px;
}

/* Desktop - dos columnas */
.contact-box {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 40px;
}

/* Que formulario y whatsapp ocupen la mitad */
.contact-left,
.contact-right {
  width: 50%;
}


/* Responsive - pantallas pequeñas */
@media (max-width: 768px) {
  .contact-box {
    flex-direction: column;
    align-items: center;
  }

  .contact-left,
  .contact-right {
    width: 100%;
  }

  .whatsapp-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

.footer-contact {
  margin-top: 1rem;
}

.footer-contact .contact-row {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  /* Permite que baje a otra línea si no cabe */
  justify-content: center;
  /* Centrado */
  align-items: center;
  text-align: center;
}

.footer-contact p {
  margin: 0;
  font-size: 0.95rem;
}

.footer-contact a {
  color: inherit;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

/* Responsive más pequeño */
@media (max-width: 600px) {
  .footer-contact .contact-row {
    flex-direction: column;
    gap: 0.4rem;
  }
}

/* Menos distancia entre los footer-links y la sección de contacto */
.footer-links {
  margin-bottom: 0.5rem;
  /* antes quizá era más grande */
}

/* Más distancia debajo del contacto y antes del copyright */
.footer-contact {
  margin-bottom: 2rem;
}

/* O directamente dar más espacio solo al copyright */
.footer .copyright {
  margin-top: 2rem;
}

/* Texto dentro de inputs y textarea */
#contact input,
#contact textarea {
  color: #ffffff !important;
  background: transparent;
  /* opcional */
  border: 1px solid #ffffff !important;
  /* opcional */
}

/* Placeholders blancos */
#contact input::placeholder,
#contact textarea::placeholder {
  color: #ffffff !important;
  opacity: 1;
}

/* Si usas data-i18n-placeholder (traducciones), fuerza también */
#contact input,
#contact textarea {
  caret-color: #ffffff;
  /* cursor blanco */
}

#reviews,
#contact {
  margin-top: -40px;
  /* súbelo más o menos según necesites */
  padding-top: 40px;
  /* opcional para mantener algo de respiración */
}

.prices-images {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 30px 0;
}

.price-img {
  width: 100%;
  height: auto;
  max-width: 450px;
  margin: 0 auto;
  border-radius: 8px;
  object-fit: contain;
}

.hero-title {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
  letter-spacing: 2px;
  color: #fff;
  text-align: center;
  line-height: 1.1;
}

/* Pequeño toque de glow suave estilo logo */
.hero-title {
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.15);
}

.section-title {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
}

.span {
  font-family: 'Orbitron', sans-serif;
  font-weight: 900;
}

.myPricesSwiper {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 30px auto;
}

.myPricesSwiper img {
  width: 100%;
  max-width: 350px;
  /* antes 450px */
  height: auto;
  margin: 10 auto;
  border-radius: 8px;
  object-fit: contain;
  display: block;
}

h1 {
  display: inline;
}


/* =========================
   SOLO MÓVIL
========================= */
@media (max-width: 768px) {

  /* ===== FIX BOTÓN CERRAR NAV ===== */
  .nav-close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    margin: 0;
    padding: 8px;
    z-index: 1001;
  }

  .back-top-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    /* por encima de todo */
  }

  .back-top-btn ion-icon {
    pointer-events: none;
  }

  .back-top-btn ion-icon {
    pointer-events: none;
  }

  html,
  body {
    overflow-x: hidden;
  }

  .span {
    font-size: 2.0rem;
    line-height: 1.1;
    letter-spacing: 0.3px;
  }

  body {
    padding-top: 50px;
  }

    .navbar-list {
    display: flex;
    flex-direction: column;
  }

  /* Contenedor de los idiomas */
  .lang-item {
    display: flex;
    justify-content: center;
    margin: 8px 0;
  }

  .lang-item img {
    width: 32px; /* ajusta si quieres */
    cursor: pointer;
  }

  .price-row {
    width: 100%;
    max-width: none;
  }

}