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

body {
  font-family: "Playfair Display", "Georgia", serif;
  background-color: #0a0a0a;
  color: #f5f5f5;
  line-height: 1.6;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* Hero Section */
.hero-section {
  height: 60vh;
  min-height: 500px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
      135deg,
      rgba(10, 10, 10, 0.8),
      rgba(212, 175, 55, 0.1)
    ),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23000" width="1200" height="600"/><g fill="%23d4af37" opacity="0.15"><circle cx="200" cy="100" r="3"/><circle cx="400" cy="200" r="2"/><circle cx="600" cy="150" r="4"/><circle cx="800" cy="300" r="3"/><circle cx="1000" cy="200" r="2"/><circle cx="300" cy="400" r="3"/><circle cx="700" cy="450" r="2"/><circle cx="900" cy="100" r="4"/></g></svg>');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 20px;
}

.hero-content {
  text-align: center;
  padding: 60px;
  max-width: 800px;
  width: 100%;
  backdrop-filter: blur(15px);
  background: rgba(10, 10, 10, 0.4);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.hero-content::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.05) 0%,
    transparent 70%
  );
  animation: rotate 20s linear infinite;
  pointer-events: none;
}

.hero-content > * {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 300;
  margin-bottom: 20px;
  letter-spacing: 3px;
  color: #d4af37;
  animation: fadeInUp 1.5s ease;
}

.hero-content p {
  font-size: 1.3rem;
  color: rgba(245, 245, 245, 0.9);
  font-weight: 300;
  letter-spacing: 1px;
  animation: fadeInUp 1.5s ease 0.3s both;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 40px;
  animation: fadeInUp 1.5s ease 0.6s both;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  flex: 1;
  min-width: 150px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 300;
  color: #d4af37;
  display: block;
}

.stat-label {
  font-size: 1rem;
  color: rgba(245, 245, 245, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Main Section */
.main-section {
  padding: 120px 40px;
  background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
  position: relative;
}

.main-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="0.5" fill="%23d4af37" opacity="0.02"/><circle cx="80" cy="80" r="0.3" fill="%23d4af37" opacity="0.03"/><circle cx="50" cy="50" r="0.4" fill="%23d4af37" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  pointer-events: none;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.section-title {
  font-size: 3.5rem;
  font-weight: 300;
  margin-bottom: 25px;
  color: #d4af37;
  letter-spacing: 2px;
  position: relative;
  text-align: center;
}

.section-subtitle {
  font-size: 1.3rem;
  color: rgba(245, 245, 245, 0.7);
  text-align: center;
  margin-bottom: 80px;
  font-style: italic;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

/* Testimonios Grid */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  margin-bottom: 120px;
}

.testimonial-card {
  background: linear-gradient(
    145deg,
    rgba(245, 245, 245, 0.05),
    rgba(212, 175, 55, 0.02)
  );
  backdrop-filter: blur(25px);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 25px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.03) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.testimonial-card:hover::before {
  opacity: 1;
  animation: rotate 15s linear infinite;
}

.testimonial-card:hover {
  transform: translateY(-15px) scale(1.02);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 30px 80px rgba(212, 175, 55, 0.1);
}

.testimonial-header {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}

.testimonial-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(45deg, #d4af37, #f4d03f);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  font-size: 1.8rem;
  color: #0a0a0a;
  font-weight: 500;
  position: relative;
  overflow: hidden;
}

.testimonial-avatar::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s ease;
}

.testimonial-card:hover .testimonial-avatar::before {
  left: 100%;
}

.testimonial-info h4 {
  font-size: 1.3rem;
  color: #f5f5f5;
  margin-bottom: 5px;
  font-weight: 400;
}

.testimonial-role {
  color: rgba(245, 245, 245, 0.7);
  font-size: 1rem;
  font-style: italic;
}

.testimonial-rating {
  display: flex;
  gap: 5px;
  margin-bottom: 20px;
}

.star {
  color: #d4af37;
  font-size: 1.2rem;
  animation: starTwinkle 2s ease-in-out infinite;
}

.star:nth-child(2) {
  animation-delay: 0.2s;
}

.star:nth-child(3) {
  animation-delay: 0.4s;
}

.star:nth-child(4) {
  animation-delay: 0.6s;
}

.star:nth-child(5) {
  animation-delay: 0.8s;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(245, 245, 245, 0.9);
  font-style: italic;
  position: relative;
}

.testimonial-text::before {
  content: '"';
  font-size: 4rem;
  color: rgba(212, 175, 55, 0.3);
  position: absolute;
  top: -10px;
  left: -10px;
  font-family: serif;
}

/* Noticias Section */
.news-section {
  margin-top: 100px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.news-card {
  background: linear-gradient(
    145deg,
    rgba(245, 245, 245, 0.05),
    rgba(212, 175, 55, 0.02)
  );
  backdrop-filter: blur(25px);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.news-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(212, 175, 55, 0.05),
    transparent
  );
  transition: left 0.8s ease;
}

.news-card:hover::before {
  left: 100%;
}

.news-card:hover {
  transform: translateY(-10px);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 30px 80px rgba(212, 175, 55, 0.15);
}

.news-image {
  height: 200px;
  background: linear-gradient(45deg, #d4af37, #f4d03f);
  position: relative;
  overflow: hidden;
}

.news-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.8),
    rgba(10, 10, 10, 0.3)
  );
}

