@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway", sans-serif;
  --nav-font: "Poppins", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
  --background-color: #F6F6F6;
  /* Background color for the entire website, including individual sections */
  --default-color: #666;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #111827;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #009FC3;
  /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #fff;
  /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff;
  /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #666;
  /* The default color of the main navmenu links */
  --nav-hover-color: #009FC3;
  /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #ffffff;
  /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #ffffff;
  /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #666;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #009FC3;
  /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #DDEFF5;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #019FC3;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #fff;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

p {
  text-align: justify;
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: #070c15;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 36px;
  margin-right: 12px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 26px;
  margin: 0;
  border-radius: 4px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 20px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: #070c15;
}

/* Index Page Header
------------------------------*/
.index-page .header {
  --background-color: rgba(255, 255, 255, 1);
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: rgba(255, 255, 255, 0.9);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    font-size: 15px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--accent-color);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul a.active,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
    height: fit-content;
  }
}


/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding: 40px 0;
  position: relative;
}

.footer img {
  background: #fff;
  padding: 1rem;
  border-radius: 1rem;
}

.footer .icon {
  color: var(--accent-color);
  margin-right: 15px;
  font-size: 24px;
  line-height: 0;
}

.footer h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer p a {
  color: var(--contrast-color);
  text-decoration: underline;

}


.footer p a:hover {
  color: var(--bg-highlights-color);

}

.footer .address p {
  margin-bottom: 0px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 5px;
  font-size: 13px;
}

.footer .btn-primary {
  border: 1px solid var(--contrast-color);
  background-color: transparent;
}

.footer .btn-primary:hover {
  background-color: var(--contrast-color);
  color: var(--background-color);
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  --accent-color: #016F88;
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title:before {
  content: "";
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2,
.section-title h1 {
  font-size: 32px;
  font-weight: 700;
  position: relative;
}

.section-title h2:before,
.section-title h2:after,
.section-title h1:before,
.section-title h1:after {
  content: "";
  width: 50px;
  height: 2px;
  background: var(--accent-color);
  display: inline-block;
}

.section-title h2:before,
.section-title h1:before {
  margin: 0 15px 10px 0;
}

.section-title h2:after,
.section-title h1:after {
  margin: 0 0 10px 15px;
}

.section-title p {
  margin-bottom: 0;
}

@media (max-width: 768px) {

  .section-title h2,
  .section-title h1 {
    font-size: 20px;
  }

  .section-title h2:before,
  .section-title h2:after,
  .section-title h1:before,
  .section-title h1:after {
    content: "";
    width: 20px;
    height: 2px;
    background: var(--accent-color);
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Travel Hero Section
--------------------------------------------------------------*/
.travel-hero {

  background-size: cover;
  padding: 80px;
  /* min-height: 100vh; */
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, color-mix(in srgb, var(--background-color), transparent 10%) 0%, color-mix(in srgb, var(--accent-color), transparent 70%) 100%), url("../img/banner-estearato-de-zinc.webp") center center no-repeat;
}


.travel-hero .hero-content .badge-tag {
  display: inline-block;
  background-color: color-mix(in srgb, var(--accent-color), transparent 80%);
  color: var(--accent-color);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 60%);
}

.travel-hero .hero-content .badge-tag i {
  margin-right: 6px;
}

.travel-hero .hero-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  margin-top: 1.5rem;
  letter-spacing: -1px;
  padding-top: 2rem;
}

.travel-hero .hero-content p {
  font-weight: bold;
  text-align: center;
  font-size: 1.15rem;
  max-width: 920px;
  margin: 0 auto;
  line-height: 1.7;
  color: #fff;
}

.travel-hero .btn-explore {
  --accent-color: #00BEEA;
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 2px solid var(--accent-color);
}

.travel-hero .btn-explore:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px color-mix(in srgb, var(--accent-color), transparent 60%);
}

.travel-hero .btn-browse {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  background-color: var(--contrast-color);
  border-color: var(--accent-color);
  color: var(--accent-color);
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.travel-hero .btn-browse:hover {
  transform: translateY(-3px);
}

.travel-hero .search-bar {
  background-color: color-mix(in srgb, var(--surface-color), transparent 5%);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 24px 28px;
  box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.travel-hero .search-bar label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 6px;
}

.travel-hero .search-bar .input-icon {
  position: relative;
}

.travel-hero .search-bar .input-icon i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-color);
  font-size: 1rem;
}

.travel-hero .search-bar .input-icon .form-control {
  padding-left: 40px;
}

.travel-hero .search-bar .form-control {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 10px;
  padding: 11px 14px;
  height: auto;
  background-color: color-mix(in srgb, var(--surface-color), transparent 40%);
  color: var(--default-color);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.travel-hero .search-bar .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 85%);
  background-color: var(--surface-color);
}

.travel-hero .search-bar .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.travel-hero .search-bar .btn-search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 11px 28px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.travel-hero .search-bar .btn-search:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 12%);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 55%);
}

