@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Inter", sans-serif;
  ;
  --heading-font: "Barlow Condensed", sans-serif;
  --nav-font: "Barlow Condensed", 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: #ffffff;
  /* Background color for the entire website, including individual sections */
  --default-color: #444444;
  /* Default color used for the majority of the text content across the entire website */
  --heading-color: #000200;
  /* Color for headings, subheadings and title throughout the website */
  --accent-color: #ff5816;
  /* 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: #ffffff;
  /* 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. */
  --gradient-brand: linear-gradient(90deg, #ffef26 0%, #fdc800 28%, #ef7619 68%, #e3312d 100%);
}

/* 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: #5b5b5b;
  /* The default color of the main navmenu links */
  --nav-hover-color: #ff5816;
  /* 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: #444444;
  /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #ff5816;
  /* 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: #f4f4f4;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --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);
}

.text-gradient-brand {
  background: var(--gradient-brand);
  color: #0000;
  -webkit-background-clip: text;
  background-clip: text;
}

p {
  text-align: justify;
}


.ventajas {
  background-color: var(--background-color);
  border-radius: 4px;
  color: var(--contrast-color);
  padding: 10px;
  margin-bottom: .5rem;

  .contenido {
    font-size: .86rem;
  }
}

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 */
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  --background-color: rgba(0, 0, 0, 0);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 10px 0;
  transition: all 0.5s;
  z-index: 997;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

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

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

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

.header .logo span {
  font-size: 30px;
  color: var(--accent-color);
  margin-left: 2px;
  font-weight: 700;
}

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

.header .cta-btn:hover,
.header .cta-btn: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 .logo h1 {
    font-size: 24px;
  }

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

  .header .navmenu {
    order: 3;
  }
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
  --background-color: #5b5b5b;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --nav-color: #ffffff;
}

/* Index Page Header
------------------------------*/
.index-page .header {
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --nav-color: #ffffff;
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: #5b5b5b;
  --nav-color: #ffffff;
}

/*--------------------------------------------------------------
# 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: color-mix(in srgb, var(--nav-color), transparent 30%);
    font-size: 17px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 400;
    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: -27px;
    left: 0;
    background-color: var(--nav-hover-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-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: 17px;
    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 li:hover>a,
  .navmenu .dropdown ul li a.active {
    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: var(--background-color);
  font-size: 14px;
  padding: 40px 0;
  position: relative;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.footer a {
  --anchor-color: #fdc800;
  color: var(--anchor-color);
}

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

.footer a:hover {
  --anchor-color-hover: #eb4c1c;
  color: var(--anchor-color);
}


.footer .footer-content .logo {
  line-height: 1;
}

.footer .footer-content .logo span {
  color: var(--heading-color);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-family: var(--heading-font);
}

.footer .footer-content p {
  font-size: 15px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

.footer .newsletter-form {
  margin-top: 30px;
}

.footer .newsletter-form h5 {
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 15px;
  font-family: var(--heading-font);
}

.footer .newsletter-form .input-group {
  position: relative;
  display: flex;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 2px 10px color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .newsletter-form input[type=email] {
  flex: 1;
  padding: 12px 20px;
  border: none;
  background-color: var(--surface-color);
  color: var(--default-color);
  font-size: 14px;
}

.footer .newsletter-form input[type=email]:focus {
  outline: none;
  box-shadow: none;
}

.footer .newsletter-form input[type=email]::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.footer .newsletter-form .btn-subscribe {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  transition: 0.3s;
}

.footer .newsletter-form .btn-subscribe:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 10%);
}

.footer .newsletter-form .btn-subscribe i {
  font-size: 16px;
}

.footer .newsletter-form .loading,
.footer .newsletter-form .error-message,
.footer .newsletter-form .sent-message {
  font-size: 13px;
  margin-top: 8px;
}

.footer h4 {
  color: var(--heading-color);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 25px;
  position: relative;
  font-family: var(--heading-font);
}

.footer h4:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 2px;
  background-color: var(--accent-color);
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  transition: 0.3s;
}

.footer .footer-links ul li:hover {
  transform: translateX(5px);
}

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  text-decoration: none;
  display: flex;
  align-items: center;
  font-size: 14px;
  transition: 0.3s;
}

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

.footer .footer-links ul a i {
  margin-right: 8px;
  font-size: 12px;
  color: var(--accent-color);
}

.footer .footer-contact .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.footer .footer-contact .contact-item .contact-icon {
  width: 40px;
  height: 40px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

.footer .footer-contact .contact-item .contact-icon i {
  color: var(--accent-color);
  font-size: 16px;
}

.footer .footer-contact .contact-item .contact-info p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 14px;
  line-height: 1.5;
}

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

.footer .social-links a {
  width: 42px;
  height: 42px;
  background-color: color-mix(in srgb, var(--default-color), transparent 92%);
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
  text-decoration: none;
}

.footer .social-links a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

.footer .social-links a i {
  font-size: 16px;
}

.footer .footer-bottom {
  margin-top: 50px;
  padding: 25px 0;
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.footer .footer-bottom .copyright p {
  margin: 0;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

@media (max-width: 991px) {
  .footer .footer-bottom .copyright p {
    text-align: center;
    margin-bottom: 15px;
  }
}

.footer .footer-bottom .footer-bottom-links {
  text-align: right;
  margin-bottom: 8px;
}

@media (max-width: 991px) {
  .footer .footer-bottom .footer-bottom-links {
    text-align: center;
    margin-bottom: 10px;
  }
}

.footer .footer-bottom .footer-bottom-links a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 13px;
  margin-left: 20px;
  text-decoration: none;
}

.footer .footer-bottom .footer-bottom-links a:first-child {
  margin-left: 0;
}

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

@media (max-width: 991px) {
  .footer .footer-bottom .footer-bottom-links a {
    margin: 0 10px;
  }
}

.footer .footer-bottom .credits {
  text-align: right;
  font-size: 13px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

@media (max-width: 991px) {
  .footer .footer-bottom .credits {
    text-align: center;
  }
}

.footer .footer-bottom .credits a {
  color: var(--accent-color);
  text-decoration: none;
}

.footer .footer-bottom .credits a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer {
    padding: 60px 0 0;
  }

  .footer .footer-content {
    text-align: center;
    margin-bottom: 40px;
  }

  .footer .footer-links,
  .footer .footer-contact {
    margin-bottom: 40px;
  }
}



/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: 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 var(--accent-color);
  border-top-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}

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

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

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  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);
  position: relative;
}

.page-title .heading {
  padding: 80px 0;
}

.page-title .heading h1 {
  font-size: 38px;
  font-weight: 400;
}

.page-title nav {
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 20px 0;
}

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

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

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

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

@media (max-width: 1199px) {

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

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 30px;
  position: relative;
}

.section-title h2 {
  font-size: 2rem;
  font-weight: 700;
  padding: 0;
  line-height: 1px;
  margin: 0;
  letter-spacing: 0.5px;

  position: relative;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: var(--accent-color);
  margin: 4px 10px;
}



/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  position: relative;
  /* min-height: 100vh; */
  padding-top: 120px;
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero1 {
  background-image: url("../img/banner-aceite-base.webp");
}

