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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background: #f5f1e8;
  color: #8b4513;
}

/* Header com logo */
header {
  background: #faf8f3;
  color: #8b4513;
  padding: 1rem 2rem;
  box-shadow: 0 2px 10px rgba(139, 69, 19, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-left: -1rem;
  background: transparent;
  padding: 0.5rem;
  border-radius: 8px;
}

.logo-link:hover {
  background: rgba(218, 165, 32, 0.05);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.logo {
  height: 80px;
  width: 80px;
  border-radius: 50%;
  object-fit: cover;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
  border: 3px solid #faf8f3;
}

.logo-fallback {
  font-size: 1.1rem;
  font-weight: 800;
  color: #8b4513;
}

.brand-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: #8b4513;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

nav {
  display: flex;
  gap: 2rem;
  flex-shrink: 0;
}

nav a {
  color: #8b4513;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 0.7rem 1.2rem;
  border-radius: 8px;
}

nav a:hover {
  color: #daa520;
  background: rgba(218, 165, 32, 0.1);
  transform: translateY(-1px);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #daa520 0%, #b8860b 100%);
  color: white;
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::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="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.2;
}

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

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(139, 69, 19, 0.3);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.cta-btn {
  background: linear-gradient(135deg, #daa520 0%, #b8860b 100%);
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 69, 19, 0.4);
  background: linear-gradient(135deg, #b8860b 0%, #daa520 100%);
}

/* Sections */
section {
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #8b4513;
  position: relative;
}

section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, #daa520 0%, #b8860b 100%);
  border-radius: 2px;
}

/* Services - Index page */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  background: #faf8f3;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(139, 69, 19, 0.1);
  transition: all 0.3s ease;
  border: 2px solid #e6d7c3;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(139, 69, 19, 0.15);
  border-color: #daa520;
}

.card h3 {
  color: #8b4513;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.card h3::before {
  content: '✓';
  background: linear-gradient(135deg, #daa520 0%, #b8860b 100%);
  color: white;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: bold;
  flex-shrink: 0;
}

.card p {
  color: #a0522d;
  line-height: 1.7;
}

.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.card-link:hover .card {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(139, 69, 19, 0.15);
  border-color: #daa520;
}

/* Service Card - Asesorías page */
.service-card-container {
  max-width: 1200px;
  margin: 2rem auto 0;
  padding: 0 2rem;
}

.service-card {
  position: relative;
  background: #faf8f3;
  border: 2px solid #e6d7c3;
  border-radius: 18px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(139, 69, 19, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}

.service-card-content {
  flex: 1;
}

.service-card-image {
  flex-shrink: 0;
  text-align: center;
}

.service-card-image img {
  max-width: 300px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(139, 69, 19, 0.15);
  border: 2px solid #e6d7c3;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(135deg, #daa520 0%, #b8860b 100%);
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(139, 69, 19, 0.15);
  border-color: #daa520;
}

.service-card h3 {
  color: #8b4513;
  font-size: 1.9rem;
  margin-bottom: 1rem;
  text-align: center;
  letter-spacing: 0.3px;
}

.service-card h3::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  margin: 0.6rem auto 0;
  border-radius: 2px;
  background: linear-gradient(135deg, #daa520 0%, #b8860b 100%);
}

.service-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.service-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: #a0522d;
  line-height: 1.6;
}

.service-card li::before {
  content: '✓';
  background: linear-gradient(135deg, #daa520 0%, #b8860b 100%);
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: bold;
  flex-shrink: 0;
}

/* Banner image */
.banner-image {
  max-width: 1200px;
  margin: 1rem auto 0;
  padding: 0 2rem;
}

.banner-image img {
  display: block;
  width: auto;
  max-width: 75%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(139, 69, 19, 0.1);
  border: 2px solid #e6d7c3;
  margin: 0 auto;
  opacity: 0.3;
  filter: grayscale(100%);
  position: relative;
  z-index: -1;
}

/* Carruseles de Ebooks - Guías page */
.ebook-carousels {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.carousel-section {
  margin-bottom: 4rem;
}

.carousel-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #8b4513;
  position: relative;
}

.carousel-section h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, #daa520 0%, #b8860b 100%);
  border-radius: 2px;
}

.carousel-container {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(139, 69, 19, 0.15);
}

.carousel-track {
  display: flex;
  transition: transform 1.2s ease-in-out;
  gap: 0;
}

.carousel-slide {
  min-width: 100%;
  flex-shrink: 0;
  padding: 2rem;
  background: linear-gradient(135deg, #faf8f3 0%, #f5f1e8 100%);
  border: 2px solid #e6d7c3;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.ebook-cover {
  flex-shrink: 0;
  position: relative;
}

.ebook-cover img {
  width: 280px;
  height: 380px;
  object-fit: contain;
  object-position: center;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(139, 69, 19, 0.2);
  border: 3px solid #e6d7c3;
  background: #faf8f3;
}

.ebook-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: linear-gradient(135deg, #daa520 0%, #b8860b 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.ebook-info {
  flex: 1;
  text-align: left;
}

.ebook-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #8b4513;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.ebook-subtitle {
  font-size: 1.3rem;
  color: #a0522d;
  margin-bottom: 2rem;
  line-height: 1.4;
}

.ebook-cta {
  display: inline-block;
  background: linear-gradient(135deg, #daa520 0%, #b8860b 100%);
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.ebook-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 69, 19, 0.4);
  background: linear-gradient(135deg, #b8860b 0%, #daa520 100%);
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #8b4513;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(139, 69, 19, 0.2);
}

.carousel-nav:hover {
  background: white;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(139, 69, 19, 0.3);
}

.carousel-prev {
  left: 20px;
}

.carousel-next {
  right: 20px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e6d7c3;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: #daa520;
  transform: scale(1.2);
}

/* Cards específicas - Impulsa carrera page */
.card h2 {
  color: #8b4513;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  text-align: left;
  position: relative;
}

.card h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(135deg, #daa520 0%, #b8860b 100%);
  border-radius: 2px;
}

.card ul {
  list-style: none;
  padding: 0;
}

.card li {
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(139, 69, 19, 0.1);
  position: relative;
  padding-left: 2rem;
}

.card li:last-child {
  border-bottom: none;
}

.card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #daa520;
  font-weight: bold;
  font-size: 1.2rem;
}

.cta {
  text-align: center;
  margin: 3rem 0;
}

.cta button {
  background: linear-gradient(135deg, #daa520 0%, #b8860b 100%);
  color: white;
  padding: 1.2rem 2.5rem;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(139, 69, 19, 0.3);
}

.cta button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(139, 69, 19, 0.4);
  background: linear-gradient(135deg, #b8860b 0%, #daa520 100%);
}

/* Contact Form */
.contact-container {
  background: #faf8f3;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 20px 40px rgba(139, 69, 19, 0.1);
  max-width: 600px;
  margin: 0 auto;
  border: 2px solid #e6d7c3;
}

form {
  display: grid;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-weight: 600;
  color: #8b4513;
}

form input,
form textarea {
  padding: 1rem;
  border: 2px solid #e6d7c3;
  border-radius: 10px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #fff;
  color: #8b4513;
}

form input:focus,
form textarea:focus {
  outline: none;
  border-color: #daa520;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(218, 165, 32, 0.1);
}

form input::placeholder,
form textarea::placeholder {
  color: #a0522d;
  opacity: 0.7;
}

form button {
  background: linear-gradient(135deg, #daa520 0%, #b8860b 100%);
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(218, 165, 32, 0.3);
  background: linear-gradient(135deg, #b8860b 0%, #daa520 100%);
}

/* Contact Info Display */
.contact-info-main {
  display: grid;
  gap: 2rem;
  max-width: 600px;
  margin: 0 auto;
}

.contact-item-main {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  border: 2px solid #e6d7c3;
  transition: all 0.3s ease;
}

.contact-item-main:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(139, 69, 19, 0.15);
  border-color: #daa520;
}

.contact-item-main .contact-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.contact-details strong {
  color: #8b4513;
  font-size: 1.1rem;
  font-weight: 600;
}

.contact-details a {
  color: #a0522d;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.contact-details a:hover {
  color: #daa520;
  text-decoration: underline;
}

/* Footer */
footer {
  background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
  color: #f5f1e8;
  padding: 3rem 2rem;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  text-align: left;
}

.footer-section h3 {
  color: #daa520;
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.footer-section p {
  margin-bottom: 0.8rem;
  line-height: 1.6;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.social-links a {
  color: #f5f1e8;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.3s ease;
  padding: 0.8rem;
  border-radius: 8px;
}

.social-links a:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

.social-icon {
  width: 24px;
  height: 24px;
  transition: all 0.3s ease;
}

.social-links a:hover .social-icon {
  transform: scale(1.1);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.contact-item .contact-icon {
  width: 24px;
  height: 24px;
  transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
  transform: scale(1.1);
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(218, 165, 32, 0.3);
}

/* Responsive */
@media (max-width: 1024px) {
  .brand-name {
    font-size: 1.5rem;
  }

  nav {
    gap: 1.5rem;
  }

  nav a {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 900px) {
  .header-container {
    justify-content: space-between;
    gap: 1rem;
  }

  .brand-name {
    position: static;
    transform: none;
    text-align: center;
    margin: 0;
    font-size: 1.4rem;
    order: 2;
  }

  .logo-link {
    order: 1;
    margin-left: 0;
  }

  nav {
    order: 3;
    gap: 1rem;
  }

  nav a {
    padding: 0.4rem 0.8rem;
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    gap: 1rem;
    position: relative;
  }

  .brand-name {
    order: 2;
    margin: 1rem 0;
    font-size: 1.3rem;
  }

  .logo-link {
    order: 1;
  }

  nav {
    order: 3;
    gap: 1rem;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  section {
    padding: 2rem 1rem;
  }

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

  .contact-container {
    padding: 2rem;
    margin: 0 1rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .social-links {
    align-items: center;
  }

  .contact-info {
    align-items: center;
  }

  /* Contact Info Main responsive */
  .contact-item-main {
    flex-direction: column;
    text-align: center;
    padding: 1.2rem;
  }

  .contact-item-main .contact-icon {
    width: 35px;
    height: 35px;
  }

  .contact-details {
    align-items: center;
  }

  /* Service card responsive */
  .service-card {
    padding: 1.25rem;
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .service-card-image img {
    max-width: 250px;
  }

  /* Carruseles responsive */
  .carousel-slide {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
    padding: 1.5rem;
  }

  .ebook-cover img {
    width: 220px;
    height: 300px;
    object-fit: contain;
    object-position: center;
    background: #faf8f3;
  }

  .ebook-title {
    font-size: 1.8rem;
  }

  .ebook-subtitle {
    font-size: 1.1rem;
  }

  .carousel-nav {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .carousel-prev {
    left: 10px;
  }

  .carousel-next {
    right: 10px;
  }
}

/* Media queries específicas para móviles - Carrusel de ebooks */
@media (max-width: 480px) {
  .carousel-slide {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
    padding: 1rem;
  }

  .ebook-cover img {
    width: 180px;
    height: 240px;
    object-fit: contain;
    object-position: center;
    background: #faf8f3;
  }

  .ebook-title {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
  }

  .ebook-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .ebook-cta {
    padding: 0.8rem 1.5rem;
    font-size: 1rem;
  }

  .carousel-nav {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .carousel-dots {
    margin-top: 1rem;
  }
}

@media (max-width: 360px) {
  .carousel-slide {
    padding: 0.8rem;
  }

  .ebook-cover img {
    width: 150px;
    height: 200px;
    object-fit: contain;
    object-position: center;
    background: #faf8f3;
  }

  .ebook-title {
    font-size: 1.3rem;
  }

  .ebook-subtitle {
    font-size: 0.9rem;
  }

  .ebook-cta {
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
  }
}

/* Google Maps Widget */
.google-maps-widget {
  margin: 2rem 0;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(139, 69, 19, 0.1);
  border: 2px solid #e6d7c3;
  background: linear-gradient(135deg, #faf8f3 0%, #ffffff 100%);
}

.maps-placeholder {
  padding: 3rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, #faf8f3 0%, #ffffff 100%);
  position: relative;
}

.maps-placeholder::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="map-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23daa520" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23map-pattern)"/></svg>');
  opacity: 0.3;
}

.maps-content {
  position: relative;
  z-index: 2;
}

.maps-content h3 {
  color: #8b4513;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.maps-content p {
  color: #a0522d;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.rating-display {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.stars-large {
  font-size: 2.5rem;
  color: #daa520;
  letter-spacing: 3px;
  text-shadow: 0 2px 4px rgba(139, 69, 19, 0.2);
}

.rating-text {
  color: #8b4513;
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.8;
}

.more-reviews {
  text-align: center;
  margin: 2rem 0;
}

/* Testimonials Section */
#testimonios {
  background: linear-gradient(135deg, #faf8f3 0%, #f5f1e8 100%);
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Responsive Testimonials */
@media (max-width: 768px) {
  #testimonios {
    padding: 3rem 1rem;
  }
  
  /* Google Maps responsive */
  .maps-placeholder {
    padding: 2rem 1rem;
  }
  
  .maps-content h3 {
    font-size: 1.5rem;
  }
  
  .maps-content p {
    font-size: 1rem;
  }
  
  .stars-large {
    font-size: 2rem;
  }
}

/* Notificaciones */
@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.notification {
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
}