.travel-hero .stats-row {
  --bg-highlights-color: #DDEFF5;
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 16px 0;
  background: color-mix(in srgb, var(--bg-highlights-color), transparent 8%);
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 5%);
  border-radius: 16px;
  padding: 28px 20px;
}

.travel-hero .stats-row .stat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  /* color: color-mix(in srgb, var(--default-color), transparent 20%); */
  font-size: 0.95rem;
}

.travel-hero .stats-row .stat-item i {
  color: var(--accent-color);
  font-size: 1.15rem;
}

.travel-hero .stats-row .stat-item strong {
  --default-color: #666;
  font-weight: 800;
  color: var(--default-color);
}

@media (max-width: 992px) {
  .travel-hero {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .travel-hero .hero-content h2 {
    font-size: 3rem;
  }

  .travel-hero .stats-row {
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .travel-hero {
    padding: 80px 0 50px;
  }

  .travel-hero .hero-content h2 {
    font-size: 2.25rem;
  }

  .travel-hero .hero-content h1 br {
    display: none;
  }

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

  .travel-hero .hero-content .badge-tag {
    font-size: 0.75rem;
    padding: 6px 16px;
  }

  .travel-hero .btn-explore,
  .travel-hero .btn-browse {
    padding: 12px 24px;
    font-size: 0.9rem;
    width: 100%;
    justify-content: center;
  }

  .travel-hero .d-flex {
    flex-direction: column !important;
    align-items: stretch !important;
  }

  .travel-hero .search-bar {
    padding: 20px;
    border-radius: 12px;
  }

  .travel-hero .stats-row {
    gap: 16px;
  }

  .travel-hero .stats-row .stat-item {
    font-size: 0.85rem;
  }
}

/*--------------------------------------------------------------
# Why Us Section
--------------------------------------------------------------*/
.why-us .intro-area {
  margin-bottom: 5rem;
}

@media (max-width: 768px) {
  .why-us .intro-area {
    margin-bottom: 3rem;
  }
}

.why-us .label-tag {
  display: inline-block;
  color: var(--accent-color);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  padding-left: 3rem;
  margin-bottom: 1rem;
}

.why-us .label-tag::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 2rem;
  height: 2px;
  background: var(--accent-color);
}

.why-us .label-tag-center {
  display: inline-block;
  color: var(--accent-color);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
}

.why-us .image-block {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

/* .why-us .image-block::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 55%, color-mix(in srgb, var(--accent-color), transparent 40%) 100%);
  pointer-events: none;
} */

.why-us .image-block img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.why-us .image-block .experience-tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--surface-color);
  padding: 0.85rem 1.25rem;
  border-radius: 12px;
  box-shadow: 0 8px 24px color-mix(in srgb, var(--default-color), transparent 85%);
}

.why-us .image-block .experience-tag i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.why-us .image-block .experience-tag strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--heading-color);
}

.why-us .image-block .experience-tag span {
  font-size: 0.8rem;
  color: color-mix(in srgb, var(--default-color), transparent 35%);
}

@media (max-width: 768px) {
  .why-us .image-block img {
    height: 350px;
  }
}

.why-us .intro-content h1 {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .why-us .intro-content h1 {
    font-size: 1.7rem;
  }
}

.why-us .intro-content p {
  /* font-size: 1.05rem; */
  line-height: 1.8;
  /* color: color-mix(in srgb, var(--default-color), transparent 20%); */
  margin-bottom: 1rem;
}

.why-us .highlight-points {
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

.why-us .highlight-points .point-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.6rem 0;
}

.why-us .highlight-points .point-item i {
  color: var(--accent-color);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.why-us .highlight-points .point-item span {
  font-size: 0.95rem;
  line-height: 1.5;
}

.why-us .review-strip {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  padding: 0.75rem 1.5rem 0.75rem 0.75rem;
  border-radius: 60px;
}

.why-us .review-strip img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.why-us .review-strip .review-info .stars {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  margin-bottom: 0.15rem;
}

.why-us .review-strip .review-info .stars i {
  color: #f5a623;
  font-size: 0.75rem;
}

.why-us .review-strip .review-info .stars span {
  font-size: 0.8rem;
  font-weight: 700;
  margin-left: 0.4rem;
  color: var(--heading-color);
}

.why-us .review-strip .review-info p {
  margin: 0;
  font-size: 0.85rem;
  font-style: italic;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
}

.why-us .differentiators-area {
  padding-top: 4rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

/* .why-us .differentiators-area .diff-header {
  margin-bottom: 3.5rem;
} */

.why-us .differentiators-area .diff-header h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .why-us .differentiators-area .diff-header h3 {
    font-size: 1.8rem;
  }
}

.why-us .differentiators-area .diff-header p {
  font-size: 1.05rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  max-width: 550px;
  margin: 0 auto;
}

.why-us .diff-card {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 2rem;
  border-radius: 14px;
  background: var(--surface-color);
  border-left: 4px solid var(--accent-color);
  box-shadow: 0 4px 20px color-mix(in srgb, var(--default-color), transparent 92%);
  height: 100%;
  transition: all 0.3s ease;
}

.why-us .diff-card:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 85%);
}