.hero2 {
  background-image: url("../img/banner-aceite-mineral-industrial.webp");
}

.hero3 {
  background-image: url("../img/banner-aceite-base-mineral.webp");
}

.hero4 {
  background-image: url("../img/banner_aceite-sn.webp");
}


.hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .7);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero .hero-content {
  z-index: 3;
}

.hero .hero-content h2 {
  font-size: 3.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-align: center;
}

@media (max-width: 768px) {
  .hero .hero-content h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .hero .hero-content h2 {
    font-size: 2rem;
  }
}

.hero .hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  /* margin-left: auto; */
  margin-right: auto;
  text-align: center;
}

@media (max-width: 768px) {
  .hero .hero-content p {
    font-size: 1.1rem;
  }
}

.hero .hero-content .hero-actions {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.hero .hero-content .hero-actions .btn {
  padding: 15px 30px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 1px;
  border-radius: 6px;
  margin: 0 10px;
  transition: all 0.3s ease;
}

@media (max-width: 576px) {
  .hero .hero-content .hero-actions .btn {
    display: block;
    margin: 10px auto;
    width: fit-content;
  }
}

.hero .hero-content .hero-actions .btn-primary,
.btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.hero .hero-content .hero-actions .btn-primary:hover,
.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  border-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-2px);
}

.hero .hero-content .hero-actions .btn-secondary,
.btn-secondary,
.footer .btn-secondary {
  background-color: transparent;
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 50%);
  color: var(--default-color);
}

.hero .hero-content .hero-actions .btn-secondary:hover,
.btn-secondary:hover,
.btn-secondary:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
  transform: translateY(-2px);
}


.hero .metrics-bar {
  /* margin-top: 64px; */
  padding: 24px;
  background-color: color-mix(in srgb, var(--background-color) 6%, transparent);
  border: 1px solid color-mix(in srgb, var(--contrast-color) 18%, transparent);
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(12px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

@media (max-width: 992px) {
  .hero .metrics-bar {
    margin-top: 48px;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .hero .metrics-bar {
    grid-template-columns: 1fr;
  }
}

.hero .metrics-bar .metric-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 12px;
  border-right: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
  justify-content: center;
}

.hero .metrics-bar .metric-item:last-child {
  border-right: none;
}

@media (max-width: 992px) {
  .hero .metrics-bar .metric-item:nth-child(2n) {
    border-right: none;
  }
}

@media (max-width: 480px) {
  .hero .metrics-bar .metric-item {
    border-right: none;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
    padding-bottom: 16px;
  }

  .hero .metrics-bar .metric-item:last-child {
    border-bottom: none;
    padding-bottom: 8px;
  }
}


.hero .metrics-bar .metric-item .metric-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: center;
}

.hero .metrics-bar .metric-item .metric-text .metric-number {
  font-size: 22px;
  font-weight: 700;
  color: var(--heading-color);
  letter-spacing: -0.01em;
  line-height: 1;
}

.hero .metrics-bar .metric-item .metric-text .metric-label {
  font-size: 13px;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color) 65%, transparent);
}

