/* Modal de endereço responsivo desktop */



@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

/* ============= TEMA CLARO (DEFAULT) ============= */
:root {
    --bg-primary: #FFFCF5;
    --bg-secondary: #FFFFFF;
    --bg-tertiary: #f8f8f8;
    --text-primary: #000000;
    --text-secondary: #333333;
    --text-tertiary: #666666;
    --border-color: rgba(0, 0, 0, 0.1);
    --shadow-color: rgba(0, 0, 0, 0.521);
    --input-bg: #FFFFFF;
    --input-border: #ddd;
    --accent-primary: #8B4513;
    --accent-secondary: #a56131;
    --accent-hover: #6b3410;
    --header-bg: #FFFFFF;
    --footer-bg: #2c2c2c;
    --footer-text: #e0e0e0;
}

/* ============= TEMA ESCURO ============= */
html.dark-theme {
    --bg-primary: #0f0f0f;
    --bg-secondary: #1a1a1a;
    --bg-tertiary: #2a2a2a;
    --text-primary: #f5f5f5;
    --text-secondary: #d0d0d0;
    --text-tertiary: #a0a0a0;
    --border-color: rgba(255, 255, 255, 0.1);
    --shadow-color: rgba(0, 0, 0, 0.8);
    --input-bg: #252525;
    --input-border: #444;
    --accent-primary: #d4a574;
    --accent-secondary: #e8b886;
    --accent-hover: #c99555;
    --header-bg: #1a1a1a;
    --footer-bg: #0d0d0d;
    --footer-text: #cccccc;
}

* {
    transition: background-color 3s smooth,
        color 3s smooth,
        border-color 3s smooth,
        box-shadow 3s smooth;
}

.theme-box {
    background: #f2f2f2;
    color: #111;
    padding: 1rem;
    transition: 0.3s ease;
}

.theme-box.dark {
    background: #1c1c1c;
    color: #e5e5e5;
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    position: relative;
}

#main-nav {
    display: flex !important;
    position: static;
    flex-direction: row;
    background: none;
    height: auto;
    width: auto;
    box-shadow: none;
    transform: none;
    padding: 0;
}

#main-nav ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 0;
    border: none;
}

#main-nav ul li {
    margin: 0 1.2rem;
}

.apresentacao-block {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    gap: 2rem;
}


body {
    margin: 0;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    transition: background-color 3s smooth, color 3s smooth;
}

header {
    width: 100%;
    height: 6.5rem;

    display: flex;

    box-shadow: 0px 0.1rem 0.3rem var(--shadow-color);

    background-color: var(--header-bg);
}

nav {
    width: 90%;
    height: 100%;

    display: flex;
    justify-content: space-around;
    align-items: center;
}

nav ul {
    list-style: none;

    display: flex;
    gap: 2rem;
}

ul a {
    text-decoration: none;
    color: var(--text-primary);

    font-family: 'Montserrat', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 500;
    font-size: 1.3rem;

    transition: all 0.2s ease;
}

ul a:hover {
    color: var(--accent-secondary);
}

.div-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

#logo-menu-desktop {
    width: 8rem;
    height: auto;

    margin-left: 2rem;
    margin-bottom: 1rem;
}

.div-logo p {
    font-family: 'Montserrat', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--accent-primary);

    margin: 0;
}

.btn-login-desktop {
    width: 5rem;
    height: 2.5rem;

    border: none;
    border-radius: 2rem;

    margin-top: 0.5rem;

    cursor: pointer;

    color: var(--accent-primary);
    font-family: 'Montserrat', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 500;
    font-size: 1.2rem;

    background-color: transparent;
}

.login-menu {
    width: 10rem;
    height: 3.5rem;

    display: flex;
    align-items: space-between;
    justify-content: center;

}

.btn-registro-desktop {
    width: 6rem;
    height: 2.5rem;

    border: none;
    border-radius: 2rem;

    text-align: center;

    cursor: pointer;

    margin-top: 0.5rem;

    color: white;
    font-family: 'Montserrat', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 500;
    font-size: 1.2rem;

    background-color: var(--accent-primary);
}

.dark-mode {
    width: 2.5rem;
    height: 2.5rem;

    margin: auto;

    border: none;
    cursor: pointer;

    background-color: transparent;
}

.dark-mode-icon {
    width: 100%;
    height: auto;

    fill: var(--accent-primary);
}

.flower {
    width: 3rem;
    height: auto;

    margin-top: 5rem;

    fill: var(--accent-primary);
}

.center {
    width: 90%;
    height: auto;

    display: flex;
    justify-content: center;
    align-items: center;

    margin: auto;
}



.data {
    font-family: 'Montserrat', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 400;
    font-size: 1.2rem;

    color: #8B4513;

    margin-top: 7rem;
    margin-left: 1.5rem;

    width: 8rem;
    height: 2rem;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 1rem;

    background-color: #8b451349;
}



.titulo-history {
    width: 75%;
    font-family: 'Montserrat', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 700;
    font-size: 4rem;

    margin-left: 1.5rem;
    margin-bottom: 2rem;
}

.titulo-history span {
    color: #8B4513;
    font-family: 'Times New Roman', Times, serif';

}

.text-history {
    width: 75%;

    margin-left: 1.5rem;
    font-family: 'Montserrat', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 500;
    font-size: 1.3rem;
}

.actions {
    height: auto;
    display: flex;
    gap: 1rem;

    margin-left: 1.5rem;
}

.produtos {
    width: 12rem;
    height: 4rem;

    font-family: 'Montserrat', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
    font-size: 1.2rem;

    color: white;

    transition: all 0.3s ease;

    border: none;
    border-radius: 0.5rem;

    box-shadow: 0px 0.2rem 0.1rem #0000004b;

    cursor: pointer;

    background-color: #8B4513;
}