.why-us .diff-card .diff-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: color-mix(in srgb, var(--accent-color), transparent 88%);
  color: var(--accent-color);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: all 0.3s ease;
}

.why-us .diff-card:hover .diff-icon {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.why-us .diff-card .diff-body h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-align: center;
}

.why-us .diff-card .diff-body p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 0;
}

.why-us .diff-card ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  text-align: center;
  padding-left: 0;
  /* flex-wrap: wrap; */

  i {
    color: var(--accent-color);
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .why-us .diff-card {
    padding: 1.5rem;
  }
}



/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery .photo-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  margin: 0;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.gallery .photo-card a {
  display: block;
  position: relative;
}

.gallery .photo-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery .photo-card.wide img {
  aspect-ratio: 16/9;
}

.gallery .photo-card .card-hover {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: linear-gradient(to top, color-mix(in srgb, var(--default-color), transparent 20%) 0%, color-mix(in srgb, var(--default-color), transparent 80%) 40%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 24px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery .photo-card .card-hover .expand-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-color);
  color: var(--contrast-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transform: translateY(20px);
  transition: transform 0.4s ease, background 0.3s ease;
}

.gallery .photo-card .card-hover .expand-btn:hover {
  background: color-mix(in srgb, var(--accent-color), #000 15%);
}

.gallery .photo-card:hover {
  border-color: var(--accent-color);
  box-shadow: 0 8px 30px color-mix(in srgb, var(--accent-color), transparent 75%);
}

.gallery .photo-card:hover img {
  transform: scale(1.06);
}

.gallery .photo-card:hover .card-hover {
  opacity: 1;
}

.gallery .photo-card:hover .card-hover .expand-btn {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .gallery .photo-card.wide img {
    aspect-ratio: 4/3;
  }

  .gallery .photo-card .card-hover .expand-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
}

.ventajas {
  background: var(--surface-color);
  border: 1px solid var(--accent-color);
  border-radius: 4px;
  color: var(--accent-color);
  padding: 10px;
  margin-bottom: .5rem;
}


input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0;
  /* <-- Apparently some margin are still there even though it's hidden */
}

input[type=number] {
  -moz-appearance: textfield;
  /* Firefox */
}



button {
  border: transparent;
}


#descripcion,
#para-que-sirve,
#usos,
#sinonimos,
#aplicaciones,
#beneficios,
#presentaciones,
#ventajas {
  scroll-margin-top: 120px;
}

/*=====================================
=   Presentaciones Monoestearato      =
=====================================*/

.presentation-card {
  background: var(--surface-color);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0, 159, 195, .12);
  transition: .35s ease;
  height: 100%;
}

.presentation-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(17, 24, 39, .08);
}

.presentation-image {
  background: linear-gradient(180deg,
      rgba(0, 159, 195, .08) 0%,
      rgba(0, 159, 195, .02) 100%);
  padding: 30px;
  text-align: center;
}

.presentation-image img {
  max-height: 220px;
  width: auto;
  object-fit: contain;
}

.presentation-content {
  padding: 30px;
}

.presentation-badge {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 30px;
  background: rgba(0, 159, 195, .08);
  color: var(--accent-color);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 15px;
}

.presentation-content h3 {
  color: var(--heading-color);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.presentation-content p {
  color: var(--default-color);
  line-height: 1.8;
  margin-bottom: 15px;
}

.applications-title {
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 10px;
}

.presentation-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.presentation-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  color: var(--default-color);
  line-height: 1.7;
}

.presentation-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-color);
  position: absolute;
  left: 0;
  top: 9px;
}

@media (max-width: 991px) {

  .presentation-content {
    padding: 25px;
  }

  .presentation-content h3 {
    font-size: 1.5rem;
  }

}

@media (max-width: 767px) {

  .presentation-image {
    padding: 20px;
  }

  .presentation-image img {
    max-height: 180px;
  }

  .presentation-content {
    padding: 22px;
  }

}

/*=====================================
=    Presentaciones Disponibles       =
=====================================*/

.product-format-section {
  margin-top: 50px;
  text-align: center;
}

.product-format-section h4 {
  color: var(--heading-color);
  font-weight: 700;
  margin-bottom: 10px;
}

.format-option {
  background: var(--surface-color);
  border-radius: 18px;
  padding: 25px;
  height: 100%;
  border: 1px solid rgba(0, 159, 195, .12);
  transition: .3s ease;
}

.format-option:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 159, 195, .30);
  box-shadow: 0 15px 35px rgba(0, 0, 0, .06);
}