/*====================================================
INTRO ACEITE BASE MINERAL
====================================================*/

.baseoil-intro {
  background: var(--background-color);
}

.baseoil-title {
  color: var(--accent-color);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: .95;
  margin-bottom: 20px;
  text-align: center;
}

.baseoil-subtitle {
  color: var(--heading-color);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 25px;
  text-align: center;
}

.baseoil-intro p {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--default-color);
  margin-bottom: 1.25rem;
}


.btn-brand {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 4px;
  padding: 14px 28px;
  font-weight: 700;
  border: 2px solid var(--accent-color);
}

.btn-brand:hover {
  background: var(--heading-color);
  border-color: var(--heading-color);
  color: #fff;
}

.btn-outline-brand {
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  border-radius: 0;
  padding: 14px 28px;
  font-weight: 700;
}

.btn-outline-brand:hover {
  background: var(--accent-color);
  color: #fff;
}

/* Imagen */

.intro-image-wrapper {
  position: relative;
}

.intro-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

/* Responsive */

@media (max-width: 991px) {

  .baseoil-title {
    font-size: 3rem;
  }

  .intro-image-wrapper {
    margin-top: 10px;
  }

}



/*====================================================
GRUPO II
====================================================*/

.grupo-section {
  background: #fff;
}

.grupo-kicker {
  display: inline-block;
  color: var(--accent-color);
  letter-spacing: 3px;
  font-size: .75rem;
  font-weight: 700;
  margin-bottom: 15px;
}


.grupo-image img {
  width: 100%;
  display: block;
}

/* encabezados */

.section-kicker {
  color: var(--accent-color);
  letter-spacing: 3px;
  font-size: .75rem;
  font-weight: 700;
}

/* grados */

.grado-card {
  border: 1px solid #e9e9e9;
  padding: 22px;
  background: #fff;
  transition: .3s;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.grado-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--accent-color);
}

.grado-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
}

.grado-group {
  display: block;
  font-size: .75rem;
  letter-spacing: 2px;
  color: #888;
  margin-bottom: 10px;
}

.grado-name {
  font-size: 1.5rem;
  color: var(--heading-color);
}

.image-container {
  position: relative;
  border-radius: 4px;
  overflow: hidden;

}

.image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-vhvi {

  min-width: 72px;

  padding: .55rem 1rem;

  background: rgba(0, 0, 0, .78);

  color: #fff;

  font-size: .9rem;

  font-weight: 700;

  letter-spacing: .08em;

  text-transform: uppercase;

  border-left: 4px solid var(--accent-color);

  backdrop-filter: blur(6px);
}

/* Estilos de Tabla de Especificaciones */


.table-spec {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
}

/* ---------- Encabezado ---------- */

.table-spec thead th {

  padding: 0 0 1rem;

  text-align: left;

  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: .08em;

  color: var(--heading-color);

  border: none;

  border-bottom: 3px solid var(--accent-color);

}

/* ---------- Filas ---------- */

.table-spec tbody tr {

  transition: background .25s ease;

}

.table-spec tbody tr:hover {

  background:
    linear-gradient(90deg,
      rgba(255, 88, 22, .035),
      transparent 70%);

}

/* ---------- Celdas ---------- */

.table-spec td {

  padding: 1.15rem 0;

  vertical-align: middle;

  border: none;

  border-bottom: 1px solid rgba(0, 0, 0, .08);

  color: var(--default-color);

  font-size: .97rem;

  line-height: 1.6;

}



/* ---------- Primera columna ---------- */

.table-spec__property {

  display: flex;

  align-items: center;

  gap: .8rem;

  font-weight: 600;

  color: var(--heading-color);

}

.table-spec__dot {

  width: 8px;

  height: 8px;

  border-radius: 50%;

  flex-shrink: 0;

  background: var(--accent-color);

}

/* ---------- Segunda columna ---------- */

.table-spec td:last-child {

  color: #555;

}

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

@media (max-width:991.98px) {

  .table-spec th {

    padding-bottom: .85rem;

    font-size: .78rem;

  }

  .table-spec td {

    padding: 1rem 0;

    font-size: .92rem;

  }

  .table-spec__property {

    gap: .65rem;

  }

  .table-spec__dot {

    width: 7px;
    height: 7px;

  }

}

@media (max-width:575.98px) {

  .table-spec {

    min-width: 620px;

  }

}

/*==========================================
TABLE SPEC - VARIANTE PRODUCTOS
==========================================*/

.table-spec--products td {

  vertical-align: middle;

}

/*--------------------------------*/

.table-spec--products td:nth-child(1) {

  font-weight: 600;

  color: var(--heading-color);

}


/*--------------------------------*/

