/* Reset y base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Utilidades */
.desktop-only {
  display: none;
}

@media (min-width: 768px) {
  .desktop-only {
    display: block;
  }
}

/* Botones */
.btn {
  display: inline-block;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background: #dc2626;
  color: white;
}

.btn-primary:hover {
  background: #b91c1c;
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-light {
  background: white;
  color: #0f766e;
}

.btn-light:hover {
  background: #f0f9ff;
}

.btn-outline-light {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn-large {
  padding: 16px 32px;
  font-size: 18px;
}

.btn-full {
  width: 100%;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e5e7eb;
  z-index: 1000;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.nav-menu {
  display: none;
  gap: 24px;
}

.nav-menu a {
  text-decoration: none;
  color: #374151;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: #dc2626;
}

@media (min-width: 768px) {
  .nav-menu {
    display: flex;
  }
}

.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: #374151;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: white;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.2;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 48px;
}

@media (min-width: 640px) {
  .hero h1 {
    font-size: 3.5rem;
  }

  .hero-buttons {
    flex-direction: row;
    justify-content: center;
  }
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 4rem;
  }
}

.hero-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 400px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.3);
  padding: 24px;
  border-radius: 12px;
}

@media (min-width: 768px) {
  .hero-services {
    grid-template-columns: repeat(4, 1fr);
    max-width: 600px;
  }
}

.service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.service-icon {
  font-size: 2rem;
}

/* Secciones */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: #1f2937;
}

.section-header p {
  font-size: 1.125rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .section-header h2 {
    font-size: 3rem;
  }
}

/* Fechas y Destinos */
.dates-section {
  background: linear-gradient(135deg, #0f766e, #1e40af);
  color: white;
  padding: 80px 0;
}

.dates-section .section-header h2,
.dates-section .section-header p {
  color: white;
}

.destinations-grid {
  display: grid;
  gap: 32px;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .destinations-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.destination-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 32px;
  border-radius: 12px;
  text-align: center;
  backdrop-filter: blur(10px);
}

.destination-number {
  width: 64px;
  height: 64px;
  background: #dc2626;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 16px;
}

.destination-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.cta-center {
  text-align: center;
}

/* Feria de Cantón */
.canton-section {
  padding: 80px 0;
  background: white;
}

.two-column {
  display: grid;
  gap: 48px;
  align-items: center;
}

@media (min-width: 768px) {
  .two-column {
    grid-template-columns: 1fr 1fr;
  }
}

.section-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.canton-section h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 24px;
  color: #1f2937;
}

.canton-section p {
  font-size: 1.125rem;
  color: #4b5563;
  margin-bottom: 16px;
}

.highlight {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0f766e;
  margin-bottom: 24px;
}

/* Servicios */
.services-section {
  background: #f9fafb;
  padding: 80px 0;
}