.format-image {
  min-height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.format-image img {
  max-width: 140px;
  max-height: 140px;
  object-fit: contain;
}

.format-name {
  margin-top: 15px;
  color: var(--heading-color);
  font-weight: 600;
  line-height: 1.4;
}

@media (max-width: 767px) {

  .format-image {
    min-height: 120px;
  }

  .format-image img {
    max-width: 100px;
    max-height: 100px;
  }

  .format-name {
    font-size: .9rem;
  }

}

/*--------------------------------------------------------------
# Estearato de Zinc Hero
--------------------------------------------------------------*/

.estearato-zinc-section {
  background-color: var(--background-color);
}

.estearato-zinc-section h1 {
  color: var(--heading-color);
}

.estearato-zinc-section .section-badge {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.65rem 1.25rem;
  border-radius: 50rem;
  background-color: rgba(0, 159, 195, 0.12);
  color: var(--accent-color);
  font-size: 0.875rem;
  font-weight: 600;
}

.estearato-zinc-section .section-subtitle {
  color: var(--accent-color);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}

.estearato-zinc-section .image-card {

  background-color: var(--surface-color);
  border-radius: 1.5rem;
  box-shadow: 0 10px 35px rgba(17, 24, 39, 0.08);
}

.estearato-zinc-section .image-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1rem;
}

@media (max-width: 991.98px) {

  .estearato-zinc-section {
    text-align: center;
  }

  .estearato-zinc-section .section-subtitle {
    font-size: 1.125rem;
  }

}

#inicio,
#descripcion,
#propiedades,
#funcion,
#usos,
#quimicos-pledca,
#preguntas-frecuentes {
  scroll-margin-top: 90px;
}

 /*--------------------------------------------------------------
# Descripción - Estearato de Zinc
--------------------------------------------------------------*/

.zinc-description-section {
  background-color: var(--surface-color);
  border-radius: 1rem;
}

.zinc-info-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background-color: var(--background-color);
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 1.25rem;
}

/* Card header */

.zinc-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 1.5rem 1.25rem;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  background-color: var(--surface-color);
}

.zinc-card-header h3 {
  margin: 0;
  color: var(--heading-color);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.3;
}

.zinc-card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-size: 0.8rem;
  font-weight: 700;
}

/* Card body */

.zinc-card-body {
  flex: 1;
  padding: 1.5rem;
}

.zinc-card-body p {
  color: var(--default-color);
  line-height: 1.75;
}

/* Technical specifications */

.zinc-specs-wrapper {
  overflow-x: auto;
}

.zinc-specs-table {
  width: 100%;
  margin: 0;
  border-collapse: separate;
  border-spacing: 0;
  color: var(--default-color);
  font-size: 0.925rem;
}

.zinc-specs-table tr:first-child th {
  padding: 0.75rem 0.85rem;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.zinc-specs-table tr:first-child th:first-child {
  border-radius: 0.6rem 0 0 0;
}

.zinc-specs-table tr:first-child th:last-child {
  border-radius: 0 0.6rem 0 0;
}

.zinc-specs-table tr:not(:first-child) td {
  padding: 0.7rem 0.85rem;
  border-bottom: 1px solid rgba(17, 24, 39, 0.07);
  background-color: var(--surface-color);
  vertical-align: middle;
}

.zinc-specs-table tr:not(:first-child):last-child td {
  border-bottom: 0;
}

.zinc-specs-table td:first-child {
  width: 42%;
  color: var(--heading-color);
  font-weight: 600;
}

.zinc-specs-table td:last-child {
  color: var(--default-color);
}

/* Note */

.zinc-specs-note {
  margin-top: 1rem;
  color: var(--default-color);
  font-size: 0.8rem;
  line-height: 1.5;
  text-align: start;
}

/* Hover */

.zinc-specs-table tr:not(:first-child):hover td {
  background-color: rgba(0, 159, 195, 0.05);
}

/* Responsive */

@media (max-width: 991.98px) {

  .zinc-card-header {
    padding: 1.25rem;
  }

  .zinc-card-body {
    padding: 1.25rem;
  }

}

@media (max-width: 575.98px) {

  .zinc-card-header h3 {
    font-size: 1.15rem;
  }

  .zinc-card-number {
    width: 2.25rem;
    height: 2.25rem;
  }

  .zinc-specs-table {
    min-width: 520px;
  }

}

/*--------------------------------------------------------------
# Propiedades - Estearato de Zinc
--------------------------------------------------------------*/

.zinc-properties-section {
  background-color: var(--background-color);
}

.zinc-properties-section .section-label {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: var(--accent-color);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.zinc-properties-section .section-title {
  margin-bottom: 1rem;
  color: var(--heading-color);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.25;
}

.zinc-properties-section .section-intro {
  margin-bottom: 0;
  color: var(--default-color);
  line-height: 1.7;
}

/* Property cards */

.zinc-properties-section .property-card {
  position: relative;
  height: 100%;
  min-height: 145px;
  padding: 1.5rem;
  overflow: hidden;
  background-color: var(--surface-color);
  border: 1px solid rgba(17, 24, 39, 0.07);
  border-radius: 1rem;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.zinc-properties-section .property-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background-color: var(--accent-color);
  opacity: 0.85;
}

.zinc-properties-section .property-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 159, 195, 0.25);
  box-shadow: 0 8px 25px rgba(17, 24, 39, 0.07);
}

