@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Lora";
  src: url("../fonts/Lora-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  width: 100%;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  overflow-x: hidden;
  background-color: #ffffff;
  color: #333333;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Lora", serif;
  color: #235c9a;
  font-weight: 400;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
  display: inline-block;
  vertical-align: middle;
}

.bg-grid-blue, .bg-grid {
  background-size: 28px 28px;
}

.bg-grid {
  background-color: #ffffff;
  background-image: linear-gradient(rgba(35, 92, 154, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(35, 92, 154, 0.04) 1px, transparent 1px);
}
.bg-grid-blue {
  background-color: #235c9a;
  background-image: linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
}

.mrow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(35, 92, 154, 0.15);
  font-family: "Open Sans", sans-serif;
  font-size: 0.9rem;
  color: #333333;
}
.mrow:last-child {
  border-bottom: none;
}
.mrow-price {
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  color: #235c9a;
  white-space: nowrap;
  margin-left: 16px;
}

.msec {
  background: #efe2d5;
  border-radius: 16px;
  padding: 24px 28px;
  margin-bottom: 14px;
  border: 1px solid rgba(35, 92, 154, 0.05);
}
.msec-title {
  font-family: "Open Sans", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ce8953;
  margin-bottom: 12px;
}

.img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.img-wrap .img-free {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.sc {
  box-shadow: 0 8px 28px rgba(35, 92, 154, 0.1);
}

@media (max-width: 768px) {
  .g2, .g3, .g7-5, .g8-4, .g5-7 {
    grid-template-columns: 1fr !important;
    display: grid;
    gap: 24px;
  }
  .g4 {
    grid-template-columns: 1fr 1fr !important;
  }
  h1 {
    font-size: 2.2rem !important;
  }
  h2 {
    font-size: 1.6rem !important;
  }
}
.main-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(35, 92, 154, 0.1);
}
.main-header .header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  cursor: pointer;
  height: 60px;
  display: flex;
  align-items: center;
}
.nav-logo .logo-img {
  height: 54px;
  width: auto;
  object-fit: cover;
}
.nav-logo .logo-fallback {
  display: none;
  flex-direction: column;
  font-family: "Lora", serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: #235c9a;
  line-height: 1;
}
.nav-logo .logo-fallback span {
  font-family: "Open Sans", sans-serif;
  font-size: 0.55rem;
  color: #555555;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

#nav-desktop {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-a {
  font-family: "Open Sans", sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  text-decoration: none;
  color: #333333;
  opacity: 0.85;
  transition: all 0.2s ease;
  border-bottom: 2px solid transparent;
}
.nav-a:hover {
  opacity: 1;
  color: #235c9a;
}
.nav-a.active-nav {
  opacity: 1;
  color: #235c9a;
  border-bottom-color: #ce8953;
  padding-bottom: 4px;
  font-weight: 700;
}

.nav-btn-contact {
  font-family: "Open Sans", sans-serif;
  padding: 9px 22px;
  background: #235c9a;
  color: #ffffff !important;
  border-radius: 99px;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-block;
}
.nav-btn-contact:hover {
  transform: translateY(-1px);
  filter: brightness(1.1);
  box-shadow: 0 4px 12px rgba(35, 92, 154, 0.15);
}

#ham {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: #235c9a;
  padding: 0;
}

#mob {
  display: none;
  flex-direction: column;
  background: #efe2d5;
  border-top: 1px solid rgba(35, 92, 154, 0.1);
  padding: 12px 24px 16px;
}
#mob.open {
  display: flex;
}
#mob .nav-a {
  font-size: 0.95rem;
  padding: 14px 0;
  display: block;
  color: #333333;
  border-bottom: 1px dashed rgba(35, 92, 154, 0.15);
}
#mob .nav-a:last-child {
  border-bottom: none;
}
#mob .nav-a.active-nav {
  border-bottom: 1px dashed rgba(35, 92, 154, 0.15);
  color: #235c9a;
}
#mob .nav-btn-contact {
  margin-top: 12px;
  text-align: center;
  width: 100%;
  padding: 12px 22px;
}

