html {
  scroll-behavior: smooth;
}

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

body {
  padding-top: 70px;
  font-family: "Noto Sans", sans-serif !important;
  color: #333333;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}
a:hover {
  color: #ff7c0a;
}

/*Navbar */
.navbar .nav-logo {
  height: 3rem;
}
.navbar .navbar-brand {
  font-weight: 600;
  font-size: 1rem;
  align-items: baseline;
  color: #ff7c0a;
}

/*--Video--*/
.section-video {
  padding: 4rem 0;
  background-color: #ffffff;
}
.section-video h2 {
  font-size: 2.25rem;
}
@media (max-width: 768px) {
  .section-video h2 {
    font-size: 1.8rem;
    text-align: center;
  }
}
.section-video p {
  padding-top: 1rem;
  font-size: 0.9rem;
  margin-bottom: 3rem;
  color: #666;
}
@media (max-width: 768px) {
  .section-video p {
    text-align: center;
  }
}
.section-video .video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.section-video .video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

/* Footer */
.footer {
  background-color: #111827;
}
.footer .text-secondary {
  color: #9ca3af;
}
.footer .titulo-footer {
  color: #ff7c0a;
}
.footer .border-secondary {
  border-color: rgba(255, 255, 255, 0.1) !important;
}
.footer .btn {
  height: 2.2rem;
  max-width: 15rem;
  min-width: 8rem;
  font-weight: 600;
  color: #ff7c0a;
  border-color: #ff7c0a;
}
.footer .btn:hover {
  background-color: #ff7c0a;
  color: white;
}
.footer .footer-top h4 {
  font-size: 1.4rem;
}
@media (max-width: 768px) {
  .footer .footer-top h4 {
    font-size: 1.4rem;
    text-align: center;
  }
}
.footer .footer-top p {
  font-size: 0.9rem;
}
@media (max-width: 768px) {
  .footer .footer-top p {
    font-size: 0.9rem;
    padding-top: 0.5rem;
    text-align: center;
  }
}
.footer .footer-top .form-check {
  color: transparent;
  border-color: rgba(255, 255, 255, 0.3);
}
.footer .footer-top .footer-social {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

/* Hero Section */
.hero-header {
  background-color: #ffffff;
}
@media (min-width: 768px) {
  .hero-header {
    height: 70vh;
  }
}
@media (max-width: 767px) {
  .hero-header {
    height: auto;
  }
}
.hero-header .hero-img {
  background-image: url(../img/javi_explorador.JPG);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
}
@media (min-width: 768px) {
  .hero-header .hero-img {
    height: 100%;
    min-height: 70vh;
  }
}
@media (max-width: 767px) {
  .hero-header .hero-img {
    height: 55vh;
  }
}
.hero-header .hero-img-col {
  height: 100%;
}
@media (max-width: 767px) {
  .hero-header .hero-txt {
    text-align: start;
    padding: 2rem 1.5rem;
  }
}
.hero-header .btn {
  font-weight: 600;
  color: #ff7c0a;
  border-color: #ff7c0a;
}
.hero-header .btn:hover {
  background-color: #ff7c0a;
  color: white;
}

/* Main Actividades */
.main-actividades {
  background-color: #e4e4e4;
}
.main-actividades .tarjeta {
  background-color: #ffffff;
  width: 100%;
  height: 25rem;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
@media (min-width: 568px) {
  .main-actividades .tarjeta {
    max-width: 12rem;
  }
}
.main-actividades .tarjeta .card-img-top {
  transition: transform 0.3s ease;
  width: 100%;
  object-fit: cover;
  object-position: top;
  height: 12rem;
}
.main-actividades .tarjeta .card-text {
  font-size: 0.8rem;
}
.main-actividades .tarjeta:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.main-actividades .tarjeta:hover .card-img-top {
  transform: scale(1.05);
}

/* guias de barcelona */
.guias .btn {
  width: 25%;
}
@media (min-width: 768px) {
  .guias .btn {
    width: 100%;
  }
}
.guias a {
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.guias a:hover {
  cursor: pointer;
}
.guias a:hover .guia-destacada img,
.guias a:hover .guia-item img {
  transform: translateY(-3px);
}
.guias .guia-destacada img {
  width: 100%;
  height: 25rem;
  object-fit: cover;
  object-position: top;
  border-radius: 1rem;
}
.guias .guia-item img {
  width: 7rem;
  height: 5.5rem;
  object-fit: cover;
  object-position: top;
  border-radius: 0.8rem;
  flex-shrink: 0;
}

/* Testimonios */
.testimonios {
  width: 100vw;
}
.testimonios .testimonio-card {
  border: 1px solid #eeecec;
  transition: transform 0.3s ease-in;
  max-width: 30rem;
}
.testimonios .testimonio-card:hover {
  transform: translateY(-4px);
}
.testimonios .avatar {
  width: 3rem;
  height: 3rem;
  background-color: #ff7c0a;
  font-size: 1.5rem;
  flex-shrink: 0;
}

/* contacto */
.section-contacto {
  padding: 3rem 0;
  background-color: rgba(245, 236, 221, 0.8196078431);
  color: #1a1a1a;
}
.section-contacto h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.section-contacto p {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}
.section-contacto .tarjeta-contacto {
  background-color: #ffffff;
  padding: 3rem;
  border-radius: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
@media (max-width: 576px) {
  .section-contacto .tarjeta-contacto {
    padding: 1.5rem;
  }
}
.section-contacto .form-label {
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}
.section-contacto .form-select {
  border-radius: 0.8rem;
  padding: 0.75rem 1.2rem;
  font-size: 0.9rem;
}

.section-tours {
  padding: 1rem;
  padding-top: 2rem;
  background-color: rgba(245, 236, 221, 0.8196078431);
}
.section-tours h1 {
  font-size: 2.25rem;
}
@media (max-width: 768px) {
  .section-tours h1 {
    font-size: 1.8rem;
  }
}
.section-tours p {
  font-size: 0.9rem;
  margin-bottom: 3rem;
  color: #666;
}
.section-tours .grilla {
  display: grid;
  margin: 0.5rem;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}
@media (min-width: 480px) {
  .section-tours .grilla {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
}
@media (min-width: 1024px) {
  .section-tours .grilla {
    grid-template-columns: repeat(3, 1fr);
  }
}
.section-tours .grilla .tarjeta {
  background-color: white;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.section-tours .grilla .tarjeta img {
  width: 100%;
  height: 13rem;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.section-tours .grilla .tarjeta:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.section-tours .grilla .tarjeta:hover .card-img-top {
  transform: scale(1.05);
}

/* Hero Section */
.hero-header .hero-img-col .sobre-img {
  background-image: url(../img/javi_sentado.JPG);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
}
@media (min-width: 768px) {
  .hero-header .hero-img-col .sobre-img {
    height: 100%;
    min-height: 70vh;
  }
}
@media (max-width: 767px) {
  .hero-header .hero-img-col .sobre-img {
    height: 55vh;
  }
}

/* info Section */
.seccion-info {
  background-color: #e4e4e4;
}
@media (min-width: 768px) {
  .seccion-info {
    height: auto;
  }
}
@media (max-width: 767px) {
  .seccion-info {
    height: auto;
  }
}
@media (max-width: 767px) {
  .seccion-info .row {
    align-items: center !important;
  }
}
.seccion-info .info-img {
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 8px;
  width: 70%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}
@media (min-width: 768px) {
  .seccion-info .info-img {
    max-height: 30rem;
  }
}
@media (max-width: 767px) {
  .seccion-info .info-img {
    align-items: center;
    max-height: 20rem;
  }
}
.seccion-info .info-img-col {
  display: flex;
  justify-content: center;
}
@media (min-width: 768px) {
  .seccion-info .info-img-col {
    justify-content: flex-end;
  }
}
.seccion-info .info-texto {
  color: #222;
}
@media (max-width: 767px) {
  .seccion-info .info-texto {
    text-align: center;
    padding-left: 1.5rem;
  }
}

/*--Video--*/
.section-video {
  padding: 4rem 0;
  background-color: #e4e4e4;
}
.section-video h2 {
  font-size: 2.25rem;
}
@media (max-width: 768px) {
  .section-video h2 {
    font-size: 1.8rem;
    text-align: center;
  }
}
.section-video p {
  padding-top: 1rem;
  font-size: 0.9rem;
  margin-bottom: 3rem;
  color: #666;
}
@media (max-width: 768px) {
  .section-video p {
    text-align: center;
  }
}
.section-video .video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.section-video .video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

/*--Galleria de fotos--*/
.section-galeria {
  background-color: rgba(245, 236, 221, 0.8196078431);
}
.section-galeria h1 {
  padding-top: 3rem;
  font-size: 2.25rem;
}
@media (max-width: 768px) {
  .section-galeria h1 {
    font-size: 1.8rem;
  }
}
.section-galeria p {
  font-size: 0.9rem;
  margin-bottom: 3rem;
  color: #666;
}
.section-galeria .galeria {
  display: grid;
  padding-bottom: 3rem;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}
@media (min-width: 780px) {
  .section-galeria .galeria {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
}
@media (min-width: 1024px) {
  .section-galeria .galeria {
    grid-template-columns: repeat(4, 1fr);
  }
}
.section-galeria .galeria .galeria-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.section-galeria .galeria .galeria-item img {
  width: 100%;
  height: 13rem;
  object-fit: cover;
  object-position: center;
  display: block;
}

/*# sourceMappingURL=styles.css.map */