.produtos:hover {
    color: black;
    transform: translateY(-0.3rem);
    border: 0.1rem solid gray;
    background-color: transparent;
}

.history {
    width: 12rem;
    height: 4rem;

    font-family: 'Montserrat', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
    font-size: 1.2rem;

    color: black;

    transition: all 0.3s ease;

    border: 0.1rem solid gray;
    border-radius: 0.5rem;

    box-shadow: 0px 0.2rem 0.1rem #0000004b;

    cursor: pointer;

    background-color: transparent;
}

.history:hover {
    transform: translateY(-0.3rem);
    color: white;
    background-color: #8B4513;
    border: none;
}

.apresentacao-texto {
    width: 40%;
}

.apresentacao-foto {
    width: 27%;
    height: 35rem;

    display: flex;
    justify-content: center;
    align-items: center;

    margin-top: 1rem;
}

.apresentacao-foto img {
    width: 100%;
    height: 100%;

    border-radius: 1rem;
    box-shadow: 0px 0.4rem 0.2rem rgba(0, 0, 0, 0.521);
}

.white-background {
    width: 100%;
    height: auto;
    background-color: #FFFFFF;
}

.titulo-principal {
    width: 75%;
    height: auto;

    font-family: 'New Times Roman', Times, serif;
    font-weight: 700;
    font-size: 3rem;

    text-align: center;

    margin: auto;

    margin-top: 3rem;
    margin-bottom: 3rem;

    color: #8B4513;
}

.texto-centralizado {
    width: 50%;
    height: auto;

    font-family: 'Montserrat', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 500;
    font-size: 1.3rem;

    text-align: center;
    line-height: 2.5rem;

    margin: auto;
    padding-bottom: 3rem;
}

picture {
    width: 70%;

    margin: auto;
    height: 35rem;

    display: flex;
    justify-content: center;
    align-items: center;

    margin-bottom: 5rem;


}

picture iframe {
    border-radius: 0.5rem;
    box-shadow: 0px 0.4rem 0.2rem rgba(0, 0, 0, 0.521);
}

.model {
    width: 40rem;
    height: 25rem;

    margin-left: 2rem;
    margin-top: 4rem;
    margin-bottom: 5rem;

    border: 0.1rem solid #a0512d79;
    border-radius: 2rem;

    box-shadow: 0.1rem 0.3rem 0.2rem #00000067;

    transition: all 0.3s ease;

    background-color: #FFFCF5;
}

.model:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0.2rem 0.5rem 0.3rem #00000087;
}


/* Footer */

.footer {
    background: #FFFFFF;
    /* cor do exemplo */
    padding: 50px 20px 20px;
    font-family: 'Poppins', sans-serif;

    border-radius: 0.5rem 0.5rem 0 0;
}

.footer-container {
    max-width: 1000px;
    /* deixa mais compacto */
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.footer-logo img {
    width: 11rem;
}

.footer-social h3,
.footer-menu h3,
.footer-contact h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #5a3a1e;
    font-weight: 600;
}

.footer-social .icons a {
    font-size: 24px;
    margin-right: 10px;
    color: #b0713c;
    text-decoration: none;
}

.svg {
    width: 2rem;
    height: auto;
    fill: #8B4513;

    background-size: contain;


    transition: all 0.2s ease;
}


.svg:hover {
    fill: #3F1F08;
}

.footer-menu ul {
    list-style: none;
    padding: 0;
}

.footer-menu a {
    text-decoration: none;
    color: #5a3a1e;
    font-size: 15px;
}

.sub-menu {
    margin-left: 15px;
}

.footer-contact p {
    margin: 4px 0;
    font-size: 15px;
    color: #5a3a1e;
}

.footer-copy {
    text-align: center;
    margin-top: 40px;
    font-size: 14px;
    color: #5a3a1e;
    opacity: 0.8;
}

.logo {
    fill: #8B4513;
    width: 3rem;
    height: 3rem;
}

.cup-of-drink {
    fill: #8B4513;
    width: 3rem;
    height: 3rem;
}

.topbar {
    width: 100%;
    height: 4rem;

    display: flex;
    align-items: center;
    justify-content: space-evenly;

    margin-top: 2rem;
}

.titulo-p {
    font-family: 'Times New Roman', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;
    font-size: 2.5rem;

    margin-right: 8rem;
}

.text-model {
    width: 80%;
    height: auto;

    margin: auto;
    margin-top: 1rem;

    font-family: 'Montserrat', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 500;
    font-size: 1.2rem;
}

.Spans {
    font-size: 1.3rem;
    font-family: 'Montserrat', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 600;

    margin-left: 4rem;

    color: black;

    text-decoration: none;
}

.fundo {
    width: 100%;
    height: auto;

    margin: auto;
    margin-bottom: -1rem;
}


form {
    width: 45%;

    margin-left: 1rem;
    margin-top: -2rem;
    padding: 3rem;

    border: 1px solid #f0e4da;
    border-radius: 1rem;

    background-color: #FFFFFF;
}

.contact-form .row {
    width: 100%;
    display: flex;
    gap: 16px;

}

.field {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
    flex: 1;
}

label {
    font-size: 14px;
    margin-bottom: 6px;
    color: #1f1f1f;

    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.3rem;
}

input,
select,
textarea {
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #eadfd6;
    font-size: 14px;
    background: #fffaf6;
    outline: none;

    font-family: 'Roboto Condensed', sans-serif;

}

input::placeholder,
textarea::placeholder {
    color: #c4b6aa;
    font-family: 'Roboto Condensed', sans-serif;
}