@media (max-width:768px) {

  .table-spec--products th,
  .table-spec--products td {

    font-size: .9rem;

  }

}

/* --- ESTILOS APARTADO 4: BENEFICIOS TÉCNICOS --- */
.section-beneficios {
  background-color: var(--background-color);
}

.title-beneficios {
  color: var(--heading-color);
  font-weight: 800;
  letter-spacing: -0.5px;
  font-size: 2.25rem;
}

/* Tarjetas de Beneficios Principales */
.card-beneficio {
  background-color: var(--surface-color);
  border: 1px solid #eef0f2;
  border-radius: 4px;
  padding: 2rem;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.card-beneficio:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.05);
  border-color: rgba(255, 88, 22, 0.2);
}

.icon-wrapper-beneficio {
  width: 50px;
  height: 50px;
  background-color: #fff8f5;
  color: var(--accent-color);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 88, 22, 0.1);
}

.icon-wrapper-beneficio img.icono-color {
  filter: invert(19%) sepia(82%) saturate(3499%) hue-rotate(346deg) brightness(78%) contrast(91%);
}

.card-title-beneficio {
  color: var(--heading-color);
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.card-text-beneficio {
  color: var(--default-color);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
  text-align: left;
}

/* Panel de Beneficios para el Fabricante (Enfoque Comercial B2B) */
.panel-fabricante {
  background-color: #060606;
  color: #ffffff;
  border-radius: 4px;
  padding: 2.5rem;
  height: 100%;
}

.panel-title-fabricante {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.5px;
}

.list-fabricante {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.list-item-fabricante {
  position: relative;
  padding-left: 2rem;
  font-size: 1.05rem;
  color: #e0e0e0;
}

.list-item-fabricante:not(:last-child) {
  margin-bottom: 1.25rem;
}

/* Icono de check personalizado usando variables de marca */
.list-item-fabricante::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -2px;
  color: #fdc800;
  font-weight: 900;
  font-size: 1.2rem;
}

.panel-fabricante .btn-brand {
  background: var(--gradient-brand);
  color: var(--heading-color);
  border: transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.panel-fabricante .btn-brand:hover {
  transform: translateY(-5px);
}

/* --- ESTILOS APARTADO 5: APLICACIONES (ESTILO BENTO GRID IMAGEN_2.PNG) --- */
.section-aplicaciones {
  background-color: var(--background-color);
}

.subtitle-top-aplicaciones {
  color: var(--accent-color);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.title-aplicaciones {
  color: var(--heading-color);
  font-weight: 800;
  letter-spacing: -0.5px;
  font-size: 2.25rem;
}

/* Contenedores Base de las Tarjetas de la Rejilla */
.card-app-bento {
  background-color: var(--surface-color);
  border: 1px solid #e0e0e0;
  border-radius: 0px;
  padding: 2.5rem 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.card-app-bento:hover {
  border-color: var(--accent-color);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}


.card-app-main-featured {
  background: linear-gradient(rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.58)), url('../img/aceite-base-mineral-aplicaciones.webp') center center / cover no-repeat;
  min-height: 340px;
  justify-content: center;
}


.app-counter {
  font-family: monospace;
  font-size: 0.8rem;
  color: #777777;
  font-weight: bold;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.app-card-title {
  color: var(--heading-color);
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: -0.5px;
  margin-bottom: 1rem;
}




.cta-bellota-box {
  background: #060606;
  color: #ffffff;
  padding: 2.5rem;
  border-radius: 4px;
  border-left: 5px solid var(--accent-color);
}

.cta-text-content {
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 0;
}

.cta-highlight {
  color: #fdc800;
  font-weight: 700;
}

.btn-cta-bellota {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.75rem 2rem;
  border-radius: 2px;
  border: none;
  transition: background-color 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-cta-bellota:hover {
  background-color: #e3312d;
  color: #ffffff;
}

/*==========================================
ACORDEÓN
==========================================*/

.accordion-condiciones {

  --bs-accordion-border-width: 0;
  --bs-accordion-bg: transparent;

}

/*----------------------------------*/

.accordion-condiciones .accordion-item {

  border: 0;

  border-bottom: 1px solid rgba(0, 0, 0, .08);

  border-radius: 0;

  background: transparent;

  margin: 0;

}

/*----------------------------------*/

.accordion-condiciones .accordion-button {

  display: flex;

  align-items: center;

  gap: 1rem;

  padding: 1.5rem 0;

  background: transparent;

  color: var(--heading-color);

  font-size: 1.2rem;

  font-weight: 600;

  line-height: 1.5;

  box-shadow: none;

}

.accordion-condiciones .accordion-button:focus {

  box-shadow: none;

}

/*----------------------------------*/

.accordion-icon {

  display: flex;

  align-items: center;

  justify-content: center;

  flex-shrink: 0;

  width: 38px;

  height: 38px;

  border-radius: 50%;

  background: rgba(255, 88, 22, .08);

  transition: .25s;

}

.accordion-icon i {

  color: var(--accent-color);

  font-size: 1rem;

}

/*----------------------------------*/

.accordion-button:not(.collapsed) .accordion-icon {

  background: var(--accent-color);

}

.accordion-button:not(.collapsed) .accordion-icon i {

  color: white;

}

/*----------------------------------*/

.accordion-title {

  flex: 1;

  text-align: left;

}

/*----------------------------------*/

.accordion-button::after {

  width: 1rem;

  height: 1rem;

  background-size: 1rem;

  opacity: .7;

}

/*----------------------------------*/

.accordion-button:not(.collapsed) {

  background: transparent;

  color: var(--heading-color);

}

/*----------------------------------*/

.accordion-body {

  margin-left: 54px;

  margin-bottom: 1.5rem;

  padding: .5rem 0 .5rem 1.5rem;

  border-left: 4px solid var(--accent-color);

  color: var(--default-color);

  line-height: 1.8;

  background: none;

}

/*----------------------------------*/

@media (max-width:991px) {

  .accordion-condiciones .accordion-button {

    font-size: 1rem;

    padding: 1.3rem 0;

  }

}

/*----------------------------------*/

@media (max-width:576px) {

  .accordion-icon {

    width: 34px;

    height: 34px;

  }

  .accordion-body {

    margin-left: 48px;

    padding-left: 1.25rem;

    line-height: 1.7;

  }

}

/* Banner lateral 2 */

.sample-banner {
  display: flex;
  flex-direction: column;
  gap: .75rem;

  width: 100%;

  padding: 1.5rem;

  margin-top: 1.5rem;

  background: var(--surface-color);
  color: var(--heading-color);

  border: 1px solid rgba(0, 0, 0, .08);
  border-left: 5px solid var(--accent-color);
  border-radius: .75rem;

  text-decoration: none;

  box-shadow: 0 .35rem 1rem rgba(0, 0, 0, .05);

  transition:
    transform .25s ease,
    box-shadow .25s ease,
    border-color .25s ease;
}

.sample-banner:hover {
  color: inherit;

  transform: translateY(-3px);

  border-color: rgba(255, 88, 22, .35);

  box-shadow: 0 .75rem 1.75rem rgba(0, 0, 0, .10);
}

.sample-banner__label {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
}

.sample-banner__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;



  color: var(--accent-color);

  font-size: .9rem;
  font-weight: 700;

  text-transform: uppercase;
  letter-spacing: .04em;
}

.sample-banner__cta i {
  font-size: 1.2rem;
  transition: transform .25s ease;
}

.sample-banner:hover .sample-banner__cta i {
  transform: translateX(4px);
}

@media (max-width: 991.98px) {

  .sample-banner {
    padding: 1.25rem;
    margin-top: 1rem;
  }

}

.sample-banner__header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.sample-banner__icon {
  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  width: 3rem;
  height: 3rem;

  border-radius: 50%;

  background: rgba(255, 88, 22, .08);
}

.sample-banner__icon i {
  font-size: 1.35rem;
  color: var(--accent-color);
}

@media (max-width: 575.98px) {

  .sample-banner__header {
    gap: .75rem;
  }

  .sample-banner__icon {
    width: 2.75rem;
    height: 2.75rem;
  }

  .sample-banner__icon i {
    font-size: 1.2rem;
  }

}

/*==========================================
BENEFICIOS
==========================================*/

.section-beneficios h2 {

  color: var(--heading-color);

  font-weight: 800;

  line-height: 1.2;

}

/*==========================================
CARD HORIZONTAL
==========================================*/

.benefit-card {

  display: flex;

  align-items: flex-start;

  gap: 1.75rem;

  height: 100%;

  padding-bottom: 2rem;

  border-bottom: 1px solid rgba(0, 0, 0, .08);

}

.benefit-card__image {

  flex: 0 0 180px;

  margin: 0;

  overflow: hidden;

  border-radius: 2px;

}

.benefit-card__image img {

  width: 100%;

  height: 180px;

  object-fit: cover;

  transition: transform .45s ease;

}

.benefit-card:hover .benefit-card__image img {

  transform: scale(1.05);

}

.benefit-card__content {

  flex: 1;

}

.benefit-card__content h3 {

  margin-bottom: .75rem;

  color: var(--heading-color);

  font-size: 1.3rem;

  font-weight: 700;

  line-height: 1.3;

}

.benefit-card__content p {

  margin: 0;

  color: var(--default-color);

  line-height: 1.75;

}

/*==========================
TABLET
==========================*/

@media (max-width:991.98px) {

  .benefit-card {

    gap: 1.5rem;

  }

  .benefit-card__image {

    flex-basis: 160px;

  }

  .benefit-card__image img {

    height: 160px;

  }

}

/*==========================
MÓVIL
==========================*/

@media (max-width:767.98px) {

  .benefit-card {

    flex-direction: column;

    gap: 1.25rem;

  }

  .benefit-card__image {

    flex: none;

    width: 100%;

  }

  .benefit-card__image img {

    width: 100%;

    height: 220px;

  }

}

/*==========================================
HIGHLIGHTS KPI STYLE
==========================================*/
.section-highlights {
  background: linear-gradient(21deg, rgba(89, 89, 89, 1) 0%, rgba(43, 37, 33, 1) 49%, rgba(0, 0, 0, 1) 100%);
}

.section-highlights h2 {

  color: var(--heading-color);

  font-weight: 800;

}

/*--------------------------------*/

.highlight-kpi {

  height: 100%;

  padding: 1.5rem 1.5rem 1.75rem;

  background: var(--surface-color);

  border: 1px solid rgba(0, 0, 0, .06);

  border-radius: 14px;

  transition: .25s ease;

}

/*--------------------------------*/

.highlight-kpi:hover {

  border-color: rgba(255, 88, 22, .35);

  transform: translateY(-2px);

}

/*--------------------------------*/

.highlight-kpi__value {

  font-size: 1.35rem;

  font-weight: 800;

  color: var(--heading-color);

  letter-spacing: -0.3px;

  margin-bottom: .4rem;

}

/*--------------------------------*/

.highlight-kpi__label {

  font-size: .95rem;

  color: var(--default-color);

  line-height: 1.5;

}

/*--------------------------------*/

@media (max-width:767.98px) {

  .highlight-kpi {

    padding: 1.25rem;

  }

  .highlight-kpi__value {

    font-size: 1.2rem;

  }

}

/*==========================================
SECTOR LIST (NO CARDS)
==========================================*/

.sector-list {

  display: flex;

  flex-direction: column;

  gap: 1.25rem;

}

/*--------------------------------*/

.sector-item {

  display: flex;

  flex-wrap: wrap;

  align-items: baseline;

  gap: .75rem 1rem;

  padding-bottom: 1.25rem;

  border-bottom: 1px solid rgba(0, 0, 0, .08);

}

/*--------------------------------*/

.sector-name {

  font-weight: 700;

  color: var(--heading-color);

  font-size: 1rem;

  white-space: nowrap;

}

/*--------------------------------*/

.sector-desc {

  color: var(--default-color);

  line-height: 1.6;

  flex: 1;

  min-width: 260px;

}

/*--------------------------------*/

@media (max-width:576px) {

  .sector-item {

    flex-direction: column;

    align-items: flex-start;

  }

  .sector-desc {

    min-width: 100%;

  }

}

/*==========================================
CTA HIGHLIGHT INDUSTRIAL
==========================================*/

.cta-highlight {

  background: var(--background-color);

}

/*--------------------------------*/

.cta-highlight__box {

  background: var(--bs-light-border-subtle);

  border: 1px solid rgba(0, 0, 0, .06);

  border-radius: 16px;

  padding: 2.5rem 2rem;

  text-align: center;

  box-shadow: 0 10px 30px rgba(0, 0, 0, .04);

}

/*--------------------------------*/

.cta-highlight__title {

  font-size: 1.8rem;

  font-weight: 800;

  color: var(--heading-color);

  margin-bottom: 1rem;

  line-height: 1.3;

}

/*--------------------------------*/

.cta-highlight__text {

  color: var(--default-color);

  font-size: 1.05rem;

  line-height: 1.7;

  margin-bottom: 1.5rem;

}

/*--------------------------------*/

.cta-highlight__meta {

  display: flex;

  justify-content: center;

  align-items: center;

  gap: 1rem;

  flex-wrap: wrap;

  font-weight: 600;

  color: var(--heading-color);

  margin-bottom: 2rem;

}

/*--------------------------------*/

.cta-highlight__meta .divider {

  width: 4px;

  height: 4px;

  border-radius: 50%;

  background: var(--accent-color);

}

/*--------------------------------*/

.cta-highlight__action .btn-brand {

  padding: .9rem 1.75rem;

  font-weight: 700;

}

/*--------------------------------*/

@media (max-width:768px) {

  .cta-highlight__box {

    padding: 2rem 1.5rem;

  }

  .cta-highlight__title {

    font-size: 1.5rem;

  }

  .cta-highlight__text {

    font-size: 1rem;

  }

  .cta-highlight__meta {

    flex-direction: column;

    gap: .5rem;

  }

  .cta-highlight__meta .divider {

    display: none;

  }

}

/*==========================================
APPLICATION CARDS
==========================================*/

.application-card {

  height: 100%;

  background: #fff;

  border-radius: 2px;

  overflow: hidden;

  border: 1px solid rgba(0, 0, 0, .06);

  transition: .35s ease;

  display: flex;

  flex-direction: column;

}

.application-card:hover {

  transform: translateY(-6px);

  box-shadow: 0 18px 40px rgba(0, 0, 0, .08);

}

/*--------------------------------*/

.application-card__image {

  aspect-ratio: 4/3;

  overflow: hidden;

}

.application-card__image img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: transform .45s ease;

}

.application-card:hover .application-card__image img {

  transform: scale(1.06);

}

/*--------------------------------*/

.application-card__body {
  --background-color-card: #f4f4f4;
  position: relative;

  padding: 3rem 1.25rem 1.5rem;

  flex: 1;

  text-align: center;

  background-color: var(--background-color-card);

}

/*--------------------------------*/

.application-card__icon {

  position: absolute;

  left: 50%;

  top: -28px;

  transform: translateX(-50%);

  width: 56px;

  height: 56px;

  border-radius: 50%;

  background: #fff;

  display: flex;

  align-items: center;

  justify-content: center;

  box-shadow: 0 8px 24px rgba(0, 0, 0, .10);

}

.application-card__icon img {

  width: 28px;

  height: 28px;

  object-fit: contain;

}

/*--------------------------------*/

.application-card__title {

  font-size: 1.2rem;

  font-weight: 700;

  color: var(--heading-color);

  margin-bottom: .75rem;

}

/*--------------------------------*/

.application-card__text {

  margin: 0;

  color: var(--default-color);

  line-height: 1.6;


  text-align: center;

}

/*==========================
TABLET
==========================*/

@media (max-width:991.98px) {

  .application-card__body {

    padding: 2.75rem 1.15rem 1.35rem;

  }

}

/*==========================
MÓVIL
==========================*/

@media (max-width:767.98px) {

  .application-card {

    max-width: 420px;

    margin: auto;

  }

}

/*==================================
COMPARATIVA PRODUCTOS
==================================*/


.product-compare {

  height: 100%;

  padding: 2rem;

  border: 1px solid rgba(0, 0, 0, .08);

  border-radius: 14px;

  background: #fff;

  transition: .25s ease;

}

.product-compare:hover {

  border-color: rgba(255, 88, 22, .35);

  box-shadow: 0 12px 28px rgba(0, 0, 0, .05);

}

.product-label {

  margin-bottom: 1rem;

}

.product-label span {

  display: inline-flex;

  padding: .35rem .8rem;

  border-radius: 999px;

  background: #fff6f2;

  color: var(--accent-color);

  font-size: .8rem;

  font-weight: 700;

  letter-spacing: .05em;

  text-transform: uppercase;

}

.product-compare h3 {

  font-size: 1.7rem;

  font-weight: 700;

  margin-bottom: 1rem;

  color: var(--heading-color);

}

.product-compare p {

  line-height: 1.7;

  margin-bottom: 1rem;

}

.product-compare h4 {

  margin-top: 1.75rem;

  margin-bottom: 1rem;

  font-size: 1rem;

  font-weight: 700;

  color: var(--heading-color);

}

/*========================*/

.product-list {

  list-style: none;

  padding: 0;

  margin: 0;

}

.product-list li {

  position: relative;

  padding-left: 1.25rem;

  margin-bottom: .75rem;

  line-height: 1.5;

}

.product-list li::before {

  content: "";

  position: absolute;

  left: 0;

  top: .55rem;

  width: 6px;

  height: 6px;

  border-radius: 50%;

  background: var(--accent-color);

}

/*========================*/

@media(max-width:991px) {

  .product-compare {

    padding: 1.75rem;

  }

}

@media(max-width:576px) {

  .product-compare {

    padding: 1.5rem;

  }

  .product-compare h3 {

    font-size: 1.45rem;

  }

}

/*==========================================
BADGES DE VISCOSIDAD
==========================================*/

.viscosity-badge {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  padding: .42rem .85rem;

  border-radius: 999px;

  font-size: .82rem;

  font-weight: 700;

  letter-spacing: .02em;

  white-space: nowrap;

  border: 1px solid transparent;

  transition: all .25s ease;

}

/*--------------------------------*/
/* Media - Baja */
/*--------------------------------*/

.viscosity-badge--low {

  color: #1d4ed8;

  background: #eff6ff;

  border-color: #bfdbfe;

}

/*--------------------------------*/
/* Media - Alta */
/*--------------------------------*/

.viscosity-badge--high {

  color: #b45309;

  background: #fffbeb;

  border-color: #fde68a;

}

/*--------------------------------*/

.table-spec tbody tr:hover .viscosity-badge {

  transform: scale(1.03);

}

.table-spec__shared {

  vertical-align: middle;

  text-align: center;

  font-weight: 500;

  line-height: 1.6;

}

.table-spec__shared strong {

  color: var(--accent-color);

  font-size: 1.05rem;

}

.sn-card {

  display: flex;
  flex-direction: column;

  height: 100%;

  background: #fff;

  border: 1px solid rgba(0, 0, 0, .08);

  border-radius: 16px;

  overflow: hidden;

  transition: .3s;

}

#linea-sn .col-lg-12 .sn-card {
  height: auto;
  flex-direction: row;
}



.sn-card:hover {

  box-shadow: 0 15px 35px rgba(0, 0, 0, .06);

  transform: translateY(-4px);

}

.sn-card__image {

  position: relative;

  aspect-ratio: 5/4;

  overflow: hidden;

}


.sn-card__image img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: .45s;

}

.sn-card__content {

  display: flex;

  flex-direction: column;

  flex: 1;

  padding: 1.75rem;

}

.sn-card__content h3 {

  font-size: 1.6rem;

  margin-bottom: 1rem;

}

.sn-card__content p {

  flex: 1;

  line-height: 1.7;

}

.sn-card__actions {

  margin-top: auto;

  display: flex;


  gap: 1rem;

}

@media(max-width:991px) {

  .sn-card {

    flex-direction: column;

  }

  .sn-card__image {

    flex: none;

    aspect-ratio: 16/9;

  }

  #linea-sn .col-lg-12 .sn-card {
    height: 100%;
    flex-direction: column;
  }

}




