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

    
body {
  font-family: 'Roxana Sierra', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background: none;
}

.main-container {
  display: flex;
  width: 950px;
  max-width: 98vw;
  align-items: center;
  justify-content: center;
  padding: 20px;
  flex-wrap: wrap;
  text-align: center;
  margin-top: 40px;
}

.main-container img {
  width: 210px;
  height: 210px;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 20px 0 0;
  display: block;
  margin-left: 50px;
  margin-right: 0;
}

.text-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: 15px;
  justify-content: flex-start;
  min-width: 220px;
}

.text-section h1 {
  font-size: 2.2rem;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  color: #020b47;
}

.text-section p {
  font-size: 1.1rem;
  margin-bottom: 0px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  color: #020b47;
}

.social-buttons {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  width: 100%;
  margin: 20px 0 0 0;
}

.social-buttons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: none;
  padding: 0;
  transition: transform 0.3s;
}

.social-buttons a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.social-buttons a:hover {
  transform: scale(1.2);
}

.button-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
  width: 950px;
  max-width: 98vw;
  z-index: 2;
  gap: 20px;
}

.button-container img {
  width: 110px;
  height: 110px;
  margin: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.button-container img:first-child:hover {
  content: url(casatpunohvr.png);
  cursor: progress;
  transform: scale(0.95);
}

/* --- VIDEO Y FONDO --- */
#video-fondo {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 100vw;
  min-height: 100vh;
  width: auto;
  height: auto;
  z-index: -1;
  object-fit: cover;
  opacity: 0.7;
}

#colina-fondo {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
  .main-container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 98vw;
    padding: 10px;
    margin-top: 20px;
  }
  .main-container img {
    margin: 0 0 20px 0;
    width: 210px;
    height: 210px;
  }
  .text-section {
    margin-left: 0;
    margin-top: 10px;
    width: 100%;
    align-items: center;
    display: flex;
    flex-direction: column;
  }
  .text-section h1 {
    order: 2;
    text-align: center;
  }
  .text-section p {
    order: 1;
    text-align: center;
    margin-bottom: 10px;
  }
}

@media (max-width: 600px) {
  .main-container {
    width: 100vw;
    padding: 5px;
    border-radius: 0;
    box-shadow: none;
    margin-top: 10px;
  }
  .main-container img {
    width: 210px;
    height: 210px;
  }
  .text-section {
    align-items: center;
    display: flex;
    flex-direction: column;
  }
  .text-section h1 {
    order: 2;
    font-size: 1.3rem;
    text-align: center;
  }
  .text-section p {
    order: 1;
    font-size: 1rem;
    text-align: center;
    margin-bottom: 10px;
  }
}