textarea {
    height: 120px;
    resize: none;
    font-family: 'Roboto Condensed', sans-serif;
}

input:focus,
select:focus,
textarea:focus {
    font-family: 'Roboto Condensed', sans-serif;
    border-color: #A0522D;
}

.btn-form {
    background: #A0522D;
    color: #ffffff;
    border: none;
    padding: 14px 22px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;

    font-family: 'Roboto Condensed', sans-serif;
    box-shadow: 0 4px 10px rgba(224, 112, 31, 0.3);
}

.btn-form:hover {
    background: #A0522D;
}

.contact-info {
    width: 50%;
    margin: 40px auto 0;

    margin-left: 3rem;
    display: flex;
    flex-direction: column;
    gap: 16px;

    padding-bottom: 1rem;
}

.info-card {
    width: 30rem;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid #f0e4da;
}

.icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff0e6;
    color: #e0701f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.text {
    font-family: 'Montserrat', Tahoma, Geneva, Verdana, sans-serif;
    display: flex;
    flex-direction: column;
}

.text strong {
    font-size: 15px;
    color: #1f1f1f;
}

.text span,
.text small {
    font-size: 13px;
    color: #9c7f6a;
}

.text a {
    margin-top: 4px;
    color: #A0522D;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
}

.text a:hover {
    text-decoration: underline;
}

.map {
    width: 30rem;
    margin-top: 12px;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #f0e4da;
}

.map iframe {
    width: 30rem;
    height: 280px;
    border: none;
}

.titulo-contact {
    width: 40%;
    font-family: 'Montserrat', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 700;
    font-size: 2.5rem;

    text-align: center;

    margin-top: 3rem;
    margin-bottom: 1rem;

    margin-left: 10rem;
}

.texto-contact {
    width: 40%;
    height: auto;

    font-family: 'Montserrat', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 500;
    font-size: 1.1rem;

    line-height: 2rem;

    margin: auto;
    margin-bottom: 2rem;

    margin-left: 20rem;
}

/* ===== Página ===== */
.cafes-page {
    padding: 40px;
    background: var(--bg-primary);
}

/* ===== Header ===== */
.cafes-page__header {
    max-width: 1200px;
    margin: 0 auto 32px;
    font-family: 'Montserrat', Tahoma, Geneva, Verdana, sans-serif;
}

.cafes-page__title {
    font-size: 32px;
    color: var(--text-primary);

}

.cafes-page__subtitle {
    color: var(--text-tertiary);
    margin-top: 6px;
}

/* ===== Busca ===== */
.cafes-search {
    max-width: 1200px;
    margin: 0 auto 32px;
}

.cafes-search__input {
    width: 100%;
    padding: 14px 16px;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    background: var(--bg-secondary);
    color: var(--text-primary);
    margin-bottom: 12px;
}

.cafes-search__filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.cafes-filter {
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid #eadfd6;
    background: #ffffff;
    font-size: 13px;
    cursor: pointer;
}

.cafes-filter--active {
    background: #e0701f;
    color: #ffffff;
    border-color: #e0701f;
}

/* ===== Abas ===== */
.cafes-tabs {
    max-width: 1200px;
    margin: 0 auto 32px;
    display: flex;
    gap: 12px;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 0;
}

.cafes-tab {
    padding: 12px 24px;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    font-family: 'Montserrat', Tahoma, Geneva, Verdana, sans-serif;
}

.cafes-tab:hover {
    color: var(--accent-primary);
}

.cafes-tab--active {
    color: var(--accent-primary);
    border-bottom-color: var(--accent-primary);
}

/* ===== Categorias ===== */
.cafes-category {
    margin-bottom: 48px;
    display: none;
    animation: fadeIn 0.3s ease-in;
}

.cafes-category--active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Lista ===== */
.cafes-list {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;

    padding-bottom: 1rem;
}