.sn-card__link {

  display: inline-flex;

  align-items: center;

  gap: .45rem;

  width: max-content;

  font-weight: 600;

  color: var(--heading-color);

  text-decoration: none;

  transition: .25s ease;

}

/*------------------------------*/

.sn-card__link i {

  font-size: .9rem;

  transition: transform .25s ease;

}

/*------------------------------*/

.sn-card__link:hover {

  color: var(--accent-color);

}

.sn-card__link:hover i {

  transform: translateX(4px);

}

/*------------------------------*/

.sn-card__badge {

  position: absolute;

  top: 1rem;

  left: 1rem;

  z-index: 2;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  min-width: 72px;

  padding: .55rem 1rem;

  background: rgba(0, 0, 0, .78);

  color: #fff;

  font-size: .9rem;

  font-weight: 700;

  letter-spacing: .08em;

  text-transform: uppercase;

  border-left: 4px solid var(--accent-color);

  backdrop-filter: blur(6px);

}

/*====================================================
NAV TABS PRODUCTOS SN
====================================================*/

.nav-product {

  gap: .75rem;

  margin-bottom: 2.5rem;

  flex-wrap: wrap;

  overflow-x: auto;

  scrollbar-width: none;

  -ms-overflow-style: none;

  padding-bottom: .35rem;

}

