* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

body {
  background: #111;
  color: #fff;
  scroll-behavior: smooth;
}

/* NAV */
.nav {
  position: fixed;
  width: 100%;
  top: 0;
  background: rgba(0,0,0,0.95);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  z-index: 100;
  backdrop-filter: blur(10px);
}

.nav a {
  color: #fff;
  margin-left: 25px;
  text-decoration: none;
  transition: color 0.3s;
  font-weight: 500;
  font-size: 1rem;
}

.nav a:hover {
  color: #1db954;
}

.logo {
  font-weight: 900;
  font-size: 1.5rem;
  color: #1db954;
}

/* HERO */
.hero {
  height: 100vh;
  background: url("https://images.unsplash.com/photo-1554284126-aa88f22d8b74") center/cover;
  position: relative;
}

.hero-overlay {
  height: 100%;
  background: rgba(0,0,0,0.7);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero p {
  font-size: 1.5rem;
  color: #ccc;
  margin-bottom: 30px;
}

.btn {
  background: #1db954;
  padding: 18px 40px;
  border-radius: 50px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  transition: all 0.3s;
  display: inline-block;
  box-shadow: 0 6px 20px rgba(29, 185, 84, 0.3);
}

.btn:hover {
  background: #14833b;
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(29, 185, 84, 0.4);
}

/* SECTIONS */
.section {
  padding: 100px 40px;
  text-align: center;
}

.section h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: #fff;
}

.section-subtitle {
  color: #aaa;
  font-size: 1.2rem;
  margin-bottom: 50px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.dark {
  background: #0d0d0d;
}

.light {
  background: #f5f5f5;
  color: #111;
}

.light h2 {
  color: #111;
}

/* SERVICES */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 60px auto 0;
}

.card {
  background: #1c1c1c;
  padding: 35px 25px;
  border-radius: 15px;
  transition: all 0.3s;
  font-size: 1.1rem;
  border: 1px solid #333;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card:hover {
  transform: translateY(-10px);
  background: #252525;
  box-shadow: 0 15px 30px rgba(0,0,0,0.5);
  border-color: #1db954;
}

/* CARRUSEL MEJORADO */
.carousel-container {
  position: relative;
  max-width: 1200px;
  margin: 60px auto 0;
  display: flex;
  align-items: center;
  gap: 15px;
}

.carousel {
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

.carousel-track {
  display: flex;
  gap: 25px;
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  padding: 10px;
}

.carousel img {
  width: 280px;
  height: 350px;
  object-fit: cover;
  border-radius: 15px;
  flex-shrink: 0;
  transition: all 0.4s;
  border: 3px solid transparent;
}

.carousel img:hover {
  transform: scale(1.05);
  border-color: #1db954;
  box-shadow: 0 15px 35px rgba(29, 185, 84, 0.3);
}

/* BOTONES DEL CARRUSEL */
.carousel-btn {
  background: rgba(29, 185, 84, 0.9);
  color: white;
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 8px 20px rgba(29, 185, 84, 0.3);
}

.carousel-btn:hover {
  background: #14833b;
  transform: scale(1.1);
  box-shadow: 0 12px 30px rgba(29, 185, 84, 0.5);
}

/* PUNTOS DE NAVEGACIÓN DEL CARRUSEL */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #333;
  cursor: pointer;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.dot.active {
  background: #1db954;
  transform: scale(1.3);
  border-color: #1db954;
}

.dot:hover {
  background: #1db954;
  transform: scale(1.2);
}

/* VIDEO */
.video-container {
  max-width: 1000px;
  margin: 60px auto 0;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.7);
}

.video-container iframe {
  width: 100%;
  height: 560px;
  border: none;
  display: block;
}

