/* Paleta de cores inspirada no Cipó Cerrado */
:root {
    --verde-escuro: #355E3B;
    --rosa-cipo: #D6368A;
    --marrom-claro: #A0522D;
    --cinza-suave: #EEEDE9;
    --branco-puro: #ffffff;
    --texto-escuro: #333333;
    --heading-1-size-value: 3;
}

/* Reset básico */
body {
    font-family: sans-serif, 'Segoe UI', 'Helvetica Neue', Arial;
    background-color: #EEEDE9;
    color: var(--texto-escuro);
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* Cabeçalho */

h3:hover {
    color: var(--rosa-cipo);
}

header h1 {
    font-size: 2rem;
    margin: 0;
    text-transform: unset !important;
}

header p {
    margin: 0;
    font-size: 1rem;
    text-transform: unset !important;
}

/* Navbar */
.navbar {
    background-color: #EEEDE9;
    box-shadow: 0 0px 0px rgba(0,0,0,0.1) !important;
    text-transform: unset !important;
}
.navbar-nav .nav-link {
    white-space: nowrap;
}

    .navbar a.nav-link {
        color: #000;
        font-weight: 400;
        transition: color 0.3s;
    }

        .navbar a.nav-link:hover {
            color: var(--rosa-cipo);
        }

.navbar-toggler-icon {
    background-image: none;
    width: 30px;
    height: 2px;
    background-color: #5C8A3A;
    position: relative;
}

    .navbar-toggler-icon::before,
    .navbar-toggler-icon::after {
        content: "";
        position: absolute;
        width: 30px;
        height: 2px;
        background-color: #5C8A3A;
        left: 0;
    }

    .navbar-toggler-icon::before {
        top: -8px;
    }

    .navbar-toggler-icon::after {
        top: 8px;
    }


/* Hero Banner */
.hero-banner {
    background-image: url(/images/hero.jpg);
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: end !important;
    text-align: center;
    color: var(--branco-puro);
    position: relative;
    text-transform: unset !important;
}

    .hero-banner::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.4);
    }

    .hero-banner > div {
        position: relative;
        z-index: 2;
    }

    .hero-banner h1 {
        font-size: 3rem;
        font-weight: bold;
        text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
    }

    .hero-banner p {
        font-size: 1.25rem;
        margin-top: 1rem;
    }

section {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

@media (max-width: 768px) {
    section {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
    }
}

/* Cards de Serviços */
section .row > div {
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s;
}

    section .row > div:hover {
        transform: translateY(-5px);
    }

/* Rodapé */
footer {
    background-color: var(--cinza-suave);
    color: var(--texto-escuro);
}

    footer .row > div {
        margin-bottom: 1.5rem;
    }


    footer form input,
    footer form textarea {
        border-radius: 4px;
        border: 1px solid #ccc;
        padding: 0.5rem;
        width: 100%;
        margin-bottom: 0.5rem;
    }

    footer form button {
        background-color: var(--rosa-cipo);
        color: var(--texto-escuro);
        border: none;
        padding: 0.6rem 1.2rem;
        border-radius: 4px;
        transition: background-color 0.3s;
    }

        footer form button:hover {
            background-color: var(--marrom-claro);
        }

/* Owl Carousel Customização */
.owl-carousel .owl-item img {
    border-radius: 8px;
    max-height: 300px;
    object-fit: cover;
}

/* Responsividade extra */
@media (max-width: 768px) {
    .hero-banner {
        height: 50vh;
        padding: 0 1rem;
        justify-content: center; /* Centralizar texto verticalmente */
        text-align: center;
    }

        .hero-banner h1 {
            font-size: 1.75rem;
        }

        .hero-banner p {
            font-size: 1rem;
        }
}

@media (max-width: 768px) {
    footer .row {
        display: flex;
        flex-direction: column;
        text-align:center;
    }
}

.text-color-cipo {
    color: #D6368A;
    font-size: calc(var(--heading-1-size-value) * 1rem);
}
.color-cipo {
    color: #D6368A;
}
.margin-x-onhover05 {
    transition: margin 0.5s ease-in-out;
}

    .margin-x-onhover05:hover {
        margin-right: 0.5rem !important;
        margin-left: 0.5rem !important;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2), 0px -4px 8px rgba(0, 0, 0, 0.2) !important;
    }

.btn-cipo {
    color: #fff;
    background-color: #D6368A;
}

.btn-outline-cipo {
    color: #D6368A;
    border-color: #D6368A;
}

    .btn-outline-cipo:hover {
        color: #fff;
        background-color: #D6368A;
        border-color: #D6368A;
    }

.bg-cipo {
    background-color: #D6368A !important;
}

.banner-cheio {
    width: 100vw;
    height: 70vh;
    max-height: 700px;
    overflow: hidden;
    margin-left: calc(-50vw + 50%);
    position: relative;
}

.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(30, 20, 10, 0.45); /* Tom escuro tradicional */
    z-index: 1;
}

.banner-conteudo {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    padding: 1rem;
    max-width: 90%;
}
.card-servico img {
    height: 600px; /* Altura padrão para todas */
    object-fit: cover; /* Preenche sem distorcer */
    width: 100%;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
}
#frete-dimensoes {
    border-left: 4px solid #6D4C41;
    padding-left: 1rem;
    background-color: #f9f6f4;
    border-radius: 8px;
}