/* ===== Card ===== */
.cafe-card {
    position: relative;
    background: var(--bg-secondary);
    font-family: 'Montserrat', Tahoma, Geneva, Verdana, sans-serif;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.cafe-card__status {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    font-size: 12px;
    border-radius: 999px;
    font-weight: 600;
}

.cafe-card__status--open {
    background: #dff3e7;
    color: #1b7a4d;
}

.cafe-card__status--closed {
    background: #fbe4e4;
    color: #b12a2a;
}

.cafe-card__image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.cafe-card__content {
    padding: 16px;
}

.cafe-card__title {
    font-size: 16px;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.cafe-card__description {
    font-size: 13px;
    color: var(--text-tertiary);
    margin-bottom: 12px;
}

.cafe-card__info {
    list-style: none;
    padding: 0;
    margin-bottom: 16px;
}

.cafe-card__info-item {
    font-size: 13px;
    color: #1f1f1f;
    margin-bottom: 6px;
}

/* ===== Ações ===== */
.cafe-card__actions {
    display: flex;
    gap: 10px;
}

.cafe-card__map-button {
    flex: 1;
    background: #e0701f;
    color: #ffffff;
    border: none;
    padding: 10px;
    border-radius: 8px;
    cursor: pointer;
}

.cafe-card__phone-button {
    width: 40px;
    height: 40px;
    background: #fff0e6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.card-tt {
    font-family: 'Roboto Condensed', Times, serif;
    font-weight: 700;
    font-size: 2.2rem;

    padding-left: 2rem;
}

.card p {

    width: 80%;
    font-family: 'Montserrat', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 500;
    font-size: 1.2rem;

    padding-left: 2rem;

    color: #4B5563;
}

.text-origem {
    font-family: 'Montserrat', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 500;
    font-size: 1.2rem;

    margin-left: 4rem;
    margin-top: 0.5rem;

    width: 70%;
}

.subtt {
    text-align: center;
    font-family: 'Montserrat', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 700;
    color: #A0522D;
    font-size: 2rem;

    margin-top: 3rem;
}

video {
    width: 854px;
    height: 480px;

    display: flex;
    justify-content: center;
    align-items: center;

    margin: auto;
    border-radius: 1rem;

    margin-bottom: 5rem;
}

video source {
    width: 100%;
    height: 100%;
}

.card {
    width: 30rem;
    height: 15rem;

    margin: 1rem;

    box-shadow: 0px 0.1rem 0.2rem rgba(0, 0, 0, 0.295);
    border-radius: 1rem;

    background-color: #FFFCF5;
    margin-bottom: 2rem;
}

.action {
    width: 25%;
    align-items: center;
    justify-content: space-between;
    height: auto;
    display: flex;
    gap: 1rem;
    margin: auto;
    margin-bottom: 5rem;
}

.login-box {
    width: 30rem;
    height: 40rem;

    box-shadow: 0px 0.1rem 0.3rem rgba(0, 0, 0, 0.521);
    border-radius: 1rem;

    margin: auto;
    margin-top: 5rem;
    margin-bottom: 5rem;

    background-color: #FFFFFF;
}

.login-box h1 {
    font-family: 'Montserrat', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 700;
    font-size: 2rem;

    text-align: center;

    margin-top: 2rem;
}

.login-box p {
    width: 80%;
    font-family: 'Montserrat', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 500;
    font-size: 1.3rem;

    text-align: center;

    margin: auto;
    margin-top: 0.5rem;
    margin-bottom: 0.2rem;

    color: rgb(158, 158, 158);
}

#login {
    width: 80%;

    margin-left: 0;

    border: none;
}

#login input {
    width: 100%;
    height: 1.5rem;

    margin-top: 1rem;

    margin-bottom: 1.5rem;

    padding: 0.5rem;

    border: 0.1rem solid #eadfd6;
    border-radius: 0.5rem;

    font-family: 'Montserrat', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1rem;
}

.btn-login {
    width: 100%;
    height: 3.5rem;

    border: none;
    border-radius: 0.5rem;

    margin-top: 1rem;

    cursor: pointer;

    font-weight: 600;
    font-family: 'Montserrat', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.5rem;

    color: #Ffff;

    transition: all 0.2s ease;

    background-color: #A0522D;
}

.btn-login:hover {
    transform: translateY(-0.2rem);
    background-color: #8B4513;
}





.depoimentos {
    width: 33rem;
    height: 20rem;

    margin-left: 1.7rem;
    margin-bottom: 5rem;

    box-shadow: -0.5rem 0.5rem 0.1rem #0000003a;
    border-radius: 1rem;

    margin-top: 5rem;

    transition: 0.3s all ease;

    background-color: #FFFF;
}

.depoimentos:hover {
    transform: translateY(-0.5rem);
    box-shadow: -0.4rem 0.19rem 0.1rem #0000003a;
}


/* =====================
   VARIÁVEIS DE TEMA
   ===================== */
:root {
    --accent-primary: #8B4513;
    --accent-hover: #a56131;
    --bg-secondary: #fff;
    --text-primary: #242B39;
    --text-secondary: #666;
    --border-color: #e0e0e0;
    --shadow-color: rgba(0, 0, 0, 0.07);
}

/* =====================
   RESET E TIPOGRAFIA
   ===================== */
body,
html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto Condensed', Arial, sans-serif;
    color: var(--text-primary);
    background: #faf9f7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Roboto Condensed', Arial, sans-serif;
    margin: 0;
}

/* =====================
   COMPONENTES GERAIS
   ===================== */
.btn-primary,
.btn-secondary,
.btn-registro {
    font-family: 'Roboto Condensed', Arial, sans-serif;
    font-size: 1.1rem;
    padding: 0.8rem 2.2rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    text-decoration: none;
    display: inline-block;

    transition: all 0.2s ease;
}

.btn-primary,
.btn-registro {
    background: var(--accent-primary);
    color: #fff;
}

.btn-primary:hover,
.btn-registro:hover {
    background: var(--accent-hover);
    transform: translateY(-0.2rem);
}

.btn-secondary {
    background: #fff;
    color: var(--accent-primary);
    border: 2px solid var(--accent-primary);
}

.btn-secondary:hover {
    background: var(--accent-primary);
    color: #fff;
}

/* =====================
   GRID E FLEX GERAIS
   ===================== */
.services-grid,
.why-grid,
.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    flex-direction: row;
    margin-bottom: 2.5rem;
    max-width: 1200px;
}

.why-grid {
    flex-direction: row;
    gap: 3.2rem;
    max-width: 1200px;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    flex-wrap: wrap;
    margin-top: 2rem;
    max-width: 700px;
}

@media (max-width: 800px) {

    .why-grid,
    .services-grid {
        flex-direction: column;
        align-items: center;
        gap: 1.2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        transition: all 0.2s ease;
    }
}

/* =====================
   CARDS E ITENS
   ===================== */
.service-card,
.why-item {
    background: var(--bg-secondary);
    border-radius: 12px;
    box-shadow: 0 2px 12px var(--shadow-color);
    padding: 1.5rem 1.2rem;
    min-width: 220px;
    max-width: 340px;
    flex: 1 1 220px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
    font-family: 'Roboto Condensed', Arial, sans-serif;
    transition: all 0.2s ease;
}

.service-card:hover,
.why-item:hover {
    box-shadow: 0 4px 24px rgba(139, 69, 19, 0.13);
    transform: translateY(-0.5rem);
}

