/* Bono Casino Sin Deposito - Estilos Únicos 2025 */
/* Esquema de colores: Azul Marino + Cobre */

:root {
  --navy-dark: #0A1628;
  --navy-main: #1B2838;
  --navy-light: #2C3E50;
  --copper-main: #B87333;
  --copper-light: #CD853F;
  --copper-dark: #8B4513;
  --gold-accent: #D4AF37;
  --white: #FFFFFF;
  --gray-light: #ECF0F1;
  --gray-medium: #95A5A6;
}

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

body {
  font-family: 'Raleway', 'Open Sans', sans-serif;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-main) 100%);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Header */
header {
  background: rgba(10, 22, 40, 0.95);
  border-bottom: 3px solid var(--copper-main);
  padding: 1rem 0;
  position: relative;
  z-index: 1000;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo-section {
  display: flex;
  align-items: center;
  gap: 1rem;
}

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

.logo-text h1 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--copper-main);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.logo-text p {
  font-size: 0.9rem;
  color: var(--gray-light);
}

/* Navigation */
nav {
  display: flex;
  gap: 2rem;
  align-items: center;
}

nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 5px;
}

nav a:hover {
  color: var(--copper-main);
  background: rgba(184, 115, 51, 0.1);
}

.cta-button {
  background: linear-gradient(135deg, var(--copper-main), var(--gold-accent));
  color: var(--white) !important;
  padding: 0.75rem 2rem !important;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(184, 115, 51, 0.4);
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184, 115, 51, 0.6);
  background: linear-gradient(135deg, var(--gold-accent), var(--copper-main)) !important;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  width: 30px;
  height: 3px;
  background: var(--copper-main);
  transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(rgba(10, 22, 40, 0.8), rgba(27, 40, 56, 0.9)),
              url('../images/hero-principal.webp') center/cover no-repeat;
  border-bottom: 5px solid var(--copper-main);
}

.hero-content {
  max-width: 900px;
  z-index: 2;
}

.hero-content h2 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--copper-main);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  color: var(--gray-light);
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  letter-spacing: 1px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--copper-main), var(--gold-accent));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(184, 115, 51, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(184, 115, 51, 0.6);
}

.btn-secondary {
  background: transparent;
  color: var(--copper-main);
  border: 2px solid var(--copper-main);
}

.btn-secondary:hover {
  background: var(--copper-main);
  color: var(--white);
}

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

/* Section Titles */
.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--copper-main);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, var(--copper-main), var(--gold-accent));
  border-radius: 2px;
}

.section-title p {
  font-size: 1.1rem;
  color: var(--gray-light);
  max-width: 700px;
  margin: 1.5rem auto 0;
}

/* Games Grid */
.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.game-card {
  background: var(--navy-light);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.game-card:hover {
  transform: translateY(-10px);
  border-color: var(--copper-main);
  box-shadow: 0 10px 30px rgba(184, 115, 51, 0.3);
}

.game-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.game-card-content {
  padding: 1.5rem;
}

.game-card-content h3 {
  font-size: 1.5rem;
  color: var(--copper-main);
  margin-bottom: 0.75rem;
}

.game-card-content p {
  color: var(--gray-light);
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.game-card-content .btn-play {
  display: inline-block;
  background: linear-gradient(135deg, var(--copper-main), var(--gold-accent));
  color: var(--white);
  padding: 0.75rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.game-card-content .btn-play:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(184, 115, 51, 0.5);
}

/* Features Section */
.features-section {
  background: rgba(27, 40, 56, 0.5);
  padding: 4rem 0;
  margin: 4rem 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-item {
  text-align: center;
  padding: 2rem;
  background: var(--navy-light);
  border-radius: 15px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.feature-item:hover {
  border-color: var(--copper-main);
  transform: translateY(-5px);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--copper-main), var(--gold-accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.feature-item h3 {
  font-size: 1.3rem;
  color: var(--copper-main);
  margin-bottom: 0.75rem;
}

.feature-item p {
  color: var(--gray-light);
  font-size: 0.95rem;
}

/* Payment Methods */
.payment-methods {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.payment-icon {
  width: 100px;
  height: 100px;
  object-fit: contain;
  transition: all 0.3s ease;
  filter: brightness(0.9);
}

.payment-icon:hover {
  transform: scale(1.1);
  filter: brightness(1.1);
}

/* FAQ Section */
.faq-section {
  background: var(--navy-light);
  padding: 4rem 2rem;
  border-radius: 20px;
  margin: 4rem 0;
}

.faq-item {
  background: var(--navy-main);
  border-radius: 10px;
  margin-bottom: 1.5rem;
  overflow: hidden;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--copper-main);
}

.faq-question {
  padding: 1.5rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--copper-main);
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(184, 115, 51, 0.1);
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-question.active::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 1.5rem;
  color: var(--gray-light);
}

.faq-answer.active {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem;
}

/* Reviews Section */
.reviews-section {
  padding: 4rem 0;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.review-card {
  background: var(--navy-light);
  padding: 2rem;
  border-radius: 15px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.review-card:hover {
  border-color: var(--copper-main);
  transform: translateY(-5px);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.reviewer-name {
  font-weight: 700;
  color: var(--copper-main);
  font-size: 1.1rem;
}

.review-rating {
  color: var(--gold-accent);
  font-size: 1.2rem;
}

.review-location {
  color: var(--gray-medium);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.review-text {
  color: var(--gray-light);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.review-date {
  color: var(--gray-medium);
  font-size: 0.85rem;
  font-style: italic;
}

/* Footer */
footer {
  background: var(--navy-dark);
  border-top: 3px solid var(--copper-main);
  padding: 3rem 0 1rem;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: var(--copper-main);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-section ul li a {
  color: var(--gray-light);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-section ul li a:hover {
  color: var(--copper-main);
  padding-left: 5px;
}

.footer-section p {
  color: var(--gray-light);
  line-height: 1.8;
}

.footer-badges {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.footer-badges img {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--navy-light);
  color: var(--gray-medium);
  font-size: 0.9rem;
}

.footer-bottom p {
  margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy-dark);
    flex-direction: column;
    padding: 2rem;
    border-top: 2px solid var(--copper-main);
  }

  nav.active {
    display: flex;
  }

  .hero-content h2 {
    font-size: 2.5rem;
  }

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

  .section-title h2 {
    font-size: 2rem;
  }

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

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

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

  .footer-content {
    grid-template-columns: 1fr;
  }
}

/* Lazy Loading */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.3s ease;
}

img[loading="lazy"].loaded {
  opacity: 1;
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

/* Selection */
::selection {
  background: var(--copper-main);
  color: var(--white);
}