.news-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(10, 10, 10, 0.8);
  color: #d4af37;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.news-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  color: rgba(10, 10, 10, 0.8);
}

.news-content {
  padding: 30px;
}

.news-date {
  color: rgba(245, 245, 245, 0.6);
  font-size: 0.9rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.news-title {
  font-size: 1.5rem;
  color: #d4af37;
  margin-bottom: 15px;
  font-weight: 400;
  line-height: 1.3;
}

.news-excerpt {
  color: rgba(245, 245, 245, 0.8);
  line-height: 1.6;
  margin-bottom: 20px;
}

.news-source {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(245, 245, 245, 0.7);
  padding-top: 20px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.source-icon {
  color: #d4af37;
}

/* Awards Section */
.awards-section {
  margin: 100px 0;
  padding: 80px;
  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.05),
    rgba(10, 10, 10, 0.8)
  );
  border-radius: 30px;
  border: 2px solid rgba(212, 175, 55, 0.2);
  position: relative;
  overflow: hidden;
}

.awards-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.03) 0%,
    transparent 70%
  );
  animation: rotate 30s linear infinite reverse;
  pointer-events: none;
}

.awards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  position: relative;
  z-index: 2;
}

.award-item {
  text-align: center;
  padding: 30px;
  background: rgba(245, 245, 245, 0.03);
  border-radius: 20px;
  border: 1px solid rgba(212, 175, 55, 0.1);
  transition: all 0.4s ease;
}

.award-item:hover {
  transform: translateY(-10px);
  border-color: rgba(212, 175, 55, 0.3);
  background: rgba(245, 245, 245, 0.05);
}

.award-icon {
  font-size: 3rem;
  color: #d4af37;
  margin-bottom: 20px;
  animation: float 3s ease-in-out infinite;
}

.award-icon:nth-child(odd) {
  animation-delay: 1s;
}

.award-title {
  font-size: 1.3rem;
  color: #d4af37;
  margin-bottom: 10px;
  font-weight: 400;
}

.award-year {
  color: rgba(245, 245, 245, 0.7);
  font-size: 1rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes starTwinkle {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

.scroll-fade {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-slide-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-slide-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.scroll-slide-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive Design - Improved Mobile Support */
@media (max-width: 1024px) {
  .hero-stats {
    gap: 40px;
  }

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

  .testimonials-grid,
  .news-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }
}

@media (max-width: 768px) {
  .hero-section {
    height: 70vh;
    min-height: 600px;
    background-attachment: scroll;
    padding: 15px;
  }

  .hero-content {
    padding: 40px 30px;
    border-radius: 20px;
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 3.2rem;
    margin-bottom: 25px;
    letter-spacing: 2px;
  }

  .hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }

  .hero-stats {
    flex-direction: column;
    gap: 25px;
    margin-top: 35px;
  }

  .stat-item {
    min-width: auto;
  }

  .stat-number {
    font-size: 2.8rem;
    margin-bottom: 5px;
  }

  .stat-label {
    font-size: 0.95rem;
    line-height: 1.3;
  }

  .section-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
  }

  .section-subtitle {
    font-size: 1.15rem;
    margin-bottom: 60px;
    padding: 0 15px;
  }

  .testimonials-grid,
  .news-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .testimonial-card,
  .news-content {
    padding: 30px 25px;
  }

  .awards-section {
    padding: 50px 30px;
    margin: 60px 0;
  }

  .awards-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
  }

  .main-section {
    padding: 80px 25px;
  }
}

@media (max-width: 480px) {
  .hero-section {
    height: 75vh;
    min-height: 650px;
    padding: 10px;
  }

  .hero-content {
    padding: 35px 25px;
    border-radius: 15px;
  }

  .hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    letter-spacing: 1px;
  }

  .hero-content p {
    font-size: 1.1rem;
  }

  .hero-stats {
    gap: 20px;
    margin-top: 30px;
  }

  .stat-number {
    font-size: 2.4rem;
  }

  .stat-label {
    font-size: 0.9rem;
  }

  .section-title {
    font-size: 2.2rem;
  }

  .section-subtitle {
    font-size: 1.05rem;
    margin-bottom: 50px;
  }

  .testimonial-card,
  .news-content {
    padding: 25px 20px;
  }

  .awards-section {
    padding: 40px 20px;
  }

  .awards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .main-section {
    padding: 60px 15px;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 320px) {
  .hero-content h1 {
    font-size: 2.4rem;
  }

  .stat-number {
    font-size: 2.2rem;
  }

  .stat-label {
    font-size: 0.85rem;
  }

  .hero-content {
    padding: 30px 20px;
  }
}

/* Scrollbar para navegadores basados en Webkit (Chrome, Edge, Safari) */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #d4af37, #b8941f);
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #ffdb70, #d4af37);
}

/* Para Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #d4af37 #0a0a0a;
}