.nav-product::-webkit-scrollbar {

  display: none;

}

/*------------------------------------*/

.nav-product .nav-link {

  position: relative;

  display: flex;

  align-items: center;

  justify-content: center;

  white-space: nowrap;

  padding: .9rem 1.4rem;

  border: 1px solid #ececec;

  border-radius: 50px;

  background: var(--surface-color);

  color: var(--default-color);

  font-weight: 600;

  font-size: .95rem;

  transition: all .25s ease;

}

/* Hover */

.nav-product .nav-link:hover {

  color: var(--accent-color);

  border-color: rgba(255, 88, 22, .25);

  background: #fffaf7;

}

/* Activa */

.nav-product .nav-link.active {

  background: var(--heading-color);

  color: var(--contrast-color);

  border-color: var(--heading-color);

  box-shadow: 0 10px 24px rgba(0, 0, 0, .08);

}

/* Focus accesible */

.nav-product .nav-link:focus {

  box-shadow: 0 0 0 .2rem rgba(255, 88, 22, .18);

}

/*====================================================
TAB CONTENT
====================================================*/

.tab-content {

  margin-top: 2rem;

}

.tab-pane {

  animation: fadeTab .25s ease;

}

/*====================================================
ANIMACIÓN
====================================================*/

@keyframes fadeTab {

  from {

    opacity: 0;

    transform: translateY(8px);

  }

  to {

    opacity: 1;

    transform: translateY(0);

  }

}

