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

body {

  font-family: "Oswald", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fafafa;
}
main{
  padding-top: 67px;
}
img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn-primary {
  display: inline-block;
  background-color: #ae7c33;
  color: #fff;
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
}

.btn-primary:hover {
  opacity: 0.9;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.btn-secondary {
  display: inline-block;
  background-color: transparent;
  color: #ae7c33;
  padding: 12px 24px;
  border: none;
  border-radius: 4px;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
  border: 1px solid #ae7c33;
}

.btn-secondary:hover {
  opacity: 0.9;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: rgba(27, 24, 22, 0.95);
  z-index: 1000;
  padding: 20px 0;
  display: none;
}

.cookie-banner.active {
  display: block;
}

.cookie-banner .cookie-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  color: #fff;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.cookie-banner .cookie-content h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.cookie-banner .cookie-content p {
  margin-bottom: 20px;
}

.cookie-banner .cookie-content p a {
  color: #ae7c33;
  text-decoration: underline;
}

.cookie-banner .cookie-content .cookie-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
}

header {
  background-color: #1b1816;
  color: #fff;
  padding: 15px 0;
  position: fixed;
  z-index: 100;
  width: 100%;
}

header .nav-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .logo {
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

header .logo a {
  color: #fff;
}

header nav .nav-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;

  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: row;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}

header nav .nav-menu li {
  position: relative;
}

header nav .nav-menu li a {
  color: #fff;
  font-weight: 400;
  font-size: 16px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

header nav .nav-menu li a:hover {
  color: #ae7c33;
}

header .hamburger {
  display: none;
  cursor: pointer;
}

header .hamburger .bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  background-color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.hero {
  background-color: #1b1816;
  background-image: url(./assets/hero.jpg);
  color: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(27, 24, 22, 0.7)), to(rgba(27, 24, 22, 0.9))), url("./assets/hero-bg.jpg");
  background: linear-gradient(rgba(27, 24, 22, 0.7), rgba(27, 24, 22, 0.9)), url("./assets/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero h1 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 25px;
  font-weight: 600;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
  font-weight: 300;
  max-width: 90%;
}

