:root {
    --buff: #CA9B76;
    --reseda-green: #888458;
    --almond: #E7D9C8;
    --bone: #E3D5C3;
    --almond-2: #EADECF;

    /* CSS HEX */
    --desert-sand: #E7C9ABff;
    --reseda-green: #888458ff;
    --bone: #EBE1D3ff;
    --apple-green: #90AB33ff;
    --fawn: #DEA162ff;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
}

.btn-primary {
    background-color: var(--reseda-green);
    border-color: var(--reseda-green);
}

.btn-primary:hover {
    background-color: #706d46;
    border-color: #706d46;
}

.bg-light-accent {
    background-color: var(--almond-2);
}

.text-primary {
    color: var(--reseda-green) !important;
}

.border-primary {
    border-color: var(--reseda-green) !important;
}

.hero {
    background-color: #e9dccc;
    padding: 100px 0;
    position: relative;
}

.hero-image {
    position: relative;
    z-index: 1;
    max-width: 200%;
    height: auto;
}

@media (max-width: 992px) {
    .hero-image {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .hero-image {
        margin-top: 20px;
        max-width: 80%;
        margin-left: auto;
        margin-right: auto;
    }
}



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

.hero h1 {
    color: #0d6201;
    /* text-shadow: -3px -3px 0 #45875d, 3px -3px 0 #45875d, -3px 3px 0 #45875d, 3px 3px 0 #45875d; */
}

.hero .text-primary {
    color: #0d6201!important;
    /* text-shadow: -3px -3px 0 #45875d, 3px -3px 0 #45875d, -3px 3px 0 #45875d, 3px 3px 0 #45875d; */
}

.hero .lead {
    color: #0d6201!important;
}

.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.logo {
    max-width: 220px;
    height: auto;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
    font-size: 24px;
    background-color: var(--buff);
    color: white;
}

.whatsapp-btn {
    background-color: #25D366;
    color: white;
    border: none;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    color: white;
}

footer {
    background-color: var(--reseda-green);
    color: white;
}

.footer-logo path {
    fill: white;
}

.footer-logo g path {
    fill: var(--almond);
    stroke: white;
}

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