/**
* Template Name: PhotoFolio (customizado Peregrinos.ar)
* Updated: 2026
*/

/*--------------------------------------------------------------
# Paleta de colores Peregrinos.ar
--------------------------------------------------------------*/
:root {
  --font-default: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif;
  --font-primary: "Inter", sans-serif;
  --font-secondary: "Cardo", sans-serif;

  /* Paleta Peregrinos */
  --peregrinos-celeste: #7ec8e3;
  --peregrinos-azul: #1e4f8a;
  --peregrinos-azul-medio: #2a6fb0;
  --peregrinos-rosado: #c96b8c;
  --peregrinos-rosado-claro: #e8a0bf;
  --peregrinos-blanco: #ffffff;
  --peregrinos-fondo: #f4f9ff;

  /* Variables del template (remapeadas a Peregrinos) */
  --color-default: #1a1a1a;
  --color-primary: #2a6fb0;
  --color-secondary: #1e4f8a;
}

:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--font-default);
  color: var(--color-default);
  background: linear-gradient(135deg, var(--peregrinos-celeste) 0%, var(--peregrinos-azul-medio) 50%, var(--peregrinos-rosado) 100%);
  background-attachment: fixed;
  min-height: 100vh;
}

a {
  color: var(--peregrinos-azul);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: var(--peregrinos-rosado);
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary);
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
.section-header {
  padding-bottom: 40px;
}

.section-header h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-primary);
}

.section-header h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--peregrinos-rosado-claro);
  margin: 4px 10px;
}

.section-header p {
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  font-family: var(--font-secondary);
  color: #fff;
}

/*--------------------------------------------------------------
# Page Header
--------------------------------------------------------------*/
.page-header {
  padding: 120px 0 60px 0;
  min-height: 30vh;
  position: relative;
}

.page-header h2 {
  font-size: 56px;
  font-weight: 500;
  color: #fff;
  font-family: var(--font-secondary);
}

@media (max-width: 768px) {
  .page-header h2 {
    font-size: 36px;
  }
}

.page-header p {
  color: rgba(255, 255, 255, 0.9);
}

.page-header .cta-btn {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 14px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 30px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: 0.3s;
  color: #fff;
  background: var(--peregrinos-rosado);
}

.page-header .cta-btn:hover {
  background: var(--peregrinos-rosado-claro);
  color: #fff;
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background: linear-gradient(135deg, var(--peregrinos-azul-medio), var(--peregrinos-azul));
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.scroll-top:hover {
  background: linear-gradient(135deg, var(--peregrinos-rosado), var(--peregrinos-rosado-claro));
  color: #fff;
  transform: translateY(-3px);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  display: flex;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  z-index: 99999;
}

#preloader:before,
#preloader:after {
  content: "";
  background-color: var(--peregrinos-azul);
  position: absolute;
  inset: 0;
  width: 50%;
  height: 100%;
  transition: all 0.3s ease 0s;
  z-index: -1;
}

#preloader:after {
  left: auto;
  right: 0;
}

#preloader .line {
  position: relative;
  overflow: hidden;
  margin: auto;
  width: 1px;
  height: 280px;
  transition: all 0.8s ease 0s;
}

#preloader .line:before {
  content: "";
  position: absolute;
  background-color: #fff;
  left: 0;
  top: 50%;
  width: 1px;
  height: 0%;
  transform: translateY(-50%);
  animation: lineincrease 1000ms ease-in-out 0s forwards;
}

#preloader .line:after {
  content: "";
  position: absolute;
  background-color: var(--peregrinos-celeste);
  left: 0;
  top: 0;
  width: 1px;
  height: 100%;
  transform: translateY(-100%);
  animation: linemove 1200ms linear 0s infinite;
  animation-delay: 2000ms;
}

#preloader.loaded .line {
  opacity: 0;
  height: 100% !important;
}

#preloader.loaded .line:after {
  opacity: 0;
}

#preloader.loaded:before,
#preloader.loaded:after {
  animation: preloaderfinish 300ms ease-in-out 500ms forwards;
}

@keyframes lineincrease {
  0% { height: 0%; }
  100% { height: 100%; }
}

@keyframes linemove {
  0% { transform: translateY(200%); }
  100% { transform: translateY(-100%); }
}