.resultados {

  padding: 70px 0;
  background: linear-gradient(180deg, #140e08 0%, #573113 100%);

}

.resultados h2 {
  font-size: 32px;
  margin-bottom: 20px;
  text-align: center;
  color: #fff;
}

.resultados p {
  color: #fff;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.resultados .resultados-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.resultados .resultados-grid .resultado-item {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 4px;
  border-left: 4px solid #ae7c33;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.resultados .resultados-grid .resultado-item:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.resultados .resultados-grid .resultado-item h3 {
  font-size: 20px;
  font-weight: 500;
}

.clases {
  padding: 70px 0;
  background: linear-gradient(180deg, #140e08 0%, #573113 100%);
}

.clases h2 {
  color: #fff;
  font-size: 32px;
  margin-bottom: 20px;
  text-align: center;
}

.clases h2~ p {
  color: #fff;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.clases .programas-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.clases .programas-grid .programa-item {
  background-color: #fff;
  padding: 30px;
  border-radius: 4px;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.clases .programas-grid .programa-item:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.clases .programas-grid .programa-item h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #ae7c33;
}

.clases .programas-grid .programa-item p {
  text-align: left;
  margin: 0 0 20px;
  font-size: 16px;
}

.clases .programas-grid .programa-item a {
  margin-top: auto;
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.filosofia {
  background: linear-gradient(180deg, #140e08 0%, #573113 100%);
  color: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}



.filosofia .filosofia-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.filosofia .filosofia-content h2 {
  font-size: 32px;
  margin-bottom: 25px;
  text-align: center;
}

.filosofia .filosofia-content p {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 300;
}

.filosofia .filosofia-content p:last-child {
  margin-bottom: 0;
}

.metodologia {
  padding: 70px 0;
  background: linear-gradient(180deg, #140e08 0%, #573113 100%);
}

.metodologia h2 {
  color: #fff;
  font-size: 32px;
  margin-bottom: 20px;
  text-align: center;
}

.metodologia h2~ p {
  color: #fff;
  text-align: center;
  max-width: 800px;
  margin: 0 auto 40px;
}

.metodologia .metodologia-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
      grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.metodologia .metodologia-grid .metodologia-item {
  padding: 30px;
  background-color: #f9f9f9;
  border-radius: 4px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.metodologia .metodologia-grid .metodologia-item:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.metodologia .metodologia-grid .metodologia-item h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 15px;
  color: #ae7c33;
}

.metodologia .metodologia-grid .metodologia-item p {
  text-align: left;
  margin: 0;
}

.comunidad {
  padding: 70px 0;
  background: linear-gradient(180deg, #140e08 0%, #573113 100%);
}

.comunidad .container {
  max-width: 800px;
}

.comunidad h2 {
  color: #fff;
  font-size: 32px;
  margin-bottom: 25px;
  text-align: center;
}

.comunidad h2~ p {
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
}

.comunidad p:last-of-type {
  margin-bottom: 30px;
}

.comunidad .btn-primary {
  display: block;
  max-width: 300px;
  margin: 0 auto;
}

.presencia {
  background: linear-gradient(180deg, #140e08 0%, #573113 100%);
  color: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}


.presencia .presencia-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.presencia .presencia-content h2 {
  font-size: 32px;
  margin-bottom: 25px;
}

.presencia .presencia-content p {
  margin-bottom: 30px;
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
}

.presencia .presencia-content .btn-primary {
  display: inline-block;
}

.contacto {
  padding: 70px 0;
  background: linear-gradient(180deg, #140e08 0%, #573113 100%);
}

.contacto h2 {
  color: #fff;
  font-size: 32px;
  margin-bottom: 20px;
  text-align: center;
}

.contacto h2~ p {
  color: #fff;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.contacto p:last-of-type {
  margin-bottom: 40px;
}

.contacto form {
  max-width: 600px;
  margin: 0 auto;
}

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

.contacto form .form-group input {
  width: 100%;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: "Oswald", sans-serif;
  font-size: 16px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.contacto form .form-group input:focus {
  outline: none;
  border-color: #ae7c33;
}

.contacto form .form-group input::-webkit-input-placeholder {
  color: #999;
}

.contacto form .form-group input:-ms-input-placeholder {
  color: #999;
}

.contacto form .form-group input::-ms-input-placeholder {
  color: #999;
}

.contacto form .form-group input::placeholder {
  color: #999;
}

.contacto form button {
  width: 100%;
  padding: 15px;
  font-size: 18px;
}

footer {
  background-color: #1b1816;
  color: #fff;
  padding: 40px 0;
}

footer .footer-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

footer .footer-content .footer-info p {
  margin-bottom: 10px;
  font-size: 14px;
}

footer .footer-content .footer-info p a {
  color: #ae7c33;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

footer .footer-content .footer-info p a:hover {
  text-decoration: underline;
}

footer .footer-content .footer-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

footer .footer-content .footer-links a {
  color: #ae7c33;
  font-size: 12px;
  margin-bottom: 10px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

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

footer .footer-content .footer-links p {
  font-size: 12px;
  color: #888;
}

@media (max-width: 1024px) {
  .resultados-grid,
  .programas-grid,
  .metodologia-grid {
    -ms-grid-columns: 1fr;
        grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  header .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background-color: #1b1816;
    width: 100%;
    text-align: center;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    z-index: 100;
  }
  header .nav-menu.active {
    left: 0;
    flex-direction: column;
  }
  header .nav-menu li {
    margin: 15px 0;
  }
  header .hamburger {
    display: block;
  }
  header .hamburger.active .bar:nth-child(1) {
    -webkit-transform: translateY(8px) rotate(45deg);
            transform: translateY(8px) rotate(45deg);
  }
  header .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  header .hamburger.active .bar:nth-child(3) {
    -webkit-transform: translateY(-8px) rotate(-45deg);
            transform: translateY(-8px) rotate(-45deg);
  }
  .hero {
    padding: 60px 0;
  }
  .hero h1 {
    font-size: 32px;
  }
  .hero p {
    font-size: 16px;
  }
  .resultados,
  .clases,
  .filosofia,
  .metodologia,
  .comunidad,
  .presencia,
  .contacto {
    padding: 50px 0;
  }
  .resultados h2,
  .clases h2,
  .filosofia h2,
  .metodologia h2,
  .comunidad h2,
  .presencia h2,
  .contacto h2 {
    font-size: 28px;
  }
  .footer-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer-content .footer-info {
    margin-bottom: 20px;
  }
  .footer-content .footer-links {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.contact-page,.success,.privacy{
  min-height: 80dvh;
}
.privacy{
  padding-top: 50px;
  padding-bottom: 50px;
}
.success{
  background-image: url(./assets/hero.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  .container{
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: center;
    align-items: flex-start;
    padding-top: 50px;
  }
}