.service-icon,
.why-icon {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

/* =====================
   MODAL ENDEREÇO
   ===================== */
.modal-endereco {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s cubic-bezier(.4, 0, .2, 1);
}

.modal-endereco.open {
    opacity: 1;
    pointer-events: all;
}

.modal-endereco__backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    width: 100vw;
    height: 100vh;
}

.modal-endereco__content {
    position: relative;
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    padding: 2.2rem 2.5rem;
    min-width: 480px;
    max-width: 700px;
    z-index: 2;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 2.2rem;
    font-family: 'Roboto Condensed', Arial, sans-serif;
    border: 2.5px solid var(--accent-primary);
    animation: popIn 0.35s cubic-bezier(.4, 0, .2, 1);
    text-align: left;
    transform: translateY(40px) scale(0.98);
    opacity: 0;
    transition: all 0.3s cubic-bezier(.4, 0, .2, 1);
}

.modal-endereco.open .modal-endereco__content {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.modal-endereco__info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 220px;
    max-width: 320px;
    flex: 1 1 0;
    gap: 0.7rem;
}

#modal-endereco-titulo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 0.2rem;
    letter-spacing: 0.5px;
    text-align: left;
}

#modal-endereco-endereco {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    background: #f8f8f8;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    display: inline-block;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
    text-align: left;
}

.modal-endereco__map {
    margin: 0;
    width: 370px;
    min-width: 320px;
    max-width: 420px;
    height: 270px;
    border-radius: 12px;
    overflow: hidden;
    border: 1.5px solid var(--accent-primary);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.10);
    background: #eee;
    flex: 1 1 0;
    align-self: center;
    display: flex;
}

.modal-endereco__close {
    z-index: 3;
    font-size: 2.2rem;
    color: var(--accent-primary);
    background: #fff0e6;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
    border: none;
    position: absolute;
    top: 12px;
    right: 12px;
    transition: background 0.2s;
    cursor: pointer;
}

.modal-endereco__close:hover {
    background: var(--accent-primary);
    color: #fff;
}

.modal-endereco__contato {
    margin-top: 0.7rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-size: 1.01rem;
    color: var(--text-secondary);
}

.modal-endereco__whatsapp {
    margin-top: 0.7rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #25d366;
    color: #fff;
    font-weight: 600;
    font-size: 1.08rem;
    border: none;
    border-radius: 8px;
    padding: 0.5rem 1.1rem;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.08);
    transition: background 0.2s;
    text-decoration: none;
}

.modal-endereco__whatsapp:hover {
    background: #1ebe5d;
}

.modal-endereco__venha {
    margin-top: 1.1rem;
    font-size: 1.08rem;
    color: var(--accent-primary);
    font-weight: 500;
    letter-spacing: 0.1px;
}