@keyframes preloaderfinish {
  0% { width: 50%; }
  100% { width: 0%; }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  transition: all 0.5s;
  z-index: 997;
  padding: 30px 0;
  background: rgba(30, 79, 138, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 10px rgba(30, 79, 138, 0.2);
}

.header .logo {
  transition: 0.3s;
}

.header .logo img {
  max-height: 40px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 32px;
  margin: 0;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-secondary);
}

.header .logo i {
  font-size: 32px;
  margin-right: 8px;
  line-height: 0;
  color: var(--peregrinos-rosado-claro);
}

@media (max-width: 575px) {
  .header .logo h1 { font-size: 26px; }
  .header .logo i { font-size: 24px; }
}

.header .header-social-links {
  padding-right: 15px;
}

.header .header-social-links a {
  color: rgba(255, 255, 255, 0.7);
  padding-left: 15px;
  display: inline-block;
  line-height: 0px;
  transition: 0.3s;
  font-size: 16px;
}

.header .header-social-links a:hover {
  color: var(--peregrinos-rosado-claro);
}

@media (max-width: 575px) {
  .header .header-social-links a {
    padding-left: 5px;
  }
}

/* Botón instalar del header */
#add-button-header {
  background: var(--peregrinos-rosado);
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 6px 15px;
  font-size: 0.85rem;
  transition: background 0.3s;
}

#add-button-header:hover {
  background: var(--peregrinos-rosado-claro);
  color: #fff;
}

/*--------------------------------------------------------------
# Barra de instalación PWA
--------------------------------------------------------------*/
#install-bar {
  position: fixed;
  top: -70px;
  left: 0;
  width: 100%;
  background: linear-gradient(135deg, var(--peregrinos-azul-medio), var(--peregrinos-azul));
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 60px;
  box-shadow: 0 4px 6px rgba(30, 79, 138, 0.3);
  font-weight: 600;
  z-index: 9999;
  transition: top 0.4s ease, opacity 1s ease;
  opacity: 1;
}

#install-bar.show {
  top: 0;
}

#install-bar.hide {
  opacity: 0;
  top: -70px;
}

#install-bar button {
  background: var(--peregrinos-rosado);
  color: #fff;
  border: none;
  font-size: 1rem;
  margin-left: 10px;
  cursor: pointer;
  padding: 6px 15px;
  border-radius: 20px;
  transition: background 0.3s;
}

#install-bar button:hover {
  background: var(--peregrinos-rosado-claro);
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1280px) {
  .navbar { padding: 0; }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li { position: relative; }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-family: var(--font-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: var(--peregrinos-rosado-claro);
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 14px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: var(--peregrinos-azul);
    transition: 0.3s;
    border-radius: 4px;
  }

  .navbar .dropdown ul li { min-width: 200px; }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 400;
  }

  .navbar .dropdown ul a i { font-size: 12px; }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    color: var(--peregrinos-rosado-claro);
  }

  .navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul { left: -90%; }
  .navbar .dropdown .dropdown:hover>ul { left: -100%; }
}

@media (min-width: 1280px) {
  .mobile-nav-show,
  .mobile-nav-hide { display: none; }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: rgba(30, 79, 138, 0.98);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-family: var(--font-primary);
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 1px;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: var(--peregrinos-rosado-claro);
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    border: 1px solid rgba(255, 255, 255, 0.1);
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    margin: 0 10px 0 10px;
  }

  .mobile-nav-hide {
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
  }

  .mobile-nav-active { overflow: hidden; }

  .mobile-nav-active .navbar { right: 0; }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(30, 79, 138, 0.8);
    z-index: 9996;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 40vh;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(4px);
  border-radius: 20px;
  margin: 120px auto 40px;
  max-width: 1200px;
  padding: 50px 20px;
  box-shadow: 0 8px 30px rgba(30, 79, 138, 0.2);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero h2 {
  margin: 0 0 10px 0;
  font-size: 38px;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-secondary);
  text-shadow: 2px 2px 6px rgba(30, 79, 138, 0.5);
}

.hero h2 span {
  position: relative;
  z-index: 1;
  padding: 0 5px;
  display: inline-block;
  color: var(--peregrinos-rosado-claro);
}