.zinc-properties-section .property-number {
  display: block;
  margin-bottom: 1rem;
  color: var(--accent-color);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.zinc-properties-section .property-card p {
  margin: 0;
  color: var(--heading-color);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}

/* Responsive */

@media (max-width: 575.98px) {

  .zinc-properties-section .property-card {
    min-height: auto;
    padding: 1.25rem;
  }

}


.btn-primary {
  background-color: var(--accent-color);
  border: 1px solid var(--accent-color);
}

.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 25%);
}

/*--------------------------------------------------------------
# Para qué sirve - Estearato de Zinc
--------------------------------------------------------------*/

.zinc-use-section {
  background-color: var(--surface-color);
}

.zinc-use-card {
  overflow: hidden;
  background-color: var(--background-color);
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 1.5rem;
}

/* Content */

.zinc-use-content {
  padding: 2rem 2rem 1.5rem;
}

.zinc-use-content .section-label {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: var(--accent-color);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.zinc-use-content h3 {
  margin-bottom: 1.25rem;
  color: var(--heading-color);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.25;
}

.zinc-use-content p {
  margin-bottom: 1rem;
  color: var(--default-color);
  line-height: 1.75;
}

/* Functions */

.zinc-functions {
  padding: 1.5rem 2rem;
  background-color: var(--surface-color);
  border-top: 1px solid rgba(17, 24, 39, 0.07);
  border-bottom: 1px solid rgba(17, 24, 39, 0.07);
}

.zinc-functions-heading {
  margin-bottom: 1rem;
}

.zinc-functions-heading span {
  color: var(--heading-color);
  font-size: 0.9rem;
  font-weight: 700;
}

.zinc-function-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.zinc-function-pill {
  display: inline-flex;
  align-items: center;
  min-height: 2.5rem;
  padding: 0.55rem 1rem;
  background-color: rgba(0, 159, 195, 0.09);
  border: 1px solid rgba(0, 159, 195, 0.2);
  border-radius: 50rem;
  color: var(--heading-color);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.3;
}

/* CTA */

.zinc-use-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  background-color: var(--accent-color);
}

.zinc-use-cta span {
  color: var(--contrast-color);
  font-size: 0.95rem;
  font-weight: 600;
}

.zinc-use-button {
  flex-shrink: 0;
  padding: 0.7rem 1.25rem;
  background-color: var(--contrast-color);
  border: 1px solid var(--contrast-color);
  border-radius: 0.5rem;
  color: var(--accent-color);
  font-weight: 600;
}

.zinc-use-button:hover,
.zinc-use-button:focus {
  background-color: var(--heading-color);
  border-color: var(--heading-color);
  color: var(--contrast-color);
}

/* Responsive */

@media (max-width: 767.98px) {

  .zinc-use-content {
    padding: 1.5rem;
  }

  .zinc-functions {
    padding: 1.5rem;
  }

  .zinc-use-cta {
    align-items: flex-start;
    flex-direction: column;
    padding: 1.5rem;
  }

  .zinc-use-button {
    width: 100%;
    text-align: center;
  }

}

@media (max-width: 575.98px) {

  .zinc-function-pill {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

}

/*--------------------------------------------------------------
# Usos del Estearato de Zinc
--------------------------------------------------------------*/

.zinc-uses-section {
  background-color: var(--background-color);
}

.zinc-uses-section .uses-title {
  margin-bottom: 0;
  color: var(--heading-color);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  text-align: center;
}

.zinc-uses-section .uses-card {
  height: 100%;
  padding: 2rem;
  background-color: var(--surface-color);
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 1.25rem;
}

.zinc-uses-section .uses-card h4 {
  margin-bottom: 1rem;
  color: var(--heading-color);
  font-size: 1.35rem;
  font-weight: 700;
}

.zinc-uses-section .uses-card p {
  color: var(--default-color);
  line-height: 1.7;
}

.zinc-uses-section .applications-label {
  /* margin-top: 1.5rem; */
  margin-bottom: 1rem;
  font-weight: 600;
  color: var(--heading-color);
}

/* Imagen */

.zinc-uses-section .uses-image-card {
  padding: 0;
}

.zinc-uses-section .uses-image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
}

/* Aplicaciones */

.zinc-uses-section .applications-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.zinc-uses-section .applications-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
}

.zinc-uses-section .applications-list li:last-child {
  margin-bottom: 0;
}

.zinc-uses-section .applications-list img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 20%;
}

.zinc-uses-section .applications-list span {
  color: var(--default-color);
  line-height: 1.5;
}

/* Beneficios */