@keyframes popIn {
    0% {
        transform: scale(0.95) translateY(30px);
        opacity: 0;
    }

    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

/* ========== MARKETPLACE STYLES ========== */

.marketplace-hero {
    background: linear-gradient(135deg, #8B4513 0%, #a56131 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
    margin-bottom: 40px;
    border-radius: 10px;
}

.marketplace-hero h1 {
    font-size: 3rem;
    margin: 0 0 10px 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

.marketplace-hero p {
    font-size: 1.2rem;
    margin: 0;
    opacity: 0.95;
}

/* Container Principal */
.marketplace-container {
    display: grid;
    grid-template-columns: 250px 1fr 300px;
    gap: 30px;
    margin-bottom: 60px;
}

/* Filtros Sidebar */
.marketplace-filters {
    background: white;
    border-radius: 10px;
    padding: 20px;
    height: fit-content;
    border: 1px solid #e0e0e0;
    position: sticky;
    top: 20px;
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #8B4513;
}

.filter-header h3 {
    margin: 0;
    color: #8B4513;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
}

.filter-clear {
    background: none;
    border: none;
    color: #8B4513;
    cursor: pointer;
    font-size: 0.9rem;
    text-decoration: underline;
    transition: color 0.3s;
}

.filter-clear:hover {
    color: #a56131;
}

.filter-group {
    margin-bottom: 25px;
}

.filter-group h4 {
    margin: 0 0 12px 0;
    color: #333;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filter-options label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.95rem;
    color: #555;
    transition: color 0.2s;
}

.filter-options label:hover {
    color: #8B4513;
}

.filter-options input[type="checkbox"] {
    margin-right: 10px;
    cursor: pointer;
    width: 16px;
    height: 16px;
    accent-color: #8B4513;
}

/* Main Content */
.marketplace-main {
    flex: 1;
}

.marketplace-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 10px;
}

.results-info {
    flex: 1;
}

.results-info p {
    margin: 0;
    color: #666;
    font-weight: 500;
}

.sort-options {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sort-options label {
    font-weight: 500;
    color: #333;
    white-space: nowrap;
}

.sort-options select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: white;
    font-size: 0.95rem;
    cursor: pointer;
    color: #333;
    transition: border-color 0.3s;
}

.sort-options select:hover,
.sort-options select:focus {
    border-color: #8B4513;
    outline: none;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.product-card:hover {
    box-shadow: 0 6px 16px rgba(139, 69, 19, 0.15);
    transform: translateY(-2px);
}

.product-image {
    position: relative;
    overflow: hidden;
    height: 200px;
    background: #f5f5f5;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #8B4513;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
}

.product-badge.new {
    background: #e74c3c;
}

.product-badge.sale {
    background: #f39c12;
}

.add-to-cart-hover {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: #8B4513;
    color: white;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
    z-index: 3;
}

.product-card:hover .add-to-cart-hover {
    opacity: 1;
}

.add-to-cart-hover:hover {
    background: #a56131;
    transform: scale(1.1);
}

/* Product Info */
.product-info {
    padding: 15px;
}

.product-info h3 {
    margin: 0 0 8px 0;
    font-size: 1rem;
    color: #333;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

.product-description {
    margin: 0 0 10px 0;
    font-size: 0.85rem;
    color: #999;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.stars {
    color: #f39c12;
    font-size: 0.9rem;
}

.rating-count {
    font-size: 0.8rem;
    color: #999;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid #f0f0f0;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #8B4513;
    font-family: 'Montserrat', sans-serif;
}

.add-btn {
    padding: 8px 16px;
    background: #8B4513;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
}

.add-btn:hover {
    background: #a56131;
    transform: scale(1.05);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
    padding: 20px 0;
}

.pagination button {
    padding: 10px 15px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
}

.pagination button:hover:not(:disabled) {
    background: #8B4513;
    color: white;
    border-color: #8B4513;
}

.pagination button.active {
    background: #8B4513;
    color: white;
    border-color: #8B4513;
}

.pagination button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Carrinho Sidebar */
.marketplace-cart {
    background: white;
    border-radius: 10px;
    padding: 20px;
    height: fit-content;
    border: 1px solid #e0e0e0;
    position: sticky;
    top: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #8B4513;
}

.cart-header h3 {
    margin: 0;
    color: #8B4513;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
}

.cart-count {
    background: #8B4513;
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
}

.cart-items {
    min-height: 200px;
    max-height: 400px;
    overflow-y: auto;
    margin-bottom: 20px;
}

.empty-cart {
    text-align: center;
    color: #999;
    padding: 20px;
    margin: 0;
}

.cart-item {
    padding: 12px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.cart-item-name {
    flex: 1;
    color: #333;
    font-weight: 500;
}

.cart-item-price {
    color: #8B4513;
    font-weight: 700;
    margin-right: 10px;
}

.cart-item-remove {
    background: none;
    border: none;
    color: #e74c3c;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0;
    transition: color 0.2s;
}

.cart-item-remove:hover {
    color: #c0392b;
}

.cart-footer {
    padding-top: 15px;
    border-top: 2px solid #f0f0f0;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
}

.checkout-btn,
.continue-btn {
    width: 100%;
    padding: 12px;
    margin-bottom: 10px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
}

.checkout-btn {
    background: #8B4513;
    color: white;
}

.checkout-btn:hover {
    background: #a56131;
}

.continue-btn {
    background: #f9f9f9;
    color: #8B4513;
    border: 1px solid #8B4513;
}

.continue-btn:hover {
    background: #f0f0f0;
}

/* Adicionado para corrigir o espaçamento lateral em desktop */
@media (min-width: 768px) {
    .container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 4rem 0;
    text-align: center;
    font-family: 'Roboto Condensed', sans-serif;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    text-align: left;
}

.why-item {
    background-color: var(--bg-secondary);
    /* Usando variável de tema */
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px var(--shadow-color);
    /* Usando variável de tema */
    border: 1px solid var(--border-color);
    /* Usando variável de tema */
    transition: all 0.2s ease;
    width: 22rem;
}

.why-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.why-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--accent-primary);
    /* Usando variável de tema */
}

.why-item p {
    font-size: 1.3rem;
}

/* Responsive adjustments for services-grid */
@media (max-width: 768px) {


    .cycle-list {
        grid-template-columns: 1fr;
    }
}

/* Cycle List Section */
.cycle-list {
    width: 62rem;
    margin: auto;
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 30px;
    font-size: 1.5rem;
    color: var(--text-secondary);
    font-family: 'Roboto Condensed', sans-serif;
}

.cycle-list li {
    padding-left: 1.5rem;
    position: relative;
}

.cycle-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-weight: bold;
}

/* Author Bio Section */
.author-bio {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem;
    background-color: var(--bg-secondary);
    border-radius: 10px;
    border: 1px solid var(--border-color);
    font-family: 'Roboto Condensed', sans-serif;
}

.author-bio h3,
p {
    font-size: 1.3rem;
}



.marketplace-container {
    grid-template-columns: 1fr;
}

.marketplace-filters,
.marketplace-cart {
    position: relative;
    top: 0;
}

.products-grid {
    grid-template-columns: repeat(2, 1fr);
}


/* ========== SERVICES PAGE STYLES ========== */

.services-hero {
    background: linear-gradient(135deg, #8B4513 0%, #a56131 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
    margin-bottom: 60px;
    border-radius: 15px;
    font-family: 'Roboto Condensed', sans-serif;
}

.services-hero h1 {
    font-size: 3.5rem;
    margin: 0 0 15px 0;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
}

.services-hero p {
    font-size: 1.3rem;
    margin: 0;
    opacity: 0.95;
}

/* Intro Section */
.services-intro {
    text-align: center;
    margin-bottom: 80px;
    padding: 40px;
    background: #f9f9f9;
    border-radius: 10px;
    font-family: 'Roboto Condensed', sans-serif;
}

.services-intro h2 {
    font-size: 2.2rem;
    color: #8B4513;
    margin-bottom: 20px;
    font-family: 'Roboto Condensed', sans-serif;
}

.services-intro p {
    font-size: 1.4rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Services Section */
.services-section {
    width: 100%;


    margin-bottom: 100px;
}

.section-title {
    font-size: 2.5rem;
    color: #8B4513;
    text-align: center;
    margin-bottom: 50px;
    font-family: 'Roboto Condensed', sans-serif;
}




.service-icon {
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 1.4rem;
    color: #333;
    margin: 0 0 15px 0;
    font-family: 'Roboto Condensed', sans-serif;
}

.service-card p {
    color: #666;
    line-height: 1.6;

    font-size: 1.2rem;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    padding: 8px 0;
    color: #555;
    font-size: 0.95rem;
    border-bottom: 1px solid #f0f0f0;
}

.service-features li:last-child {
    border-bottom: none;
}

/* Pricing Section */
.pricing-section {
    margin-bottom: 100px;
    padding: 60px 0;
}

.pricing-subtitle {
    text-align: center;
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 50px;
}

.pricing-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.pricing-card {
    background: white;
    border-radius: 10px;
    padding: 40px 30px;
    border: 2px solid #e0e0e0;

    position: relative;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    font-family: 'Roboto Condensed', sans-serif;
}

.pricing-card:hover {
    border-color: #8B4513;
    box-shadow: 0 8px 20px rgba(139, 69, 19, 0.15);
}

.pricing-card.featured {
    border-color: #8B4513;
    box-shadow: 0 8px 20px rgba(139, 69, 19, 0.2);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #8B4513;
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.plan-header {
    text-align: center;
    margin-bottom: 20px;
}

.plan-header h3 {
    font-size: 1.5rem;
    color: #333;
    margin: 0 0 8px 0;
    font-family: 'Roboto Condensed', sans-serif;
}

.plan-header .plan-subtitle {
    color: #999;
    font-size: 0.95rem;
    margin: 0;
}

.plan-price {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px 0;
    border-top: 2px solid #f0f0f0;
    border-bottom: 2px solid #f0f0f0;
}

.currency {
    font-size: 1.2rem;
    color: #666;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #8B4513;
    font-family: 'Roboto Condensed', sans-serif;
}

.period {
    color: #999;
    font-size: 0.95rem;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    flex-grow: 1;
}

.plan-features li {
    padding: 12px 0;
    color: #555;
    font-size: 0.95rem;
    border-bottom: 1px solid #f0f0f0;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features strong {
    color: #8B4513;
}

.plan-btn {
    padding: 12px 20px;
    border: 2px solid #8B4513;
    background: transparent;
    color: #8B4513;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 700;
    font-family: 'Roboto Condensed', sans-serif;
    transition: all 0.3s;
}

.plan-btn:hover {
    background: #8B4513;
    color: white;
}

.plan-btn.featured-btn {
    background: #8B4513;
    color: white;
    border-color: #8B4513;
}

.plan-btn.featured-btn:hover {
    background: #a56131;
    border-color: #a56131;
}

.pricing-note {
    text-align: center;
    color: #999;
    font-size: 0.95rem;
    margin-top: 40px;
}

/* Testimonials Section */
.testimonials-section {
    margin-bottom: 100px;
    padding: 60px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    font-family: 'Roboto Condensed', sans-serif;
}

.testimonial-card:hover {
    box-shadow: 0 8px 20px rgba(139, 69, 19, 0.15);
    transform: translateY(-5px);
}

.testimonial-stars {
    color: #f39c12;
    font-size: 1rem;
    margin-bottom: 15px;
}

.testimonial-text {
    color: #555;
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.testimonial-author strong {
    color: #333;
    margin-bottom: 5px;
    font-size: 1.3rem;
}

.testimonial-author span {
    color: #999;
    font-size: 1.3rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #8B4513 0%, #a56131 100%);
    color: white;
    padding: 60px 40px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 60px;
    font-family: 'Roboto Condensed', sans-serif;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin: 0 0 20px 0;
    font-family: 'Roboto Condensed', sans-serif;
}

.cta-section p {
    font-size: 1.2rem;
    margin: 0 0 30px 0;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 15px 35px;
    border-radius: 5px;
    font-weight: 700;
    font-family: 'Roboto Condensed', sans-serif;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    cursor: pointer;

    transition: all 0.2s ease;
}

.btn-primary {
    background: white;
    color: #8B4513;
    border: none;

    transition: all 0.2s ease;
}

.btn-primary:hover {
    transform: translateY(-0.2rem);
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #8B4513;
}


.services-grid,
.pricing-container {
    grid-template-columns: repeat(2, 1fr);
}

.pricing-card.featured {
    transform: scale(1);
    grid-column: 1 / -1;
    max-width: 500px;
    margin: 0 auto;
}


.services-hero h1 {
    font-size: 2rem;
}


.pricing-container,
.testimonials-grid {
    grid-template-columns: 1fr;
}

.services-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    width: 100%;
    height: auto;
}

.pricing-card.featured {
    transform: scale(1);
    grid-column: 1;
}

.section-title {
    font-size: 1.8rem;
}

.cta-section h2 {
    font-size: 1.8rem;
}

.cta-buttons {
    flex-direction: column;
}

.btn-primary,
.btn-secondary {
    width: 100%;

    transition: all 0.2s ease;
}


/* ===== Why Choose Us - Grid horizontal ===== */
.why-grid {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 3.2rem;
    justify-content: center;
    align-items: stretch;
    margin-bottom: 2.5rem;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.why-item {
    background: var(--bg-secondary);
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    padding: 1.2rem 1.2rem 1.2rem 1.2rem;
    min-width: 220px;
    max-width: 260px;
    flex: 1 1 220px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
    font-family: 'Roboto Condensed', Arial, sans-serif;
    transition: all 0.2s ease;
}

.why-item:hover {
    box-shadow: 0 4px 24px rgba(139, 69, 19, 0.13);
}

.why-icon {
    font-size: 2rem;
    margin-bottom: 0.3rem;
}

.why-grid {
    flex-wrap: wrap;
    gap: 1.2rem;
}

@media (max-width: 800px) {
    .why-grid {
        flex-direction: column;
        align-items: center;
    }
}

/* ===== Serviços - Cards e Botões ===== */



.service-card {
    background: var(--bg-secondary);
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    min-width: 260px;
    max-width: 340px;
    justify-content: space-between;
    font-family: 'Roboto Condensed', Arial, sans-serif;
    transition: all 0.2s ease;
}

.service-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 4px 24px rgba(139, 69, 19, 0.13);
}

.service-icon {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    width: 100%;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary,
.btn-secondary {
    font-family: 'Roboto Condensed', Arial, sans-serif;
    font-size: 1.1rem;
    padding: 0.8rem 2.2rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--accent-primary);
    color: #fff;

    transition: all 0.2s ease;
}

.btn-primary:hover {
    background: var(--accent-hover);
}

.btn-secondary {
    background: #fff;
    color: var(--accent-primary);
    border: 2px solid var(--accent-primary);
}

.btn-secondary:hover {
    background: var(--accent-primary);
    color: #fff;
}

.modal-endereco__contato {
    margin-top: 0.7rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-size: 1.01rem;
    color: var(--text-secondary);
    font-family: 'Roboto Condensed', Arial, sans-serif;
}

.modal-endereco__whatsapp {
    margin-top: 0.7rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #25d366;
    color: #fff;
    font-family: 'Roboto Condensed', Arial, sans-serif;
    font-weight: 600;
    font-size: 1.08rem;
    border: none;
    border-radius: 8px;
    padding: 0.5rem 1.1rem;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(37, 211, 102, 0.08);
    transition: background 0.2s;
    text-decoration: none;
}

.modal-endereco__whatsapp:hover {
    background: #1ebe5d;
}

.modal-endereco__venha {
    margin-top: 1.1rem;
    font-size: 1.08rem;
    color: var(--accent-primary);
    font-family: 'Roboto Condensed', Arial, sans-serif;
    font-weight: 500;
    letter-spacing: 0.1px;
}

/* ===== Modal Endereço: animação ===== */
.modal-endereco {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s cubic-bezier(.4, 0, .2, 1);
}

.modal-endereco.open {
    opacity: 1;
    pointer-events: all;
}

.modal-endereco__content {
    transform: translateY(40px) scale(0.98);
    opacity: 0;
    transition: all 0.3s cubic-bezier(.4, 0, .2, 1);
}

.modal-endereco.open .modal-endereco__content {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.modal-endereco__map {
    margin: 1.5rem 0 0.5rem 0;
    width: 100%;
    min-width: 300px;
    max-width: 500px;
    height: 260px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    background: #eee;
}

/* ===== Modal Endereço ===== */
.modal-endereco {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-endereco__backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    width: 100vw;
    height: 100vh;
}

.modal-endereco__content {
    position: relative;
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    padding: 2.2rem 2.5rem 2.2rem 2.5rem;
    min-width: 480px;
    max-width: 700px;
    z-index: 2;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 2.2rem;
    font-family: 'Roboto Condensed', Arial, sans-serif;
    border: 2.5px solid var(--accent-primary);
    animation: popIn 0.35s cubic-bezier(.4, 0, .2, 1);
    text-align: left;
}

.modal-endereco__info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 220px;
    max-width: 320px;
    flex: 1 1 0;
    gap: 0.7rem;
}

#modal-endereco-titulo {
    font-family: 'Roboto Condensed', Arial, sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 0.2rem;
    letter-spacing: 0.5px;
    text-align: left;
}

#modal-endereco-endereco {
    font-family: 'Roboto Condensed', Arial, sans-serif;
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    background: #f8f8f8;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    display: inline-block;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
    text-align: left;
}

.modal-endereco__map {
    margin: 0;
    width: 370px;
    min-width: 320px;
    max-width: 420px;
    height: 270px;
    border-radius: 12px;
    overflow: hidden;
    border: 1.5px solid var(--accent-primary);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.10);
    background: #eee;
    flex: 1 1 0;
    align-self: center;
    display: flex;
}

.modal-endereco__close {
    /* permanece igual, mas ajusta z-index para garantir sobreposição */
    z-index: 3;
}

@keyframes popIn {
    0% {
        transform: scale(0.95) translateY(30px);
        opacity: 0;
    }

    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.modal-endereco__close {
    font-family: 'Roboto Condensed', Arial, sans-serif;
    font-weight: 700;
    font-size: 2.2rem;
    color: var(--accent-primary);
    background: #fff0e6;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
    border: none;
    position: absolute;
    top: 12px;
    right: 12px;
    transition: background 0.2s;
}

.modal-endereco__close:hover {
    background: var(--accent-primary);
    color: #fff;
}

#modal-endereco-titulo {
    font-family: 'Roboto Condensed', Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 0.2rem;
    letter-spacing: 0.5px;
}

#modal-endereco-endereco {
    font-family: 'Roboto Condensed', Arial, sans-serif;
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    background: #f8f8f8;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    display: inline-block;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
}

.modal-endereco__map {
    margin: 1.2rem 0 0.5rem 0;
    width: 100%;
    min-width: 300px;
    max-width: 420px;
    height: 220px;
    border-radius: 12px;
    overflow: hidden;
    border: 1.5px solid var(--accent-primary);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.10);
    background: #eee;
}

.modal-endereco__close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-primary);
    cursor: pointer;
}

.icon-sobre {
    width: 4rem;

    margin-left: 2rem;
    margin-top: 1rem;
}

.id {
    width: 100%;
    height: 7rem;

    display: flex;
    align-items: center;
}

.foto {
    width: 3rem;
    height: 3rem;

    border-radius: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    color: white;

    margin-left: 2rem;

    background-color: #A0522D;
}

.names {
    width: 17rem;
    height: 3rem;

    margin-left: 1rem;
}

.first-name {
    padding: 0;
    margin: 0;
}

.contact {
    padding: 0;
    margin: 0;
}

.depoimento {
    width: 80%;

    margin-left: 2rem;
}