* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-dark: #4f2f13;
    --primary-mid: #624f3e;
    --primary-light: #9c8870;
    --accent-burgundy: #541919;
    --bg-cream: #e6e1de;
    --bg-beige: #d8c29c;
    --bg-light: #f9ebd2;
}

body {
    max-width:1400px ;
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, .logo {
    font-family: 'Cinzel', serif;
    font-weight: 600;
}

/* Header */
header {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-mid));
    color: white;
    padding: 0.2rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(79, 47, 19, 0.3);
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 3rem;
}

.logo {
    font-size: 1.8rem;
    letter-spacing: 3px;
    color: var(--bg-beige);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--bg-beige);
}

/* Hero Section */
.hero {
    background: var(--primary-dark);
    color: white;
    padding: 180px 3rem 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;

    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(79, 47, 19, 0.8), rgba(98, 79, 62, 0.7));
    z-index: 1;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    animation: fadeIn 1s;
}

.hero .subtitle {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 300;
}

.hero .tagline {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    font-style: italic;
}

.cta-button {
    display: inline-block;
    background: var(--bg-beige);
    color: var(--primary-dark);
    padding: 1.2rem 3.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: translateY(-5px);
    background: var(--bg-light);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Sections */
section {
    padding: 100px 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 1.5rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--primary-light);
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--primary-mid);
    margin-bottom: 4rem;
    font-style: italic;
}

/* Manifesto */
.manifesto {
    background: linear-gradient(135deg, var(--bg-cream), var(--bg-light));
    text-align: center;
}

.manifesto-text {
    font-size: 1.3rem;
    line-height: 2;
    margin: 0 auto 2rem;
    max-width: 900px;
}

.manifesto-highlight {
    font-size: 1.5rem;
    font-family: 'Cinzel', serif;
    color: var(--accent-burgundy);
    margin: 3rem 0;
    font-style: italic;
}

/* About */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-text {
    font-size: 1.1rem;
}

.about-text h3 {
    color: var(--primary-dark);
    margin: 2.5rem 0 1.5rem;
    font-size: 1.8rem;
}

.about-text ul {
    list-style: none;
}

.about-text li {
    padding: 0.8rem 0 0.8rem 2rem;
    position: relative;
}

.about-text li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--primary-light);
}

.about-image {
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(79, 47, 19, 0.3);
}  


.about-image img {
    width: 100%;
}

/* Services */
.services {
    background: var(--bg-cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s;
    box-shadow: 0 5px 20px rgba(79, 47, 19, 0.1);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(79, 47, 19, 0.2);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.service-icon img {
    max-width: 100%;
    height: auto;
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Diferentials */
.diferentials {
    background: linear-gradient(135deg, var(--bg-light), var(--bg-beige));
}

.diferentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.diferential {
    text-align: center;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 15px;
    transition: all 0.3s;
}

.diferential:hover {
    background: white;
    transform: scale(1.05);
}

.diferential-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.diferential h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Contact */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    background: var(--bg-cream);
    padding: 4rem;
     align-items: center;
    border-radius: 20px;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    align-items: left;
}

.contact-item ul {
    list-style: none;
    padding: 0;
    margin-top: 0.5rem;
}

.contact-item li {
    padding: 0.3rem 0;
}

.contact-icon {
    font-size: 1.8rem;
    color: var(--primary-light);
    flex-shrink: 0;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1.2rem;
    margin-bottom: 1.5rem;
    border: 2px solid var(--primary-light);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-dark);
}

.contact-form button {
    width: 100%;
    padding: 1.2rem;
    background: var(--primary-dark);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s;
}

.contact-form button:hover {
    background: var(--primary-mid);
    transform: translateY(-2px);
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-mid));
    color: white;
    text-align: center;
    padding: 4rem 2rem;
}

.footer-logo {
    margin-bottom: 2rem;
}

.footer-logo img {
    max-width: 180px;
    height: auto;
}

/* RESPONSIVIDADE */