.services-grid {
  display: grid;
  gap: 32px;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-card {
  background: white;
  padding: 32px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.service-icon-large {
  font-size: 3rem;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.pricing-card {
  background: #0f766e;
  color: white;
  padding: 48px;
  border-radius: 12px;
}

.pricing-content {
  display: grid;
  gap: 32px;
  align-items: center;
}

@media (min-width: 768px) {
  .pricing-content {
    grid-template-columns: 1fr auto;
  }
}

.pricing-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.pricing-info ul {
  list-style: none;
  space-y: 12px;
}

.pricing-info li {
  margin-bottom: 12px;
}

.pricing-price {
  text-align: center;
}

.price {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.pricing-price p {
  opacity: 0.8;
  margin-bottom: 24px;
}

/* Itinerario */
.itinerary-section {
  padding: 80px 0;
}

.timeline {
  max-width: 800px;
  margin: 0 auto;
}

.timeline-item {
  display: grid;
  gap: 24px;
  margin-bottom: 48px;
  align-items: center;
}

@media (min-width: 768px) {
  .timeline-item {
    grid-template-columns: auto 1fr;
  }
}

.timeline-number {
  width: 64px;
  height: 64px;
  background: #0f766e;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .timeline-number {
    margin: 0;
  }
}

.timeline-content {
  display: grid;
  gap: 24px;
  align-items: center;
}

@media (min-width: 768px) {
  .timeline-content {
    grid-template-columns: 1fr 1fr;
  }
}

.timeline-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
}

.timeline-text h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f766e;
  margin-bottom: 12px;
}

/* Equipo */
.team-section {
  background: #f9fafb;
  padding: 80px 0;
}

.team-grid {
  display: grid;
  gap: 32px;
}

@media (min-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.team-card {
  background: white;
  padding: 32px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.team-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 16px;
}

.team-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.team-role {
  color: #6b7280;
  font-weight: 500;
  margin-bottom: 12px;
}

.team-contact {
  color: #0f766e;
  font-weight: 600;
  margin-top: 12px;
}

/* Testimonios */
.testimonials-section {
  padding: 80px 0;
}

.testimonials-grid {
  display: grid;
  gap: 32px;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: white;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.stars {
  color: #fbbf24;
  font-size: 1.25rem;
  margin-bottom: 16px;
}

.testimonial-card p {
  color: #4b5563;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 48px;
  height: 48px;
  background: #f3f4f6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.testimonial-author strong {
  display: block;
  font-weight: 600;
}

.testimonial-author span {
  color: #6b7280;
  font-size: 0.875rem;
}

/* FAQ */
.faq-section {
  background: #f9fafb;
  padding: 80px 0;
}

.faq-tabs {
  max-width: 800px;
  margin: 0 auto;
}

.tab-buttons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  background: #e5e7eb;
  border-radius: 8px;
  padding: 4px;
  margin-bottom: 32px;
}

.tab-btn {
  background: transparent;
  border: none;
  padding: 12px 16px;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn.active {
  background: white;
  color: #0f766e;
  font-weight: 600;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.faq-item {
  background: white;
  padding: 24px;
  border-radius: 8px;
  margin-bottom: 16px;
  box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.1);
}

.faq-item h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: #1f2937;
}

.faq-item p {
  color: #4b5563;
}

/* Contacto */
.contact-section {
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  gap: 48px;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 24px;
  color: #1f2937;
}

.contact-info > p {
  font-size: 1.125rem;
  color: #4b5563;
  margin-bottom: 32px;
}

.contact-details {
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-icon {
  font-size: 1.5rem;
  margin-top: 4px;
}

.contact-item strong {
  display: block;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-item p {
  color: #4b5563;
}

.social-links h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.social-icons {
  display: flex;
  gap: 16px;
}

.social-icons a {
  text-decoration: none;
  color: #4b5563;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: #0f766e;
}

/* Formulario */
.contact-form {
  background: white;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.contact-form > p {
  color: #6b7280;
  font-size: 0.875rem;
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  gap: 16px;
  margin-bottom: 16px;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 1rem;
  margin-bottom: 16px;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #0f766e;
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.1);
}

/* CTA Final */
.final-cta {
  background: linear-gradient(135deg, #0f766e, #1e40af);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.final-cta h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.final-cta p {
  font-size: 1.125rem;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

@media (min-width: 640px) {
  .cta-buttons {
    flex-direction: row;
  }
}

/* Footer */
.footer {
  background: #f9fafb;
  padding: 48px 0 24px;
  border-top: 1px solid #e5e7eb;
}

.footer-grid {
  display: grid;
  gap: 32px;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  margin-bottom: 16px;
}

.footer-column p {
  color: #6b7280;
  font-size: 0.875rem;
  margin-bottom: 16px;
}

.footer-column h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #1f2937;
}

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

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  color: #6b7280;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #0f766e;
}

.footer-contact p {
  margin-bottom: 8px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social a {
  font-size: 1.25rem;
  text-decoration: none;
  color: #6b7280;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #0f766e;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid #e5e7eb;
}

.footer-bottom p {
  color: #6b7280;
  font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 767px) {
  .hero h1 {
    font-size: 2rem;
  }

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

  .final-cta h2 {
    font-size: 2rem;
  }

  .container {
    padding: 0 16px;
  }
}

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

/* Animaciones */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}