.zinc-uses-section .benefits-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.zinc-uses-section .benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.zinc-uses-section .benefits-list li:last-child {
  margin-bottom: 0;
}

.zinc-uses-section .benefits-list i {
  color: var(--accent-color);
  font-size: 1.1rem;
  line-height: 1.2;
}

.zinc-uses-section .benefits-list span {
  color: var(--default-color);
  line-height: 1.6;
}

/* Responsive */

@media (max-width: 991.98px) {

  .zinc-uses-section .uses-card {
    padding: 1.5rem;
  }

}

/*--------------------------------------------------------------
# Industria de pinturas y recubrimientos
--------------------------------------------------------------*/

.zinc-paints-section {
  background-color: var(--surface-color);
}


.paints-image-card img {
  
  border-radius: 1rem;
}

.paints-content h3 {
  margin-bottom: 1.25rem;
  color: var(--heading-color);
  font-size: 2rem;
  font-weight: 700;
}

.paints-content p {
  color: var(--default-color);
  line-height: 1.7;
}

.paints-list {
  margin: 1.5rem 0;
  padding: 0;
  list-style: none;
}

.paints-list li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.paints-list li:last-child {
  margin-bottom: 0;
}

.paints-list img {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.paints-list span {
  color: var(--default-color);
}

/*--------------------------------------------------------------
# Sectores
--------------------------------------------------------------*/

.zinc-sectors-section {
  background-color: var(--surface-color);
}

.sectors-card {
  padding: 2rem;
  background-color: var(--background-color);
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 1.25rem;
}

.sectors-card h3 {
  margin-bottom: 1.5rem;
  color: var(--heading-color);
  font-size: 1.75rem;
  font-weight: 700;
}

.sector-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.sector-pill {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.65rem 1rem;
  background-color: rgba(0, 159, 195, 0.08);
  border: 1px solid rgba(0, 159, 195, 0.18);
  border-radius: 50rem;
  color: var(--heading-color);
  font-size: 0.95rem;
  font-weight: 600;
}

@media (max-width: 991.98px) {

  .sectors-card {
    padding: 1.5rem;
  }

}

@media (max-width: 575.98px) {

  .sector-pill {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

}

/*--------------------------------------------------------------
# Químicos Pledca
--------------------------------------------------------------*/

.pledca-section {
  background-color: var(--background-color);
}

.pledca-image-card {
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 1.5rem;
}

.pledca-image-card img {
  width: 100%;
  border-radius: 1rem;
}

.pledca-content h2 {
  margin-bottom: 1.25rem;
  color: var(--heading-color);
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
}

.pledca-content p {
  color: var(--default-color);
  line-height: 1.75;
}

.pledca-subtitle {
  margin-top: 2rem;
  margin-bottom: 1.25rem;
  color: var(--heading-color);
  font-size: 1.4rem;
  font-weight: 700;
}

/* Ventajas */

.pledca-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pledca-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.pledca-benefits i {
  color: var(--accent-color);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.pledca-benefits span {
  color: var(--default-color);
  line-height: 1.6;
}

/* Calidad */

.quality-box {
  margin-top: 2rem;
  padding: 1.5rem;
  background-color: var(--surface-color);
  border-left: 4px solid var(--accent-color);
  border-radius: 1rem;
}

.quality-title {
  margin-bottom: 1rem;
  color: var(--heading-color);
  font-size: 1.25rem;
  font-weight: 700;
}

.quality-box p {
  margin: 0;
}

/* Responsive */

@media (max-width: 991.98px) {

  .pledca-benefits {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 575.98px) {

  .pledca-image-card,
  .quality-box {
    padding: 1.25rem;
  }

}

/*--------------------------------------------------------------
# Preguntas Frecuentes
--------------------------------------------------------------*/

.zinc-faq-section {
  background-color: var(--surface-color);
}

.zinc-faq-section .section-heading h2 {
  margin-bottom: 0;
  color: var(--heading-color);
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
}

/* Accordion */

.zinc-faq-accordion .accordion-item {
  overflow: hidden;
  margin-bottom: 1rem;
  background-color: var(--background-color);
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 1rem;
}

.zinc-faq-accordion .accordion-item:last-child {
  margin-bottom: 0;
}

.zinc-faq-accordion .accordion-header {
  margin: 0;
}

.zinc-faq-accordion .accordion-button {
  padding: 1.5rem;
  background-color: var(--surface-color);
  color: var(--heading-color);
  font-size: 1.1rem;
  font-weight: 600;
  box-shadow: none;
}

.zinc-faq-accordion .accordion-button:not(.collapsed) {
  background-color: rgba(0, 159, 195, 0.08);
  color: var(--heading-color);
  box-shadow: none;
}

.zinc-faq-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.zinc-faq-accordion .accordion-button::after {
  flex-shrink: 0;
}

.zinc-faq-accordion .accordion-body {
  padding: 1.5rem;
  color: var(--default-color);
  line-height: 1.8;
  background-color: var(--background-color);
}

/* Responsive */

@media (max-width: 767.98px) {

  .zinc-faq-accordion .accordion-button {
    padding: 1.25rem;
    font-size: 1rem;
  }

  .zinc-faq-accordion .accordion-body {
    padding: 1.25rem;
  }

}

/*--------------------------------------------------------------
# Estearato de Zinc para Procesamiento de Plásticos
--------------------------------------------------------------*/

.zinc-processing-section {
  background-color: var(--background-color);
}

.processing-title {
  margin-bottom: 1rem;
  color: var(--heading-color);
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
}

.processing-intro {
  margin: 0;
  color: var(--default-color);
  font-size: 1.05rem;
  line-height: 1.75;
  text-align: center;
}


/*--------------------------------------------------------------
# Cards de aplicaciones
--------------------------------------------------------------*/

.processing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  background-color: var(--surface-color);
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 1.25rem;
  box-shadow: 0 8px 30px rgba(17, 24, 39, 0.05);
}

.processing-card-image {
  position: relative;
  height: 230px;
  overflow: hidden;
}

.processing-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.processing-card-divider {
  position: relative;
  height: 0;
  border-top: 1px solid rgba(0, 159, 195, 0.25);
}

.processing-icon {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 50%;
  width: 64px;
  height: 64px;
  padding: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--surface-color);
  border: 2px solid var(--accent-color);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 5px 20px rgba(17, 24, 39, 0.1);
}

.processing-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.processing-card-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 2.5rem 1.75rem 1.75rem;
}

.processing-card-content h3 {
  margin-bottom: 0.9rem;
  color: var(--heading-color);
  font-size: 1.4rem;
  font-weight: 700;
  text-align: center;
}

.processing-card-content p {
  margin: 0;
  color: var(--default-color);
  line-height: 1.7;
  text-align: center;
}


/*--------------------------------------------------------------
# Ventajas
--------------------------------------------------------------*/

.processing-advantages {
  /* margin-top: 4rem; */
  padding: 2.5rem;
  background-color: var(--surface-color);
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 1.25rem;
}

.advantages-label {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: var(--accent-color);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.advantages-heading h3 {
  margin: 0;
  color: var(--heading-color);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.3;
}

.advantages-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.advantage-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  min-height: 80px;
  padding: 1rem;
  background-color: var(--background-color);
  border: 1px solid rgba(17, 24, 39, 0.06);
  border-radius: 0.9rem;
  color: var(--default-color);
  line-height: 1.55;
}

.advantage-item strong {
  color: var(--heading-color);
}

.advantage-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  color: var(--accent-color);
  font-size: 1.2rem;
}