/* Tablets (768px - 968px) */
@media (max-width: 968px) {
    nav {
        padding: 0 2rem;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .nav-links a {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }

    .hero {
        padding: 150px 2rem 80px;
        min-height: 80vh;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero .subtitle {
        font-size: 1.2rem;
    }

    .hero .tagline {
        font-size: 1rem;
    }

    .cta-button {
        padding: 1rem 2.5rem;
        font-size: 0.9rem;
    }

    section {
        padding: 80px 2rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    .manifesto-text {
        font-size: 1.1rem;
    }

    .manifesto-highlight {
        font-size: 1.3rem;
    }

    .about-content {
        gap: 3rem;
    }

    .about-image {
        height: 400px;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }

    .contact-content {
        gap: 3rem;
        padding: 3rem;
    }
}

/* Mobile Menu Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: all 0.3s;
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Mobile (até 768px) */
@media (max-width: 768px) {
    .logo {
        font-size: 1.3rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        flex-direction: column;
        background: linear-gradient(135deg, var(--primary-dark), var(--primary-mid));
        width: 80%;
        max-width: 300px;
        height: 100vh;
        padding: 80px 30px 30px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
        transition: right 0.3s;
        z-index: 1000;
        overflow-y: auto;
        gap: 0;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links a {
        display: block;
        padding: 1rem 0;
        font-size: 1.1rem;
    }

    .hero {
        padding: 140px 1.5rem 60px;
        min-height: 70vh;
    }

    .hero h1 {
        font-size: 2.2rem;
        letter-spacing: 1px;
    }

    .hero .subtitle {
        font-size: 1rem;
    }

    .hero .tagline {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 0.85rem;
    }

    section {
        padding: 60px 1.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }

    .manifesto-text {
        font-size: 1rem;
        line-height: 1.8;
    }

    .manifesto-highlight {
        font-size: 1.1rem;
        margin: 2rem 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-text {
        font-size: 1rem;
    }

    .about-text h3 {
        font-size: 1.5rem;
        margin: 2rem 0 1rem;
    }

    .about-image {
        height: 350px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }

    .diferentials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .diferential {
        padding: 2rem;
    }

    .diferential h3 {
        font-size: 1.2rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    .contact-info h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .contact-item {
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
    }

    .contact-icon {
        font-size: 1.5rem;
    }

    footer {
        padding: 3rem 1.5rem;
    }

    .footer-logo img {
        max-width: 140px;
    }
}

/* Mobile pequeno (até 480px) */
@media (max-width: 480px) {
    nav {
        padding: 0 1rem;
    }

    .logo {
        font-size: 1.1rem;
        letter-spacing: 2px;
    }

    .hero {
        padding: 120px 1rem 50px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero .subtitle {
        font-size: 0.9rem;
    }

    .hero .tagline {
        font-size: 0.85rem;
    }

    .cta-button {
        padding: 0.9rem 1.8rem;
        font-size: 0.8rem;
    }

    section {
        padding: 50px 1rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    .manifesto-text {
        font-size: 0.95rem;
    }

    .manifesto-highlight {
        font-size: 1rem;
    }

    .about-text {
        font-size: 0.95rem;
    }

    .about-image {
        height: 300px;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-icon {
        font-size: 2.5rem;
    }

    .contact-content {
        padding: 1.5rem;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 1rem;
        font-size: 0.95rem;
    }

    .contact-form button {
        padding: 1rem;
        font-size: 0.95rem;
    }
}

/* Landscape em mobile */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 120px 2rem 60px;
    }

    .hero h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero .subtitle,
    .hero .tagline {
        display: none;
    }
}
/* Mata qualquer resquício visual */
.goog-te-banner-frame,
.goog-te-balloon-frame {
    display: none !important;
}

body {
    top: 0 !important;
    position: static !important;
}

.goog-text-highlight {
    background: none !important;
    box-shadow: none !important;
}
.lang-switch {
    display: flex;
    gap: 10px;
    align-items: center;
}

.lang-switch button {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 1px 14px;
    border-radius: 30px;
    border: 1px solid #ddd;
    background: #ffffff;
    color: #333;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.lang-switch button:hover {
    background: #0d6efd;
    color: #fff;
    border-color: #0d6efd;
    transform: translateY(-1px);
}

.lang-switch button:active {
    transform: scale(0.95);
}
.lang-switch {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.lang-switch.hide {
    opacity: 0;
    transform: translateY(-5px);
    pointer-events: none;
}
.lang-switch {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Esconde a barra do Google Translate */
.goog-te-banner-frame,
.skiptranslate {
    display: none !important;
}

body {
    top: 0 !important;
}


.lang-switch.hide {
    opacity: 0;
    transform: translateY(-5px);
    pointer-events: none;
    height: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

/*icones*/
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-icon i {
    font-size: 30px;
    color: #541919; /* Pode trocar pela cor da sua identidade visual */
    margin-top: 5px;
}

/* === AVALIAÇÕES === */
.avaliacoes {
    padding: 5rem 2rem;
    background: linear-gradient(160deg, var(--bg-light, #fdf8f4) 0%, var(--bg-beige, #f5ede3) 100%);
    overflow: hidden;
    position: relative;
}

.avaliacoes::before {
    content: '"';
    position: absolute;
    top: -2rem;
    left: 3rem;
    font-family: 'Cinzel', serif;
    font-size: 18rem;
    color: var(--primary-light, #c9a97a);
    opacity: 0.07;
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.avaliacoes-header {
    text-align: center;
    margin-bottom: 3rem;
}

.avaliacoes-tag {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--primary-mid, #9e7a52);
    border: 1px solid var(--primary-light, #c9a97a);
    padding: 0.3rem 1.2rem;
    border-radius: 2px;
    margin-bottom: 1rem;
}

.avaliacoes-header h2 {
    font-family: 'Cinzel', serif;
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    color: var(--primary-dark, #3d2b1f);
    margin: 0.5rem 0;
}

.stars-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    margin-top: 0.8rem;
}

.stars-header .star {
    color: #f5c842;
    font-size: 1.2rem;
}

.rating-global {
    margin-left: 0.6rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-dark, #3d2b1f);
}

.rating-global em {
    font-style: normal;
    font-weight: 400;
    color: var(--primary-mid, #9e7a52);
    margin-left: 0.2rem;
}

/* CAROUSEL */
.carousel-wrapper {
    overflow: hidden;
    position: relative;
    padding: 1rem 0 2rem;
    cursor: grab;
    user-select: none;
}

.carousel-wrapper:active {
    cursor: grabbing;
}

.carousel-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

/* CARD */
.review-card {
    min-width: 320px;
    max-width: 340px;
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 30px rgba(61, 43, 31, 0.08);
    border: 1px solid rgba(201, 169, 122, 0.2);
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(61, 43, 31, 0.15);
}

.review-card.featured {
    background: linear-gradient(135deg, #fff 70%, rgba(201, 169, 122, 0.12) 100%);
    border-color: var(--primary-light, #c9a97a);
    border-width: 1.5px;
}

.review-card.featured::after {
    content: '✦';
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    color: var(--primary-light, #c9a97a);
    font-size: 0.8rem;
    opacity: 0.6;
}

.review-top {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-mid, #9e7a52), var(--primary-light, #c9a97a));
    color: #fff;
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 600;
}

.reviewer-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.reviewer-info strong {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-dark, #3d2b1f);
}

.review-date {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    color: var(--primary-mid, #9e7a52);
    margin-top: 0.1rem;
}

.google-badge {
    height: 16px;
    opacity: 0.7;
    margin-left: auto;
    flex-shrink: 0;
}

.review-stars {
    color: #f5c842;
    font-size: 1rem;
    letter-spacing: 0.05em;
}

.review-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.88rem;
    line-height: 1.7;
    color: #5a4a3f;
    font-style: italic;
    flex: 1;
}

/* CONTROLS */
.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    margin-top: 1.5rem;
}

.carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--primary-light, #c9a97a);
    background: transparent;
    color: var(--primary-dark, #3d2b1f);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--primary-light, #c9a97a);
    color: #fff;
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(158, 122, 82, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.dot.active {
    background: var(--primary-mid, #9e7a52);
    width: 22px;
    border-radius: 4px;
}

/* CTA */
.avaliacoes-cta {
    text-align: center;
    margin-top: 2.5rem;
}

.google-review-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary-mid, #9e7a52);
    border: 1px solid var(--primary-light, #c9a97a);
    padding: 0.8rem 2rem;
    border-radius: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.google-review-btn:hover {
    background: var(--primary-mid, #9e7a52);
    color: #fff;
    border-color: var(--primary-mid, #9e7a52);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .review-card {
        min-width: 280px;
        max-width: 290px;
        padding: 1.5rem;
    }

    .avaliacoes {
        padding: 3.5rem 1rem;
    }

    .avaliacoes::before {
        font-size: 10rem;
        top: -1rem;
        left: 1rem;
    }
}