/* SOCIALS */
.socials {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.socials a {
  display: inline-block;
  transition: all 0.3s;
}

.socials img {
  width: 70px;
  height: 70px;
  transition: 0.3s;
  filter: brightness(0.9);
  border-radius: 15px;
  padding: 10px;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.socials img:hover {
  transform: scale(1.2);
  filter: brightness(1);
}

/* FOOTER */
footer {
  background: #000;
  padding: 40px 20px;
  text-align: center;
  border-top: 1px solid #333;
}

footer p {
  margin: 10px 0;
  color: #aaa;
}

.footer-contact {
  margin-top: 20px;
}

.footer-contact a {
  color: #1db954;
  text-decoration: none;
  margin: 0 15px;
  font-weight: 500;
  transition: color 0.3s;
}

.footer-contact a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-contact i {
  margin-right: 8px;
}

/* =============================== */
/* SECCIÓN GOOGLE MAPS & RESEÑAS */
/* =============================== */

.google-reviews-section {
  padding: 100px 40px;
  background: #0d0d0d;
}

.google-reviews-section h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: #fff;
}

.google-business-profile {
  max-width: 1200px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}

@media (min-width: 992px) {
  .google-business-profile {
    grid-template-columns: 1fr 1fr;
  }
}

.map-container {
  background: #1c1c1c;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  border: 1px solid #333;
  height: fit-content;
}

.profile-info {
  background: #1c1c1c;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  border: 1px solid #333;
}

.profile-header {
  text-align: center;
  margin-bottom: 35px;
  padding-bottom: 25px;
  border-bottom: 1px solid #333;
}

.profile-header h3 {
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 20px;
  font-weight: 700;
}

.rating-overall {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.stars-large {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 2.2rem;
  color: #FFD700;
}

.rating-number {
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-left: 15px;
}

.review-count {
  color: #aaa;
  font-size: 1.2rem;
}

/* TARJETAS DE RESEÑAS */
.reviews-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 50px;
}

.review-card {
  background: #252525;
  padding: 30px;
  border-radius: 15px;
  border-left: 5px solid #1db954;
  transition: all 0.4s ease;
  border: 1px solid #333;
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.7);
  background: #2a2a2a;
  border-left-color: #1db954;
  border-color: #1db954;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.review-stars {
  color: #FFD700;
  font-size: 1.2rem;
}

.review-date {
  color: #aaa;
  font-size: 1rem;
}

.review-text {
  color: #eee;
  line-height: 1.7;
  margin-bottom: 25px;
  font-style: italic;
  font-size: 1.1rem;
}

.review-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.author-name {
  font-weight: 700;
  color: #fff;
  font-size: 1.1rem;
}

.read-more {
  color: #1db954;
  text-decoration: none;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
  font-weight: 600;
}

.read-more:hover {
  color: #14833b;
  text-decoration: underline;
  gap: 12px;
}

/* BOTÓN GOOGLE */
.view-all-container {
  text-align: center;
  margin-top: 40px;
}

.google-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  background: #1db954;
  color: white;
  padding: 20px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.2rem;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(29, 185, 84, 0.3);
  border: none;
  cursor: pointer;
}

.google-button:hover {
  background: #14833b;
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(29, 185, 84, 0.5);
  gap: 20px;
}

.google-button i {
  font-size: 1.4rem;
}

/* Para mantener consistencia con tu menú */
.nav a[href="#google-reviews"] {
  color: #1db954;
  font-weight: 700;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.8rem;
  }
  
  .hero p {
    font-size: 1.2rem;
  }
  
  .section {
    padding: 70px 20px;
  }
  
  .section h2 {
    font-size: 2.2rem;
  }
  
  .google-reviews-section h2 {
    font-size: 2rem;
  }
  
  .carousel-container {
    flex-direction: column;
  }
  
  .carousel-btn {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  
  .prev-btn {
    left: 10px;
  }
  
  .next-btn {
    right: 10px;
  }
  
  .carousel img {
    width: 240px;
    height: 300px;
  }
  
  .video-container iframe {
    height: 300px;
  }
  
  .nav {
    padding: 12px 20px;
    flex-wrap: wrap;
  }
  
  .nav a {
    margin-left: 15px;
    font-size: 0.9rem;
  }
  
  .socials {
    gap: 30px;
  }
  
  .socials img {
    width: 60px;
    height: 60px;
  }
  
  .profile-info {
    padding: 25px;
  }
  
  .review-author {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .google-button {
    width: 100%;
    padding: 18px 30px;
    font-size: 1.1rem;
  }
  
  .map-container {
    padding: 15px;
  }
}

@media (min-width: 769px) and (max-width: 991px) {
  .google-business-profile {
    grid-template-columns: 1fr;
    max-width: 800px;
  }
  
  .carousel img {
    width: 250px;
    height: 320px;
  }
}