.advantage-item > div:last-child {
  padding-top: 0.35rem;
}


/*--------------------------------------------------------------
# Responsive
--------------------------------------------------------------*/

@media (max-width: 991.98px) {

  .processing-card-image {
    height: 220px;
  }

  .processing-advantages {
    padding: 2rem;
  }

}

@media (max-width: 767.98px) {

  .processing-card-image {
    height: 240px;
  }

  .advantages-list {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 575.98px) {

  .processing-title {
    font-size: 1.9rem;
  }

  .processing-card-image {
    height: 210px;
  }

  .processing-card-content {
    padding: 2.5rem 1.4rem 1.5rem;
  }

  .processing-advantages {
    margin-top: 3rem;
    padding: 1.5rem;
  }

  .advantages-heading h3 {
    font-size: 1.5rem;
  }

}

/*--------------------------------------------------------------
# CTA Estearato de Zinc
--------------------------------------------------------------*/

.zinc-cta-section {
    padding: 70px 0;
    background-color: var(--background-color);
}


/*--------------------------------------------------------------
# Banner principal
--------------------------------------------------------------*/

.zinc-cta-banner {
    position: relative;
    overflow: hidden;
    background-color: var(--surface-color);
    border-radius: 12px;
    box-shadow: 0 8px 28px rgba(17, 24, 39, 0.08);
}

.zinc-cta-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 330px;
    padding: 45px 35px 45px 45px;
}

.zinc-cta-content h2 {
    max-width: 440px;
    margin: 0;
    color: #092342;
    font-size: clamp(2rem, 3vw, 2.7rem);
    font-weight: 700;
    line-height: 1.08;
}

.zinc-cta-line {
    width: 34px;
    height: 3px;
    margin: 17px 0 12px;
    background-color: var(--accent-color);
}

.zinc-cta-content p {
    max-width: 370px;
    margin: 0 0 20px;
    color: var(--default-color);
    font-size: 0.95rem;
    line-height: 1.55;
}


/*--------------------------------------------------------------
# Botón
--------------------------------------------------------------*/

.zinc-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    min-height: 46px;
    padding: 0.8rem 1.5rem;
    background-color: #092342;
    border: 2px solid #092342;
    border-radius: 6px;
    color: var(--contrast-color);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: all 0.25s ease;
}

