@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  --dark-blue: #000661;
  --light-blue: #25a2d0;
  --gold: #be9a3e;
  --black: #0d0d0d;
  --off-white: #f5f5f5;
  --btn-bg: #ff5533;
  --btn-bg-hover: #26a3d1;
  --dark-bg: #013c63;
  --font-family: 'Poppins', var(--bs-font-sans-serif);
}

.btn-custom-primary {
  color: white;
  background-color: var(--btn-bg);
  font-weight: 700;
  border: none;
  border-radius: 24px;
  border-color: var(--btn-bg);
  padding: 10px 40px;
  transition: all 0.3s ease;
}

.btn-custom-primary:hover,
.btn-custom-primary:focus,
.btn-custom-primary:active {
  color: white;
  background-color: var(--btn-bg-hover);
}

body {
  font-family: var(--font-family);
}

section {
  padding: 82px 0;
}

.enhance-gold {
  color: var(--gold);
  font-weight: 600;
}

.enhance-blue {
  color: var(--light-blue);
  font-weight: 600;
}

.bt a {
  text-decoration: none;
  color: white;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 24px;
  background-color: var(--btn-bg);
  padding: 14px 40px;
  transition: all 0.3s ease;
}

.bt a:hover {
  color: white;
  background-color: var(--btn-bg-hover);
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 30px;
}

.title-enhance {
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, #d4af37, #f4d03f);
  margin-bottom: 20px;
}

p {
  color: black;
}

.logo {
  max-width: 180px;
  width: 100%;
}

.hero-section {
  background-image: url("../images/banner-cristal-temper-background-topo.png");
  background-size: cover;
  background-position: center;
}

.home {
  padding: 92px 0px;
}

.img-solucoes {
  display: grid;
  place-items: center;
}

.img-solucoes img {
  max-width: 100%;
  height: auto;
  border-radius: 24px;
}

.beneficios {
  background-color: var(--dark-blue);
}

.beneficios .box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
}

.img-box img {
  width: 160px;
}

.beneficios .box {
  border: none;
  border-radius: 24px;
  height: 430px;
}

.beneficios .box h3 {
  font-size: 20px;
}

.beneficios .box p {
  font-size: 14px;
  color: black;
}

.beneficios .bt {
  display: grid;
  place-items: center;
}

.produtos {
  background-color: var(--dark-bg);
}

/* Produtos Slider Styles */
.produtos-slider {
  padding: 20px 0;
}

.produto-item {
  margin: 0 15px;
}

.produto-image {
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: 20px;
}

.produto-image img {
  width: 75%;
  height: auto;
  object-fit: cover;
  border-radius: 16px;
}

.produto-info {
  text-align: center;
}

.produto-info h3 {
  color: white;
  font-size: 20px;
  margin-bottom: 12px;
  font-weight: 600;
}

.produto-info p {
  color: white;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  opacity: 0.9;
}

/* Splide Custom Styles - Transparent with white border */
.splide__arrow {
  background: transparent;
  border: 2px solid white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.splide__arrow:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.1);
}

.splide__arrow svg {
  fill: white;
}

.splide__arrow--prev {
  left: -25px;
}

.splide__arrow--next {
  right: -25px;
}

.splide__pagination {
  bottom: -50px;
}

.splide__pagination__page {
  background: rgba(255, 255, 255, 0.3);
  border: none;
  width: 12px;
  height: 12px;
  margin: 0 6px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.splide__pagination__page.is-active {
  background: white;
  transform: scale(1.2);
}

.cta {
  background-image: url('../images/banner-cristal-temper-cta.png');
  background-size: cover;
  background-position: center;
}



/* Responsive */
@media (max-width: 768px) {
  section {
    padding: 60px 10px;
  }

  .solucoes .content {
    margin-top: 32px;
  }

  .solucoes .bt {
    display: grid;
    place-items: center;
  }

  .beneficios .col {
    flex: 0 0 100%;
    margin-bottom: 32px;
  }

  .produto-item {
    margin: 0 10px;
  }
  
  .splide__arrow--prev {
    left: -15px;
  }
  
  .splide__arrow--next {
    right: -15px;
  }
  
  .splide__arrow {
    width: 40px;
    height: 40px;
  }
}

/* Footer CristalTemper - corrigido */
.footer-cristal {
  background: #013c63;       /* cor escura parecida com a do site */
  color: #ffffff;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
}
.footer-cristal .footer-logo {
  max-width: 160px;
  height: auto;
  display: inline-block;
}
.footer-cristal .socials {
  display: inline-flex;
  gap: 12px;
  justify-content: center;
}
.footer-cristal .social-link {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  color: #fff;
  text-decoration: none;
  transition: transform .12s ease, background .12s ease, opacity .12s ease;
  font-size: 16px;
}
.footer-cristal .social-link i { line-height: 1; }
.footer-cristal .social-link:hover {
  transform: translateY(-3px);
  background: rgba(255,255,255,0.09);
}
.footer-cristal .footer-address,
.footer-cristal .email-link {
  color: #d6e7ea;
  text-decoration: none;
  font-size: .95rem;
}
.footer-cristal .email-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

/* ajustes responsivos */
@media (max-width: 576px) {
  .footer-cristal { padding-top: 1.5rem; padding-bottom: 1.5rem; }
  .footer-cristal .footer-address { font-size: .9rem; }
}