.hero h2 span:before {
  content: "";
  position: absolute;
  height: 50%;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.15);
  z-index: -1;
  border-radius: 4px;
}

.hero p {
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 30px;
  font-size: 18px;
  text-shadow: 1px 1px 4px rgba(30, 79, 138, 0.4);
}

.hero .btn-get-started {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 14px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 30px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: 0.3s;
  color: #fff;
  background: var(--peregrinos-rosado);
}

.hero .btn-get-started:hover {
  background: var(--peregrinos-rosado-claro);
  color: #fff;
}

@media (max-width: 768px) {
  .hero h2 { font-size: 32px; }
  .hero {
    margin: 100px 15px 40px;
    padding: 30px 15px;
  }
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery {
  margin: 20px auto 40px;
  max-width: 1200px;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(30, 79, 138, 0.2);
}

.gallery .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(30, 79, 138, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery .gallery-item img {
  transition: 0.3s;
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.gallery .gallery-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(201, 107, 140, 0.3);
}

.gallery .gallery-links {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: all ease-in-out 0.3s;
  background: linear-gradient(135deg, var(--peregrinos-azul-medio), var(--peregrinos-rosado));
  z-index: 3;
}

.gallery .gallery-links .preview-link,
.gallery .gallery-links .details-link {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.8);
  transition: 0.3s;
  line-height: 1.2;
  margin: 30px 8px 0 8px;
}

.gallery .gallery-links .preview-link:hover,
.gallery .gallery-links .details-link:hover {
  color: #fff;
}

.gallery .gallery-links .details-link {
  font-size: 30px;
  line-height: 0;
}

.gallery .gallery-item:hover .gallery-links {
  opacity: 1;
}

.gallery .gallery-item:hover .preview-link,
.gallery .gallery-item:hover .details-link {
  margin-top: 0;
}

.gallery .gallery-item:hover img {
  transform: scale(1.1);
}

.glightbox-clean .gslide-description {
  background: var(--peregrinos-azul);
}

.glightbox-clean .gslide-title {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h2 {
  font-weight: 700;
  font-size: 24px;
  color: var(--peregrinos-azul);
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.about .content ul strong { margin-right: 10px; }

.about .content ul i {
  font-size: 16px;
  margin-right: 5px;
  color: var(--peregrinos-rosado);
  line-height: 0;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  padding: 50px 30px;
  transition: all ease-in-out 0.4s;
  background: #fff;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  border-radius: 15px;
  border-top: 4px solid var(--peregrinos-celeste);
  box-shadow: 0 8px 20px rgba(30, 79, 138, 0.1);
}

.services .service-item:before {
  content: "";
  position: absolute;
  background: rgba(126, 200, 227, 0.1);
  top: -200px;
  transition: all 0.3s;
  z-index: -1;
}

.services .service-item i {
  background: var(--peregrinos-azul-medio);
  color: #fff;
  font-size: 24px;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
}

.services .service-item h4 {
  font-weight: 600;
  margin: 15px 0 0 0;
  transition: 0.3s;
  font-size: 20px;
}

.services .service-item h4 a {
  color: var(--peregrinos-azul);
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin: 15px 0 0 0;
  color: #333;
}

.services .service-item:hover:before {
  background: linear-gradient(135deg, var(--peregrinos-azul-medio), var(--peregrinos-rosado));
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 0px;
}

.services .service-item:hover h4 a,
.services .service-item:hover p {
  color: #fff;
}

.services .service-item:hover i {
  background: #fff;
  color: var(--peregrinos-rosado);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item+.info-item {
  margin-top: 40px;
}

.contact .info-item i {
  font-size: 20px;
  color: #fff;
  float: left;
  width: 44px;
  height: 44px;
  background: var(--peregrinos-azul-medio);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h4 {
  padding: 0;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--peregrinos-azul);
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
  color: #333;
}

.contact .info-item:hover i {
  background: var(--peregrinos-rosado);
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: var(--peregrinos-rosado);
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: var(--peregrinos-azul-medio);
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: rgba(126, 200, 227, 0.2);
  text-align: center;
  padding: 15px;
  color: var(--peregrinos-azul);
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--peregrinos-azul-medio);
  border-top-color: transparent;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 10px;
  box-shadow: none;
  font-size: 14px;
  background-color: #fff;
  border: 1px solid var(--peregrinos-celeste);
  color: #1a1a1a;
  padding: 10px 15px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--peregrinos-azul-medio);
  box-shadow: 0 0 8px rgba(42, 111, 176, 0.3);
  outline: none;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type=submit] {
  background: linear-gradient(135deg, var(--peregrinos-azul-medio), var(--peregrinos-azul));
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 10px;
  font-weight: 600;
}

.contact .php-email-form button[type=submit]:hover {
  background: linear-gradient(135deg, var(--peregrinos-rosado), var(--peregrinos-rosado-claro));
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(201, 107, 140, 0.4);
}

@keyframes animate-loading {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  margin-top: 80px;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px;
  margin: 40px 30px;
  background: #fff;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: 0.3s;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(30, 79, 138, 0.1);
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: var(--peregrinos-rosado);
  margin: 0 1px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  border: 5px solid var(--peregrinos-celeste);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: var(--peregrinos-azul);
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #777;
  margin: 0;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
  color: #333;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(30, 79, 138, 0.2);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--peregrinos-rosado);
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing {
  margin-top: 80px;
}

.pricing .pricing-item {
  border-bottom: 1px dashed var(--peregrinos-celeste);
  width: 100%;
  height: 100%;
  padding: 0 0 15px 0;
}

.pricing .pricing-item h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  color: var(--peregrinos-azul);
}

.pricing .pricing-item h4 {
  margin: 0;
  font-size: 16px;
  color: #333;
}

/*--------------------------------------------------------------
# Gallery Single Section
--------------------------------------------------------------*/
.gallery-single .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(30, 79, 138, 0.4);
  opacity: 1;
}

.gallery-single .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--peregrinos-rosado);
}