.zinc-cta-button:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--contrast-color);
}


/*--------------------------------------------------------------
# Imagen
--------------------------------------------------------------*/

.zinc-cta-image {
    position: relative;
    height: 100%;
    min-height: 330px;
    overflow: hidden;
}

/*
 * La imagen sobresale visualmente hacia el contenido
 * mediante un recorte curvo.
 */
.zinc-cta-image::before {
    content: "";
    position: absolute;
    z-index: 1;
    top: -15%;
    left: -22%;
    width: 32%;
    height: 130%;
    background-color: var(--surface-color);
    border-radius: 50%;
}

.zinc-cta-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}


/*--------------------------------------------------------------
# Cintillo de beneficios
--------------------------------------------------------------*/

.zinc-cta-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 8px 0 0;
    padding: 13px 20px;
    background-color: #092342;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(17, 24, 39, 0.08);
}

.zinc-cta-feature {
    display: flex;
    align-items: center;
    min-height: 62px;
    padding: 5px 20px;
}

.zinc-cta-feature + .zinc-cta-feature {
    border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.zinc-cta-feature-icon {
    display: flex;
    flex: 0 0 44px;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-right: 12px;
    border: 1px solid var(--accent-color);
    border-radius: 50%;
    color: var(--contrast-color);
    font-size: 1.2rem;
}

.zinc-cta-feature-content {
    display: flex;
    flex-direction: column;
}

.zinc-cta-feature-content strong {
    margin-bottom: 3px;
    color: var(--contrast-color);
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.2;
}

.zinc-cta-feature-content span {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.8rem;
    line-height: 1.35;
}


/*--------------------------------------------------------------
# Cintillo de confianza
--------------------------------------------------------------*/

.zinc-cta-trust {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 2rem;
    padding: 10px 20px;
    background-color: #edf5fc;
    border-radius: 8px;
}

.zinc-cta-trust-icon {
    display: flex;
    flex: 0 0 38px;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: #dcecff;
    border-radius: 50%;
    color: var(--accent-color);
    font-size: 1.15rem;
}

.zinc-cta-trust p {
    margin: 0;
    color: #425466;
    font-size: 1rem;
    line-height: 1.45;
}

.zinc-cta-trust strong {
    color: #075b73;
    font-weight: 700;
}


/*--------------------------------------------------------------
# Tablet
--------------------------------------------------------------*/

@media (max-width: 992px) {

    .zinc-cta-content {
        min-height: 300px;
        padding: 40px 30px;
    }

    .zinc-cta-content h2 {
        font-size: 2.2rem;
    }

    .zinc-cta-image {
        min-height: 300px;
    }

    .zinc-cta-image::before {
        content: none;
    }

    .zinc-cta-feature {
        padding: 5px 12px;
    }

    .zinc-cta-feature-icon {
        flex-basis: 40px;
        width: 40px;
        height: 40px;
        margin-right: 9px;
    }

}


/*--------------------------------------------------------------
# Mobile
--------------------------------------------------------------*/

@media (max-width: 767.98px) {

    .zinc-cta-section {
        padding: 50px 0;
    }

    .zinc-cta-banner {
        border-radius: 10px;
    }

    .zinc-cta-content {
        min-height: auto;
        padding: 35px 25px 30px;
    }

    .zinc-cta-content h2 {
        max-width: 100%;
        font-size: 2rem;
    }

    .zinc-cta-content p {
        max-width: 100%;
    }

    .zinc-cta-image {
        min-height: 280px;
    }


    .zinc-cta-image::before {
       content: none;
    }

    .zinc-cta-features {
        grid-template-columns: 1fr;
        padding: 10px 15px;
    }

    .zinc-cta-feature {
        min-height: 62px;
        padding: 10px 5px;
    }

    .zinc-cta-feature + .zinc-cta-feature {
        border-top: 1px solid rgba(255, 255, 255, 0.18);
        border-left: 0;
    }

    .zinc-cta-feature-icon {
        flex-basis: 42px;
        width: 42px;
        height: 42px;
    }

    .zinc-cta-feature-content strong {
        font-size: 0.78rem;
    }

    .zinc-cta-feature-content span {
        font-size: 0.68rem;
    }

    .zinc-cta-trust {
        align-items: flex-start;
        padding: 12px 15px;
    }

    .zinc-cta-trust p {
        font-size: 0.68rem;
    }

}


/*--------------------------------------------------------------
# Mobile pequeño
--------------------------------------------------------------*/

@media (max-width: 575.98px) {

    .zinc-cta-content {
        padding: 30px 20px 25px;
    }

    .zinc-cta-content h2 {
        font-size: 1.8rem;
    }

    .zinc-cta-image {
        min-height: 230px;
    }

    .zinc-cta-button {
        width: 100%;
    }

    .zinc-cta-trust-icon {
        flex-basis: 34px;
        width: 34px;
        height: 34px;
        font-size: 1rem;
    }

}