@media (max-width: 768px) {
  main {
    padding-top: 20px !important;
  }
  .main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
  }
  #nav-desktop {
    display: none !important;
  }
  #ham {
    display: flex !important;
    order: 1;
    margin-right: auto;
    font-size: 1.8rem;
    padding: 8px;
  }
  .nav-logo {
    order: 2;
  }
  #mob {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    box-shadow: 0 8px 16px rgba(35, 92, 154, 0.1);
  }
}
.main-footer {
  background: #235c9a;
  color: #ffffff;
  padding: 52px 24px 22px;
}
.main-footer .footer-container {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto 32px;
}
.main-footer .footer-logo {
  font-family: "Lora", serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 10px;
}
.main-footer .footer-logo span {
  font-family: "Open Sans", sans-serif;
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  display: block;
}
.main-footer .footer-tagline {
  font-family: "Open Sans", sans-serif;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.65;
  margin-bottom: 12px;
}
.main-footer .footer-title {
  font-family: "Open Sans", sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ce8953;
  margin-bottom: 14px;
}
.main-footer .footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.main-footer .footer-links a {
  font-family: "Open Sans", sans-serif;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.2s ease;
}
.main-footer .footer-links a:hover {
  color: #ffffff;
  text-decoration: underline;
}
.main-footer .contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: "Open Sans", sans-serif;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.85);
}
.main-footer .contact-info .info-item {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.main-footer .contact-info .info-item span.material-symbols-outlined {
  font-size: 0.95rem;
  color: #ce8953;
  flex-shrink: 0;
  margin-top: 2px;
}
.main-footer .footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 16px;
  text-align: center;
  font-family: "Open Sans", sans-serif;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
  .main-footer .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .main-footer .info-item {
    justify-content: center;
  }
}
.page-home .bg-grid-blue {
  background-color: #235c9a;
  background-image: linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 30px 30px;
}
.page-home .home-hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  padding: 80px 24px 140px;
  text-align: center;
}
.page-home .home-hero .decorator-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.page-home .home-hero .decorator-circle.circle-1 {
  width: 220px;
  height: 220px;
  top: -40px;
  right: -40px;
  background: rgba(255, 255, 255, 0.05);
}
.page-home .home-hero .decorator-circle.circle-2 {
  width: 160px;
  height: 160px;
  bottom: 60px;
  left: -50px;
  background: rgba(255, 255, 255, 0.04);
}
.page-home .home-hero .hero-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.page-home .home-hero .hero-logo-wrap {
  width: min(450px, 85vw);
  margin: 0 auto 32px;
}
.page-home .home-hero .hero-logo-wrap img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}
.page-home .home-hero .hero-badge {
  display: block;
  font-family: "Open Sans", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ce8953;
  margin-bottom: 15px;
}
.page-home .home-hero h1 {
  font-family: "Lora", serif;
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 18px;
  color: #ffffff;
}
.page-home .home-hero .hero-subtitle {
  font-family: "Open Sans", sans-serif;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 550px;
  margin: 0 auto;
  line-height: 1.6;
}
.page-home .home-hero .wave-container {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 1;
}
.page-home .home-hero .wave-container svg {
  width: 100%;
  height: 60px;
  display: block;
}
.page-home .home-history-preview {
  padding: 100px 24px;
  background: #ffffff;
}
.page-home .home-history-preview .container {
  max-width: 1100px;
  margin: 0 auto;
}
.page-home .home-history-preview .section-header {
  text-align: center;
  margin-bottom: 56px;
}
.page-home .home-history-preview .section-header h2 {
  font-family: "Lora", serif;
  font-size: 2.2rem;
  color: #235c9a;
  margin-bottom: 10px;
}
.page-home .home-history-preview .section-header .divider {
  width: 60px;
  height: 4px;
  background: #ce8953;
  margin: 0 auto;
  border-radius: 10px;
}
.page-home .home-history-preview .history-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 768px) {
  .page-home .home-history-preview .history-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.page-home .home-history-preview .img-wrap {
  height: 380px;
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .page-home .home-history-preview .img-wrap {
    height: 280px;
  }
}
.page-home .home-history-preview .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.page-home .home-history-preview .history-text h3 {
  font-family: "Lora", serif;
  font-size: 1.8rem;
  color: #235c9a;
  margin-bottom: 20px;
  line-height: 1.2;
}
.page-home .home-history-preview .history-text h3 .highlight {
  color: #ce8953;
}
.page-home .home-history-preview .history-text p {
  font-family: "Open Sans", sans-serif;
  color: #333333;
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 1.05rem;
}
.page-home .home-history-preview .history-text .btn-outline {
  font-family: "Open Sans", sans-serif;
  display: inline-block;
  padding: 12px 28px;
  border: 2px solid #235c9a;
  color: #235c9a;
  border-radius: 99px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}
.page-home .home-history-preview .history-text .btn-outline:hover {
  background: #235c9a;
  color: #ffffff !important;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(35, 92, 154, 0.2);
}
.page-home .home-cta-orders {
  padding: 100px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-home .home-cta-orders .cta-content {
  max-width: 640px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.page-home .home-cta-orders .cta-badge {
  display: block;
  font-family: "Open Sans", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #ce8953;
  margin-bottom: 15px;
}
.page-home .home-cta-orders h2 {
  font-family: "Lora", serif;
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.2;
}
.page-home .home-cta-orders p {
  font-family: "Open Sans", sans-serif;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.05rem;
  margin-bottom: 35px;
  line-height: 1.7;
}
.page-home .home-cta-orders .btn-primary-cta {
  font-family: "Open Sans", sans-serif;
  display: inline-block;
  padding: 16px 40px;
  background: #ce8953;
  color: #ffffff !important;
  border: none;
  border-radius: 99px;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(206, 137, 83, 0.3);
}
.page-home .home-cta-orders .btn-primary-cta:hover {
  transform: translateY(-3px);
  filter: brightness(0.95);
  box-shadow: 0 15px 30px rgba(206, 137, 83, 0.4);
}

.page-historia .history-hero {
  padding: 72px 24px 80px;
  max-width: 1100px;
  margin: 0 auto;
}
.page-historia .history-hero .hero-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 768px) {
  .page-historia .history-hero .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.page-historia .history-hero h1 {
  font-family: "Lora", serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: #235c9a;
  line-height: 1.1;
  margin-bottom: 18px;
  font-weight: 400;
}
.page-historia .history-hero h1 em {
  font-family: "Lora", serif;
  font-style: italic;
  font-weight: 400;
}
.page-historia .history-hero .location-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(206, 137, 83, 0.15);
  border-radius: 99px;
}
.page-historia .history-hero .location-badge span {
  font-family: "Open Sans", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: #235c9a;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.page-historia .history-hero .location-badge .material-symbols-outlined {
  color: #ce8953;
  font-size: 0.95rem;
}
.page-historia .img-wrap-main, .page-historia .img-wrap-process {
  position: relative;
  height: 340px;
}
@media (max-width: 768px) {
  .page-historia .img-wrap-main, .page-historia .img-wrap-process {
    display: none;
  }
}
.page-historia .img-wrap-main img, .page-historia .img-wrap-process img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
}
.page-historia .floating-tag {
  position: absolute;
  bottom: -14px;
  left: -14px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  padding: 10px 16px;
  border-radius: 12px;
  border: 2px solid #efe2d5;
  transform: rotate(3deg);
  box-shadow: 0 8px 28px rgba(35, 92, 154, 0.1);
}
.page-historia .floating-tag p {
  font-family: "Lora", serif;
  font-style: italic;
  color: #235c9a;
}
.page-historia .circle-badge {
  position: absolute;
  bottom: -22px;
  right: -22px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: #efe2d5;
  border: 4px solid #ffffff;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 15px;
  box-shadow: 0 8px 28px rgba(35, 92, 154, 0.1);
}
.page-historia .circle-badge p {
  font-family: "Open Sans", sans-serif;
  color: #333333;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.3;
}
.page-historia .history-process {
  background: #efe2d5;
  padding: 80px 24px;
  border-top: 1px solid rgba(35, 92, 154, 0.05);
  border-bottom: 1px solid rgba(35, 92, 154, 0.05);
}
.page-historia .history-process .process-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .page-historia .history-process .process-grid {
    grid-template-columns: 1fr;
  }
}
.page-historia .history-process h2 {
  font-family: "Lora", serif;
  color: #235c9a;
  font-size: 2rem;
  font-weight: 400;
}
.page-historia .history-process p {
  font-family: "Open Sans", sans-serif;
  color: #333333;
  line-height: 1.7;
}
.page-historia .history-process .story-quote {
  border-left: 4px solid #ce8953;
  padding: 12px 20px;
  margin: 20px 0 0;
}
.page-historia .history-process .story-quote p {
  font-family: "Lora", serif;
  font-style: italic;
  font-size: 1.15rem;
  color: #235c9a;
  line-height: 1.5;
}
.page-historia .history-pillars {
  padding: 80px 24px;
  background: #ffffff;
}
.page-historia .history-pillars .container {
  max-width: 1100px;
  margin: 0 auto;
}
.page-historia .history-pillars .pillars-header {
  text-align: center;
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-historia .history-pillars .pillars-header h2 {
  font-family: "Lora", serif;
  color: #235c9a;
  font-size: 2.2rem;
  margin-bottom: 12px;
  font-weight: 400;
}
.page-historia .history-pillars .pillars-header .divider {
  width: 50px;
  height: 3px;
  background-color: #ce8953;
  border-radius: 99px;
}
.page-historia .history-pillars .pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 992px) {
  .page-historia .history-pillars .pillars-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .page-historia .history-pillars .pillars-grid {
    grid-template-columns: 1fr;
  }
}
.page-historia .history-pillars .pillar-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 18px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(35, 92, 154, 0.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}
.page-historia .history-pillars .pillar-card:hover {
  background: #efe2d5;
  transform: translateY(-5px);
}
.page-historia .history-pillars .pillar-card:hover h3 {
  color: #ce8953;
}
.page-historia .history-pillars .pillar-card .pillar-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  display: block;
}
.page-historia .history-pillars .pillar-card h3 {
  font-family: "Lora", serif;
  color: #235c9a;
  margin-bottom: 10px;
  font-weight: 400;
  transition: color 0.2s ease;
}
.page-historia .history-pillars .pillar-card p {
  font-family: "Open Sans", sans-serif;
  color: #333333;
  font-size: 0.9rem;
  line-height: 1.6;
}
.page-historia .history-footer-phrase {
  padding: 100px 24px;
  text-align: center;
  position: relative;
}
.page-historia .history-footer-phrase .phrase-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page-historia .history-footer-phrase h2 {
  color: #ffffff;
  font-family: "Lora", serif;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  line-height: 1.4;
  margin-bottom: 40px;
  font-weight: 400;
  width: 100%;
}
.page-historia .history-footer-phrase .heart-icon {
  width: 44px;
  height: 44px;
  background-color: #ce8953;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
.page-historia .history-footer-phrase .heart-icon span {
  color: #ffffff;
  font-size: 1.2rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-productos {
  background-color: #ffffff;
  font-family: "Open Sans", sans-serif;
  color: #333333;
  padding: 24px 12px 80px;
  max-width: 1300px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .page-productos {
    padding-top: 94px;
  }
}
.page-productos .section-title {
  text-align: center;
  font-family: "Lora", serif;
  font-size: 2.2rem;
  color: #235c9a;
  margin-bottom: 32px;
  font-weight: 700;
}
@media (max-width: 768px) {
  .page-productos .section-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
}
.page-productos .productos-ordenar-bar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  font-size: 0.95rem;
  color: #555555;
}
@media (max-width: 768px) {
  .page-productos .productos-ordenar-bar {
    justify-content: space-between;
    font-size: 0.85rem;
  }
}
.page-productos .productos-ordenar-bar .ordenar-select {
  padding: 8px 16px;
  border-radius: 6px;
  border: 1px solid #e0e0e0;
  background-color: #ffffff;
  color: #333333;
  font-family: "Open Sans", sans-serif;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s;
}
.page-productos .productos-ordenar-bar .ordenar-select:focus {
  border-color: #235c9a;
}
.page-productos .productos-contenedor {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .page-productos .productos-contenedor {
    flex-direction: column;
    gap: 24px;
  }
}
.page-productos .productos-sidebar {
  flex: 0 0 260px;
  width: 260px;
  background-color: #ffffff;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 8px 28px rgba(35, 92, 154, 0.1);
}
.page-productos .productos-sidebar .btn-toggle-filtros {
  display: none;
}
@media (max-width: 768px) {
  .page-productos .productos-sidebar {
    width: 100%;
    flex: none;
    padding: 0;
    border: none;
    box-shadow: none;
    background: transparent;
  }
  .page-productos .productos-sidebar .btn-toggle-filtros {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 16px;
    background-color: #235c9a;
    border: 1px solid rgba(35, 92, 154, 0.15);
    border-radius: 8px;
    color: #ffffff;
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
  }
  .page-productos .productos-sidebar .btn-toggle-filtros .arrow-icon {
    transition: transform 0.3s ease;
  }
  .page-productos .productos-sidebar .btn-toggle-filtros.active {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .page-productos .productos-sidebar .btn-toggle-filtros.active .arrow-icon {
    transform: rotate(180deg);
  }
  .page-productos .productos-sidebar .sidebar-content {
    display: none;
    background-color: #ffffff;
    border: 1px solid rgba(35, 92, 154, 0.15);
    border-top: none;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    padding: 20px;
    box-shadow: 0 8px 28px rgba(35, 92, 154, 0.1);
  }
  .page-productos .productos-sidebar .sidebar-content.open {
    display: block;
  }
}
.page-productos .productos-sidebar .filtro-grupo {
  margin-bottom: 32px;
}
.page-productos .productos-sidebar .filtro-grupo:last-child {
  margin-bottom: 0;
}
.page-productos .productos-sidebar .filtro-grupo .filtro-titulo {
  font-size: 1.1rem;
  font-weight: 700;
  color: #235c9a;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  border-bottom: 2px solid #e0e0e0;
  padding-bottom: 8px;
}
.page-productos .productos-sidebar .filtro-lista {
  list-style: none;
  padding: 0;
  margin: 0;
}
.page-productos .productos-sidebar .filtro-lista li {
  margin-bottom: 12px;
}
.page-productos .productos-sidebar .filtro-lista li a.filter-link, .page-productos .productos-sidebar .filtro-lista li a.filter-link-sabor {
  text-decoration: none;
  color: #555555;
  font-size: 0.95rem;
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.page-productos .productos-sidebar .filtro-lista li a.filter-link:hover, .page-productos .productos-sidebar .filtro-lista li a.filter-link.active, .page-productos .productos-sidebar .filtro-lista li a.filter-link-sabor:hover, .page-productos .productos-sidebar .filtro-lista li a.filter-link-sabor.active {
  color: #235c9a;
  font-weight: 600;
  padding-left: 4px;
}
.page-productos .productos-lista {
  flex: 1;
  width: 100%;
  padding: 0;
}
.page-productos .productos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 32px;
}
@media (max-width: 576px) {
  .page-productos .productos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}
.page-productos .producto-card {
  text-decoration: none;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 28px rgba(35, 92, 154, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.page-productos .producto-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(35, 92, 154, 0.18);
}
.page-productos .producto-card .producto-img-container {
  width: 100%;
  height: 240px;
  padding: 24px;
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 576px) {
  .page-productos .producto-card .producto-img-container {
    height: 150px;
    padding: 12px;
  }
}
.page-productos .producto-card .producto-img-container .producto-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.page-productos .producto-card .producto-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
@media (max-width: 576px) {
  .page-productos .producto-card .producto-info {
    padding: 12px;
  }
}
.page-productos .producto-card .producto-info .producto-nombre {
  font-family: "Open Sans", sans-serif;
  font-size: 1.05rem;
  color: #333333;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 12px;
  min-height: 44px;
}
@media (max-width: 576px) {
  .page-productos .producto-card .producto-info .producto-nombre {
    font-size: 0.9rem;
    min-height: 36px;
    margin-bottom: 6px;
  }
}
.page-productos .producto-card .producto-info .producto-descripcion {
  font-family: "Open Sans", sans-serif;
  font-size: 0.9rem;
  color: #555555;
  line-height: 1.5;
  margin-bottom: 16px;
}
@media (max-width: 576px) {
  .page-productos .producto-card .producto-info .producto-descripcion {
    font-size: 0.78rem;
    line-height: 1.3;
    margin-bottom: 10px;
  }
}
@media (max-width: 768px) {
  .page-productos .producto-card .producto-info .producto-descripcion {
    display: none !important;
  }
}
.page-productos .producto-card .producto-acciones {
  padding: 0 20px 20px;
}
@media (max-width: 576px) {
  .page-productos .producto-card .producto-acciones {
    padding: 0 12px 12px;
  }
}
.page-productos .producto-card .producto-acciones .btn-detalle {
  display: block;
  width: 100%;
  padding: 12px;
  background-color: #235c9a;
  color: #ffffff;
  text-align: center;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: background-color 0.2s ease;
}
@media (max-width: 576px) {
  .page-productos .producto-card .producto-acciones .btn-detalle {
    padding: 8px 4px;
    font-size: 0.78rem;
  }
}
.page-productos .producto-card .producto-acciones .btn-detalle:hover {
  background-color: rgb(27.4444444444, 72.1396825397, 120.7555555556);
}

.page-producto-detalle {
  background-color: #ffffff;
  font-family: "Open Sans", sans-serif;
  padding: 40px 24px;
  color: #333333;
}
.page-producto-detalle .detalle-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 768px) {
  .page-producto-detalle .detalle-container {
    flex-direction: row;
    align-items: flex-start;
  }
}
.page-producto-detalle .detalle-imagen-box {
  flex: 1;
  width: 100%;
  max-width: 450px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 auto;
}
.page-producto-detalle .detalle-imagen-box .main-img-container {
  width: 100%;
  height: 400px;
  border: 1px solid #e0e0e0;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.page-producto-detalle .detalle-imagen-box .main-img-container .img-fluida {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.page-producto-detalle .detalle-imagen-box .carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0 30px;
}
.page-producto-detalle .detalle-imagen-box .carousel-wrapper .nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 2rem;
  color: #555555;
  cursor: pointer;
  user-select: none;
  padding: 0 5px;
  transition: color 0.2s;
}
.page-producto-detalle .detalle-imagen-box .carousel-wrapper .nav-arrow:hover {
  color: #235c9a;
}
.page-producto-detalle .detalle-imagen-box .carousel-wrapper .nav-arrow.prev {
  left: 0;
}
.page-producto-detalle .detalle-imagen-box .carousel-wrapper .nav-arrow.next {
  right: 0;
}
.page-producto-detalle .detalle-imagen-box .thumbs-container {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-behavior: smooth;
  width: 100%;
  padding: 4px 2px;
}
.page-producto-detalle .detalle-imagen-box .thumbs-container::-webkit-scrollbar {
  display: none;
}
.page-producto-detalle .detalle-imagen-box .thumbs-container {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.page-producto-detalle .detalle-imagen-box .thumbs-container .thumb-box {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border: 1px solid #e0e0e0;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  cursor: pointer;
  transition: border-color 0.2s;
}
.page-producto-detalle .detalle-imagen-box .thumbs-container .thumb-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.page-producto-detalle .detalle-imagen-box .thumbs-container .thumb-box.active, .page-producto-detalle .detalle-imagen-box .thumbs-container .thumb-box:hover {
  border: 2px solid #333333;
}
.page-producto-detalle .detalle-info-box {
  flex: 1.2;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.page-producto-detalle .detalle-info-box .btn-volver {
  color: #555555;
  text-decoration: none;
  font-size: 0.85rem;
  margin-bottom: 16px;
  font-weight: 600;
  text-transform: uppercase;
}
.page-producto-detalle .detalle-info-box .btn-volver:hover {
  color: #235c9a;
}
.page-producto-detalle .detalle-info-box .producto-titulo {
  font-family: "Open Sans", sans-serif;
  font-size: 2.1rem;
  color: #235c9a;
  margin-bottom: 10px;
  line-height: 1.2;
  font-weight: 400;
}
.page-producto-detalle .detalle-info-box .producto-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 0.9rem;
}
.page-producto-detalle .detalle-info-box .producto-rating .stars {
  color: #e0e0e0;
}
.page-producto-detalle .detalle-info-box .producto-rating .rating-text {
  color: #555555;
}
.page-producto-detalle .detalle-info-box .producto-precio-destacado {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
}
.page-producto-detalle .detalle-info-box .producto-precio-destacado .precio {
  font-family: "Open Sans", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #333333;
}
.page-producto-detalle .detalle-info-box .producto-precio-destacado .tax-info, .page-producto-detalle .detalle-info-box .producto-precio-destacado .unidad {
  font-size: 0.85rem;
  color: #555555;
  margin-top: 4px;
}
.page-producto-detalle .detalle-info-box .producto-descripcion-corta {
  border-top: 1px solid #e0e0e0;
  padding-top: 16px;
}
.page-producto-detalle .detalle-info-box .producto-descripcion-corta p {
  font-size: 0.95rem;
  color: #333333;
  line-height: 1.6;
}
.page-producto-detalle .detalle-info-box .producto-presentacion {
  padding-top: 16px;
}
.page-producto-detalle .detalle-info-box .producto-presentacion p {
  font-size: 0.95rem;
  color: #333333;
  line-height: 1.6;
}
.page-producto-detalle .detalle-info-box .producto-tip {
  border-bottom: 1px solid #e0e0e0;
  padding-top: 16px;
  margin-bottom: 24px;
}
.page-producto-detalle .detalle-info-box .producto-tip p {
  font-size: 0.95rem;
  color: #333333;
  line-height: 1.6;
}
.page-producto-detalle .detalle-info-box .producto-etiquetas-puede {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.page-producto-detalle .detalle-info-box .producto-etiquetas-puede .badge-sabor-puede {
  background-color: rgba(222, 234.2142857143, 247.5, 0.1);
  color: #235c9a;
  border: 1px solid rgba(35, 92, 154, 0.15);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 6px 12px;
  border-radius: 20px;
  user-select: none;
}
.page-producto-detalle .detalle-info-box .producto-etiquetas {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.page-producto-detalle .detalle-info-box .producto-etiquetas .badge-sabor {
  background-color: rgb(249.12, 240.84, 234.36);
  color: rgb(165.3846153846, 99.0384615385, 47.1153846154);
  border: 1px solid rgba(206, 137, 83, 0.3);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 6px 12px;
  border-radius: 20px;
  user-select: none;
}
.page-producto-detalle .detalle-info-box .meta-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.85rem;
  color: #333333;
  margin-bottom: 30px;
  font-weight: 700;
}
.page-producto-detalle .detalle-info-box .meta-info .stock-status {
  color: #235c9a;
}
.page-producto-detalle .detalle-info-box .meta-info .sku-number {
  font-weight: 400;
  color: #555555;
}
.page-producto-detalle .detalle-info-box .btn-pedido {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: #235c9a;
  color: #ffffff;
  padding: 12px 32px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  align-self: flex-start;
  transition: background-color 0.2s;
}
.page-producto-detalle .detalle-info-box .btn-pedido .btn-icon {
  flex-shrink: 0;
}
.page-producto-detalle .detalle-info-box .btn-pedido:hover {
  background-color: rgb(30.2777777778, 79.5873015873, 133.2222222222);
}

.dondeComprar-page {
  display: block !important;
  max-width: 860px;
  margin: 0 auto;
  padding: 60px 24px 80px;
}
.dondeComprar-page .donde-comprar-header {
  margin-bottom: 52px;
  text-align: center;
}
.dondeComprar-page h1 {
  font-family: "Lora", serif;
  font-size: clamp(2rem, 5vw, 3rem);
  color: #235c9a;
  line-height: 1.15;
  margin-bottom: 12px;
  font-weight: 400;
}
.dondeComprar-page h2 {
  font-family: "Lora", serif;
  color: #235c9a;
  line-height: 1.15;
  font-weight: 400;
}
.dondeComprar-page .donde-comprar-container {
  max-width: 1000px;
  margin: 0 auto;
}
.dondeComprar-page .donde-comprar-info-grid {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 25px;
}
@media (max-width: 768px) {
  .dondeComprar-page .donde-comprar-info-grid {
    grid-template-columns: 1fr;
  }
}
.dondeComprar-page .info-card {
  background: #efe2d5;
  border-radius: 20px;
  padding: 40px;
  text-align: left;
  border: 1px solid rgba(35, 92, 154, 0.03);
}
.dondeComprar-page .info-card .icon-loc {
  background: #235c9a;
  color: #ffffff;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  box-shadow: 0 4px 10px rgba(35, 92, 154, 0.15);
}
.dondeComprar-page .info-card .icon-loc span {
  font-size: 1.2rem;
}
.dondeComprar-page .info-card .info-title {
  font-family: "Lora", serif;
  color: #235c9a;
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-weight: 400;
}
.dondeComprar-page .info-card .info-address {
  font-family: "Open Sans", sans-serif;
  color: #333333;
  margin-bottom: 20px;
  line-height: 1.5;
}
.dondeComprar-page .info-card .info-divider {
  height: 1px;
  background: rgba(35, 92, 154, 0.08);
  margin-bottom: 20px;
}
.dondeComprar-page .info-card .info-list {
  list-style: none;
  padding: 0;
}
.dondeComprar-page .info-card .info-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Open Sans", sans-serif;
  color: #333333;
  font-size: 0.9rem;
  margin-bottom: 12px;
}
.dondeComprar-page .info-card .info-list li span {
  color: #ce8953;
  font-size: 1.1rem;
}
.dondeComprar-page .info-photo {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(35, 92, 154, 0.1);
}
.dondeComprar-page .info-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.dondeComprar-page .donde-comprar-quote-divider {
  text-align: center;
  margin: 40px auto;
  max-width: 860px;
  padding: 0 20px;
}
.dondeComprar-page .donde-comprar-quote-divider::before, .dondeComprar-page .donde-comprar-quote-divider::after {
  content: none !important;
  display: none !important;
}
.dondeComprar-page .donde-comprar-quote-divider .full-line {
  height: 1px;
  width: 100%;
  background-color: rgba(35, 92, 154, 0.1);
}
.dondeComprar-page .donde-comprar-info-grid-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border-radius: 20px;
}
.dondeComprar-page .donde-comprar-info-grid-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(35, 92, 154, 0.08);
}

