body {
    font-family: 'Inter', sans-serif;
    background-color: #EDE8DE; /* Cor de fundo principal (bege da logo) */
    color: #2E2E2E; /* Cor de texto principal (preto da logo) */
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

.font-display {
    font-family: 'Playfair Display', serif;
}

.bg-light-100 { background-color: #EDE8DE; }
.bg-light-200 { background-color: #F8F5EE; }
.text-accent { color: #2E2E2E; }
.border-accent { border-color: #2E2E2E; }

.btn-primary {
    background-color: #2E2E2E;
    color: #FFFFFF;
    padding: 0.8rem 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s ease;
}
#texto-escuro{
 color: red;
}

.btn-primary:hover {
    background-color: #444444;
}
.svg{
    width: 30px;
}
.ajuste-svg{
    gap:10px;
    
}

.hero-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(237, 232, 222, 1) 0%, rgba(237, 232, 222, 0) 100%);
}

.plan-card {
    background-color: #FFFFFF;
    border: 1px solid #D3CDC1;
    border-radius: 8px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    color: #2E2E2E;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
}

.plan-price {
    font-size: 4rem;
}

.plan-benefits li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.plan-benefits svg {
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.icon-check { color: #2E2E2E; }
.icon-cross { color: #9ca3af; }

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.section-padding {
    padding: 8rem;
}

@media (max-width: 767px) {
    .whatsapp-float {
        right: 20px;
        bottom: 20px;
    }
    .section-padding {
        padding-top: 6rem;
        padding-bottom: 6rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    .text-escuro{
  color: #000;
}
.div-principal{
    background-color: #ffffffa6;
    border-radius: 5px;
}
.ajuste-svg{
    width: 100%;
    justify-content: space-between;
    align-items: center;
    display: inline-flex;
    font-size: 14px;
    gap: 5px;
}
}

.carousel-container {
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    flex: 0 0 100%;
    padding: 0 0.5rem;
    box-sizing: border-box;
}

@media (min-width: 768px) {
    .carousel-slide {
        flex-basis: calc(100% / 3);
    }
    
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(46, 46, 46, 0.7);
    color: #FFFFFF;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.carousel-button:hover {
    background-color: #2E2E2E;
}

.carousel-button.prev {
    left: -15px;
}

.carousel-button.next {
    right: -15px;
}

@media (min-width: 1024px) {
    .carousel-button.prev {
        left: -35px;
    }
    .carousel-button.next {
        right: -35px;
    }
}

.service-details {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
    color: #555;
}

.service-details li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.service-details svg {
    margin-right: 0.5rem;
    flex-shrink: 0;
    color: #2E2E2E;
}