@import url('https://fonts.googleapis.com/css2?family=Libre+Caslon+Text:ital,wght@0,400;0,700;1,400&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

@charset "UTF-8";
/* CSS Document */

:root {
  scroll-behavior: auto;
  --negro: #333333;
  --blanco: #ffffff;
  --grisc: #f2f2f2;
  --verde: #84764D;
  --verdeo: #2C5234;
  --verde-op: rgba(132, 118, 77, 0.3);
}

.negro {
  color: var(--negro);
}

.blanco {
  color: var(--blanco);
}

.grisc {
  color: var(--grisc);
}

.verde {
  color: var(--verde);
}

.verdeo {
  color: var(--verdeo);
}

.verde-op {
  color: var(--verde-op);
}

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

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

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

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

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

.fs-xs{
    font-size: clamp(0.75rem, 1vw, 0.875rem); /* 12px → 14px */
}

.fs-sm{
    font-size: clamp(0.875rem, 1.2vw, 1rem); /* 14px → 16px */
}

.fs-md{
    font-size: clamp(1.125rem, 2vw, 1.5rem); /* 18px → 24px */
}

.fs-lg{
    font-size: clamp(1.5rem, 3vw, 2rem); /* 24px → 32px */
}

.fs-xl{
    font-size: clamp(2rem, 5vw, 3rem); /* 32px → 48px */
}

.fs-20{
    font-size: 20px; /* 20px */
}

body {
    font-family: "Montserrat", sans-serif;
    color: #121212;
	line-height: 150%;
}

p {
    line-height: 150%;
}

h1 {
    font-family: "Libre Caslon Text", serif;
    line-height: 120%;
}

h2,
h3 {
    font-family: "Libre Caslon Text", serif;
    line-height: 140%;
}

h1 {
    font-size: clamp(48px, 5vw, 60px);
}

h2 {
    font-size: clamp(32px, 4vw, 48px);
}

h3 {
    font-size: clamp(22px, 3vw, 40px);
}

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

.libre-caslon {
    font-family: "Libre Caslon Text", serif;
}

main {
    overflow: hidden;
}

.container {
    max-width: 1200px;
}

.container-small {
    max-width: 795px;
    margin: auto;
}

.btn-primary {
    position: relative;
    padding: 12px 32px;
    line-height: 150%;
    letter-spacing: 0.8px;
    border-radius: 999px;
    border: 0;
    background-color: #2C5234;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
}

.btn-primary.arrow {
    display: inline-flex;
    align-items: center;
    padding: 12px 56px 12px 32px;
}

.btn-primary.arrow::after{
    content: '';
    width: 18px;
    height: 14px;
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='14' viewBox='0 0 18 14' fill='none'%3E%3Cg clip-path='url(%23clip0_2313_3)'%3E%3Cpath d='M1 7H17M11 13L17 7L11 1' stroke='white' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2313_3'%3E%3Crect width='18' height='14' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.btn-primary:hover {
    background-color: #84764D;
}

header {
    position: sticky;
    top: 0;
    z-index: 10;
    transition: all .3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

header.header-small {
    padding-top: .25rem !important;
    padding-bottom: .25rem !important;
}

header a {
    color: #2C5234;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    text-decoration: none;
}

#mainHeader img {
    height: 74px;
    transition: all .3s ease;
}

#mainHeader.py-2 img {
    height: 54px;
}

.banner {
    position: relative;
}

.banner img,
.banner-int img {
    width: 100%;
    display: block;
}

.banner .container-b {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.banner-c {
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.banner-c div {
    max-width: 280px;
    margin: auto;
}

.slider-stores .slick-track {
    display: flex;
    align-items: center;
}

.slider-stores .slick-slide {
    margin: 0 -12px;
    transition: all .3s ease;
}

.slider-stores .slick-slide img {
    width: 100%;
    transform: scale(.8);
    transition: transform .3s ease;
}

.slider-stores .slick-center img {
    transform: scale(1);
    position: relative;
    z-index: 2;
}

.bg-degradado {
    position: relative;
}

.bg-degradado::before {
    content: '';
    position: absolute;
    top: -40%;
    left: 0;
    right: 0;
    bottom: 50%;
    background: linear-gradient(0deg, #FFF 0%, #EEE8DF 52.88%, #FFF 100%);
    z-index: -1;
}

.newsletter-box {
    background: rgba(240, 236, 230, 0.80);
    backdrop-filter: blur(6px);
    border-radius: 20px;
    padding: 40px 50px;
}

.newsletter h2{
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1;
}

.newsletter p{
    color: #5B5B5B;
}

.form-group input{
    width: 100%;
    border: 0;
    border-bottom: 1px solid #B8AE97;
    background: transparent;
    padding: 12px 0;
    font-size: 14px;
    color: #84764D;
}

.form-group input::placeholder{
    color: #84764D;
}

.form-group input:focus{
    outline: none;
    box-shadow: none;
}

footer {
    position: relative;
    background-color: #2C5234;
}

footer::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 12px;
    background: linear-gradient(
        90deg,
        #AD985F 0%,
        #A28D5B 43.27%,
        #C6B571 64.9%,
        #A5905B 87.5%
    );
}



@media (min-width: 768px) { 
    .img-form img {
        width: 125%;
        max-width: 125%;
        margin-bottom: -6rem;
    }
    
    .slider-stores .slick-slide {
        margin: 0 -15px;
    }
    
    .slider-stores .slick-slide img {
        width: 100%;
        transform: scale(.8);
    }

    .slider-stores .center-slide img {
        transform: scale(1);
        position: relative;
        z-index: 2;
    }
}

@media (max-width: 767px) {
    .banner-c a {
        border-radius: 0;
        width: 100%;
        justify-content: center;
    }
    
    .newsletter-box {
        padding: 40px;
    }
}