.gallery-single .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  font-family: var(--font-secondary);
  color: var(--peregrinos-azul);
}

.gallery-single .portfolio-info h3:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--peregrinos-rosado);
  left: 0;
  bottom: 0;
}

.gallery-single .portfolio-info ul strong {
  text-transform: uppercase;
  font-weight: 400;
  color: #777;
  font-size: 14px;
}

.gallery-single .portfolio-info .btn-visit {
  padding: 8px 40px;
  background: var(--peregrinos-azul-medio);
  color: #fff;
  border-radius: 50px;
  transition: 0.3s;
}

.gallery-single .portfolio-info .btn-visit:hover {
  background: var(--peregrinos-rosado);
}

.gallery-single .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--peregrinos-azul);
  font-family: var(--font-secondary);
}

.gallery-single .portfolio-description .testimonial-item {
  padding: 30px 30px 0 30px;
  position: relative;
  background: #fff;
  height: 100%;
  margin-bottom: 50px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(30, 79, 138, 0.1);
}

.gallery-single .portfolio-description .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50px;
  border: 6px solid var(--peregrinos-celeste);
  float: left;
  margin: 0 10px 0 0;
}

.gallery-single .portfolio-description .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 15px 0 5px 0;
  padding-top: 20px;
  color: var(--peregrinos-azul);
}

.gallery-single .portfolio-description .testimonial-item h4 {
  font-size: 14px;
  color: #777;
  margin: 0;
}

.gallery-single .portfolio-description .testimonial-item .quote-icon-left,
.gallery-single .portfolio-description .testimonial-item .quote-icon-right {
  color: var(--peregrinos-rosado-claro);
  font-size: 26px;
  line-height: 0;
}

.gallery-single .portfolio-description .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.gallery-single .portfolio-description .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.gallery-single .portfolio-description .testimonial-item p {
  font-style: italic;
  margin: 0 0 15px 0 0 0;
  padding: 0;
  color: #333;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  margin-top: 30px;
  padding: 30px 0;
  font-size: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(30, 79, 138, 0.95);
  backdrop-filter: blur(8px);
}

.footer .copyright {
  text-align: center;
  color: rgba(255, 255, 255, 0.9);
}

.footer .credits {
  padding-top: 6px;
  text-align: center;
  font-size: 13px;
  color: var(--peregrinos-celeste);
}

.footer .credits a {
  color: var(--peregrinos-rosado-claro);
  transition: color 0.3s;
}

.footer .credits a:hover {
  color: #fff;
}