.contact-page {
  background-color: #ffffff;
  padding: 60px 20px;
}
.contact-page .contact-container {
  max-width: 1000px;
  margin: 0 auto;
}
.contact-page .contact-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .contact-page .contact-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .contact-page .contact-hero-grid .hero-image {
    display: none;
  }
}
.contact-page .brand-badge {
  font-family: "Open Sans", sans-serif;
  color: #ce8953;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  display: block;
}
.contact-page .hero-title {
  font-family: "Lora", serif;
  font-size: 3.5rem;
  color: #235c9a;
  margin-bottom: 20px;
  font-weight: 400;
}
.contact-page .hero-p {
  font-family: "Open Sans", sans-serif;
  color: #333333;
  font-size: 1.05rem;
  line-height: 1.65;
  margin-bottom: 30px;
  max-width: 450px;
}
@media (max-width: 768px) {
  .contact-page .hero-p {
    margin: 0 auto 30px;
  }
}
.contact-page .mascot-img {
  width: 100%;
  max-width: 250px;
  height: auto;
}
.contact-page .btn-whatsapp {
  display: inline-flex;
  align-items: center;
  font-family: "Open Sans", sans-serif;
  background-color: #235c9a;
  color: #ffffff;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(35, 92, 154, 0.15);
}
.contact-page .btn-whatsapp:hover {
  filter: brightness(1.1);
  transform: translateY(-1px);
  color: #ffffff;
}
.contact-page .contact-info-grid {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 25px;
}
@media (max-width: 768px) {
  .contact-page .contact-info-grid {
    grid-template-columns: 1fr;
  }
}
.contact-page .info-card {
  background: #efe2d5;
  border-radius: 20px;
  padding: 40px;
  text-align: left;
  border: 1px solid rgba(35, 92, 154, 0.03);
}
.contact-page .info-card .icon-loc {
  background: #235c9a;
  color: #ffffff;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  box-shadow: 0 4px 10px rgba(35, 92, 154, 0.12);
}
.contact-page .info-card .icon-loc span {
  font-size: 1.2rem;
}
.contact-page .info-card .info-title {
  font-family: "Lora", serif;
  color: #235c9a;
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-weight: 400;
}
.contact-page .info-card .info-address {
  font-family: "Open Sans", sans-serif;
  color: #333333;
  margin-bottom: 20px;
  line-height: 1.5;
}
.contact-page .info-card .info-divider {
  height: 1px;
  background: rgba(35, 92, 154, 0.08);
  margin-bottom: 20px;
}
.contact-page .info-card .info-list {
  list-style: none;
  padding: 0;
}
.contact-page .info-card .info-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Open Sans", sans-serif;
  color: #333333;
  font-size: 0.9rem;
  margin-bottom: 12px;
}
.contact-page .info-card .info-list li span {
  color: #ce8953;
  font-size: 1.1rem;
}
.contact-page .info-photo {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(35, 92, 154, 0.1);
}
.contact-page .info-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.contact-page .donde-comprar-info-grid-link {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border-radius: 20px;
}
.contact-page .donde-comprar-info-grid-link:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(35, 92, 154, 0.08);
}
.contact-page .social-section {
  text-align: center;
  padding-top: 50px;
}
.contact-page .social-section .social-title {
  font-family: "Lora", serif;
  font-size: 1.6rem;
  color: #235c9a;
  margin-bottom: 28px;
  font-weight: 400;
}
.contact-page .social-section .social-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.contact-page .social-section .social-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  color: #333333;
  font-family: "Open Sans", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.2s ease;
}
.contact-page .social-section .social-item:hover {
  color: #235c9a;
}
.contact-page .social-section .social-item:hover .social-icon {
  background: rgba(206, 137, 83, 0.15);
}
.contact-page .social-section .social-icon {
  width: 68px;
  height: 68px;
  background: #efe2d5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  color: #235c9a;
}
.contact-page .social-section .social-icon svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}
.contact-page .social-section .icon-wa:hover {
  background: #dcf8c6 !important;
  color: #25D366 !important;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}
.contact-page .img-error {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.3;
}
.contact-page .img-error span {
  font-size: 3rem;
}
.contact-page .img-error p {
  font-family: "Open Sans", sans-serif;
  font-size: 10px;
  color: #333333;
  text-align: center;
}

@media (max-width: 768px) {
  .contact-page .contact-info-grid {
    grid-template-columns: 1fr !important;
    gap: 30px;
  }
  .contact-page .hero-title {
    font-size: 2.5rem;
  }
}/*# sourceMappingURL=styles.css.map */