/*====================================================
RESPONSIVE
====================================================*/

@media (max-width: 767px) {

  .nav-product {

    justify-content: flex-start;

    gap: .5rem;

  }

  .nav-product .nav-link {

    padding: .75rem 1.15rem;

    font-size: .9rem;

  }

}

/*====================================================
FEATURE ITEMS
====================================================*/

.feature-item {

  position: relative;

  display: flex;
  align-items: center;

  height: 100%;

  padding: 1rem 1.25rem;

  background: var(--surface-color);

  border: 1px solid #ececec;
  border-radius: .5rem;

  color: var(--heading-color);

  font-size: .98rem;
  font-weight: 500;
  line-height: 1.55;

  transition: all .25s ease;

}

/* Acento lateral */

.feature-item::before {

  content: "";

  width: 4px;
  height: 24px;

  border-radius: 4px;

  background: var(--gradient-brand);

  margin-right: 1rem;

  flex-shrink: 0;

}

/* Hover */

.feature-item:hover {

  border-color: rgba(255, 88, 22, .25);

  background: #fffaf7;

  transform: translateY(-2px);

}

/*====================================================
RESPONSIVE
====================================================*/

@media (max-width:768px) {

  .feature-item {

    padding: .9rem 1rem;

    font-size: .95rem;

  }

}


.explora-mas .card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.explora-mas .card-body {
  flex: 1;
}

.explora-mas .row.equal-height .col-lg-4 {
  display: flex;
}

.explora-mas .row.equal-height .card {
  flex: 1;
}

@media (min-width: 992px) {
  main {
    position: relative;
  }
  .footer.gracias {
position: absolute;
bottom: 0;
width: 100%;
  }
}