* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cafe-claro: #E5D2B7;
    --cafe-medio: #CAAB8A;
    --cafe-escuro: #A37C53;
    --cafe-forte: #61401E;
    --verde-claro: #ADB697;
    --verde-medio: #737D69;
    --verde-escuro: #535F37;
    --verde-forte: #4A5439;
    --verde-profundo: #373C26;
    --verde-accent: #2CC331;
    --branco: #FFFFFF;
    --preto: #1A1A1A;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--preto);
    background-color: var(--branco);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(163, 124, 83, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-container {
    flex-shrink: 0;
}

.logo {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--cafe-forte);
    font-weight: 500;
    font-size: 16px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--verde-accent);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--verde-escuro);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--cafe-forte);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background-single {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/img1.png');
    background-size: cover;
    background-position: center 35%;
    z-index: 0;
}

.hero-content {
    position: relative;
    text-align: left;
    z-index: 2;
    padding: 40px;
    /* max-width: 800px; */
    margin-left: 80px;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 120px;
    font-weight: 300;
    color: var(--branco);
    margin-bottom: 25px;
    margin-top: 25px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 0px;
    line-height: 1.1;
}

.hero-title-italic {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 400;
    color: rgb(148, 147, 137);
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 1.0);
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 30px;
    font-weight: 700;
    position: relative;
    padding-top: 20px;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 1.0);
}

.hero-subtitle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 1px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0) 100%);
}

.cta-button {
    font-family: 'Montserrat', sans-serif;
    display: inline-block;
    padding: 18px 45px;
    background: rgb(52, 51, 30, 0.8);
    color: var(--branco);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1.5px;
    transition: all 0.4s ease;
    /* box-shadow: 0 10px 30px rgba(44, 195, 49, 0.3); */
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(44, 195, 49, 0.4);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    animation: bounce 2s infinite;
}

.scroll-indicator span {
    font-family: 'Montserrat', sans-serif;
    display: block;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--branco);
    margin-bottom: 8px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.scroll-indicator i {
    font-size: 24px;
    color: var(--branco);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-15px);
    }
    60% {
        transform: translateX(-50%) translateY(-7px);
    }
}

.fade-in {
    animation: fadeIn 1s ease-out;
}

.fade-in-delay {
    animation: fadeIn 1s ease-out 0.3s backwards;
}

.fade-in-delay-2 {
    animation: fadeIn 1s ease-out 0.6s backwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-title {
    font-size: 48px;
    color: var(--cafe-forte);
    text-align: center;
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--verde-accent), var(--cafe-escuro));
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--branco);
    margin-bottom: 40px;
    line-height: 1.8;
}

.galeria-section {
    padding: 80px 0;
    background: var(--branco);
}

.galeria-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    font-weight: 600;
    color: var(--cafe-forte);
    text-align: center;
    margin-bottom: 0;
}

.galeria-title-italic {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
}

.galeria-subtitle {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: var(--cafe-escuro);
    margin-top: 25px;
    margin-bottom: 40px;
    position: relative;
    padding-top: 25px;
}

.galeria-subtitle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 1px;
    background: linear-gradient(to right, rgba(163, 124, 83, 0) 0%, rgba(163, 124, 83, 0.5) 50%, rgba(163, 124, 83, 0) 100%);
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.galeria-foto {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.galeria-foto:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.galeria-foto img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.galeria-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.galeria-nav {
    /* background: linear-gradient(135deg, var(--verde-accent), var(--verde-escuro)); */
    color: var(--branco);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(var(--cafe-escuro-rgb), 0.3);
    border: 2px solid var(--cafe-forte);
}

.fa-chevron-right, .fa-chevron-left {
    color: var(--cafe-escuro);
}

.galeria-nav:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(var(--cafe-escuro-rgb), 0.4);
}

.galeria-nav:active {
    transform: scale(0.95);
}

.galeria-dots {
    display: flex;
    gap: 12px;
    align-items: center;
}

.galeria-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--cafe-medio);
    cursor: pointer;
    transition: all 0.3s ease;
}

.galeria-dot:hover {
    background: var(--cafe-escuro);
    transform: scale(1.2);
}

.galeria-dot.active {
    background: var(--cafe-forte);
    width: 30px;
    border-radius: 6px;
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.lightbox-modal.active {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    z-index: 10000;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.lightbox-close:hover {
    transform: rotate(90deg);
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-polaroid {
    background: #fff;
    padding: 25px 25px 100px 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
                0 10px 30px rgba(0, 0, 0, 0.3);
    max-width: 90%;
    max-height: 90%;
    animation: zoomIn 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes zoomIn {
    from {
        transform: scale(0.3) rotate(-10deg);
        opacity: 0;
    }
    to {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

.lightbox-polaroid::after {
    content: '';
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    height: 3px;
    background: rgba(163, 124, 83, 0.15);
}

.lightbox-polaroid img {
    max-width: 500px;
    max-height: 600px;
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
    margin: 0 auto;
}

.estilos {
    padding: 80px 0;
    background: #F5F3F0;
}

.estilos-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    font-weight: 600;
    color: var(--cafe-forte);
    text-align: center;
    margin-bottom: 0;
}

.estilos-title-italic {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 600;
}

.estilos-subtitle {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--cafe-escuro);
    margin-top: 25px;
    margin-bottom: 50px;
    position: relative;
    padding-top: 30px;
}

.estilos-subtitle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: rgba(163, 124, 83, 0.3);
}

.estilos-subtitle::after {
    content: '\2666';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 16px;
    color: #A37C53;
    background: #F5F3F0;
    padding: 0 10px;
}

.estilos-content {
    /* display: grid; */
    grid-template-columns: 1fr 400px;
    gap: 60px;
    margin-top: 50px;
    align-items: start;
}

.estilos-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.estilo-card {
    background: rgba(255, 255, 255, 0.6);
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.estilo-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.estilo-icon {
    width: 60px;
    height: 60px;
    border: 1.5px solid var(--cafe-forte);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--cafe-forte);
    transition: all 0.3s ease;
    background: transparent;
}

.estilo-card:hover .estilo-icon {
transform: rotate(360deg) scale(1.1);
}

.estilo-card h3 {
font-family: 'Cormorant Garamond', serif;
font-size: 20px;
color: var(--cafe-forte);
margin: 0;
font-weight: 600;
line-height: 1.3;
}

.estilo-card p {
font-family: 'Montserrat', sans-serif;
font-size: 13px;
color: var(--cafe-escuro);
line-height: 1.6;
margin: 0;
font-weight: 500;
}

.estilos-video {
display: flex;
justify-content: center;
align-items: center;
}

.video-container-vertical {
    width: 280px;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.video-container-vertical:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.video-container-vertical video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-lightbox-container {
    max-width: 90%;
    max-height: 90vh;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    animation: zoomIn 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.video-lightbox-container video {
    width: 100%;
    height: auto;
    max-height: 90vh;
    display: block;
}

/* Tira de Benefícios */
.beneficios-tira {
    padding: 40px 0;
    background: #E8E3DB;
}

.beneficios-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    align-items: center;
}

.beneficio-item {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
}

.beneficio-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--cafe-forte);
}

.beneficio-text {
    text-align: left;
}

.beneficio-text h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--cafe-forte);
    margin: 0;
    line-height: 1.3;
}

.beneficio-text p {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--cafe-forte);
    margin: 0;
    line-height: 1.3;
}

.sobre {
    padding: 80px 0;
    background: var(--branco);
}

.sobre-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    font-weight: 600;
    color: var(--cafe-forte);
    text-align: center;
    margin-bottom: 0;
    position: relative;
    padding-bottom: 25px;
}

.sobre-title-italic {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 600;
}

.sobre-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 1px;
    background: linear-gradient(to right, rgba(163, 124, 83, 0) 0%, rgba(163, 124, 83, 0.5) 50%, rgba(163, 124, 83, 0) 100%);
}


.sobre-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.sobre-image {
    position: relative;
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.sobre-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sobre-image-decoration {
    display: none;
}

.sobre-text {
    padding: 20px 0;
}

.sobre-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--cafe-escuro);
    line-height: 1.8;
    margin-bottom: 25px;
    margin-top: 30px;
}

.sobre-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, var(--cafe-claro), var(--verde-claro));
    border-radius: 15px;
    transition: all 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(163, 124, 83, 0.2);
}

.stat h3 {
    font-size: 36px;
    color: var(--cafe-forte);
    margin-bottom: 10px;
}

.stat p {
    font-size: 14px;
    color: var(--verde-escuro);
    font-weight: 500;
}

.feedbacks {
    padding: 80px 0;
    background: #F5F3F0;
}

.feedbacks-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    font-weight: 600;
    color: var(--cafe-forte);
    text-align: center;
    margin-bottom: 0;
}

.feedbacks-title-italic {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 600;
}

.feedbacks-subtitle {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--cafe-escuro);
    margin-top: 25px;
    margin-bottom: 50px;
    position: relative;
    padding-top: 30px;
}

.feedbacks-subtitle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: rgba(163, 124, 83, 0.3);
}

.feedbacks-subtitle::after {
    content: '\2666';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 16px;
    color: #A37C53;
    background: #F5F3F0;
    padding: 0 10px;
}

.feedbacks-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.feedback-card {
    background: rgba(255, 255, 255, 0.7);
    border-radius: 12px;
    padding: 35px 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feedback-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feedback-stars {
    display: flex;
    gap: 5px;
    color: #A37C53;
    font-size: 16px;
}

.feedback-quote-icon {
    font-family: 'Cormorant Garamond', serif;
    font-size: 80px;
    color: rgba(163, 124, 83, 0.2);
    line-height: 0.5;
    margin-bottom: -10px;
}

.feedback-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--cafe-escuro);
    line-height: 1.7;
    margin: 0;
    flex-grow: 1;
}

.feedback-author {
    border-top: 1px solid rgba(163, 124, 83, 0.2);
    padding-top: 20px;
}

.feedback-author h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--cafe-forte);
    margin: 0 0 5px 0;
}

.feedback-author p {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: var(--cafe-escuro);
    margin: 0;
}

.feedback-instagram-link:hover {
    background: linear-gradient(135deg, var(--verde-escuro), var(--verde-accent));
    letter-spacing: 1px;
}

.feedback-instagram-link i {
    font-size: 20px;
}

.feedback-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.feedback-nav {
    background: transparent;
    color: var(--cafe-forte);
    border: 2px solid var(--cafe-forte);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.feedback-nav:hover {
    background: var(--cafe-forte);
    color: var(--branco);
    transform: scale(1.05);
}

.feedback-dots {
    display: flex;
    gap: 10px;
}

.feedback-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--cafe-medio);
    cursor: pointer;
    transition: all 0.3s ease;
}

.feedback-dot.active {
    background: var(--cafe-forte);
    width: 30px;
    border-radius: 6px;
}

.contato {
    padding: 80px 0;
    background: var(--branco);
}

.contato-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    font-weight: 600;
    color: var(--cafe-forte);
    text-align: center;
    margin-bottom: 0;
}

.contato-title-italic {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 600;
}

.contato-subtitle {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--cafe-escuro);
    margin-top: 25px;
    margin-bottom: 50px;
    position: relative;
    padding-top: 30px;
}

.contato-subtitle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: rgba(163, 124, 83, 0.3);
}

.contato-subtitle::after {
    content: '\2666';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 16px;
    color: #A37C53;
    background: var(--branco);
    padding: 0 10px;
}

.contato-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 60px;
}

.social-button {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 40px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.social-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.social-button i {
    font-size: 24px;
}

.instagram {
    background: linear-gradient(135deg, #E1306C, #C13584);
    color: var(--branco);
}

.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--branco);
}

.loja {
    background: linear-gradient(135deg, var(--cafe-escuro), var(--verde-escuro));
    color: var(--branco);
}

.footer {
    background: linear-gradient(135deg, var(--cafe-forte) 0%, var(--verde-profundo) 100%);
    color: var(--branco);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-logo-img {
    height: 60px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-logo p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--cafe-claro);
}

.footer-links h4,
.footer-social h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--branco);
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--cafe-claro);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--verde-accent);
    transform: translateX(5px);
}

.footer-social-icons {
    display: flex;
    gap: 15px;
}

.footer-social-icons a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--branco);
    font-size: 20px;
    transition: all 0.3s ease;
}

.footer-social-icons a:hover {
    background: var(--verde-accent);
    transform: translateY(-5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 14px;
    color: var(--cafe-claro);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 40px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-content {
        text-align: left;
        margin-left: -90px;
        padding: 20px;
        max-width: 300px;
        margin-top: 50px;
    }

    .hero-title {
        font-size: 48px;
        line-height: 0.75;
    }

    .hero-title-bold,
    .hero-title-italic {
        font-size: 48px;
        font-weight: 600;
    }

    .hero-subtitle {
        font-size: 13px;
        letter-spacing: 1.5px;
        font-weight: 400;
    }

    .subtitle-hero {
        font-size: 10px;
    }

    .section-title {
        font-size: 36px;
    }

    .galeria-title {
        font-size: 40px;
    }

    .galeria-subtitle {
        font-size: 14px;
        letter-spacing: 1px;
    }

    .galeria-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 0 0px;
        margin-top: 30px;
    }

    .galeria-foto {
        width: 100%;
        aspect-ratio: 3/4;
    }

    .feedbacks-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    
    .feedback-card {
        max-width: 100%;
    }

    .estilos-title {
        font-size: 36px;
    }

    .estilos-subtitle {
        font-size: 13px;
        padding-top: 25px;
    }

    .estilos-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .estilos-cards {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .estilo-card {
        padding: 25px 15px;
    }

    .estilo-card h3 {
        font-size: 17px;
    }

    .estilo-card p {
        font-size: 12px;
    }

    .video-container-vertical {
        width: 220px;
        height: 400px;
        margin: 0 auto;
    }

    .estilo-card {
        flex-direction: column;
        text-align: center;
        padding: 20px 15px;
    }

    .estilo-card h3 {
        font-size: 16px;
    }

    .estilo-card p {
        font-size: 13px;
    }

    .estilo-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 24px;
    }

    .estilo-card:hover {
        transform: translateY(-5px);
    }

    .beneficios-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .beneficio-icon {
        font-size: 24px;
        width: 40px;
        height: 40px;
    }

    .beneficio-text h4,
    .beneficio-text p {
        font-size: 10px;
    }

    .sobre-title {
        font-size: 40px;
    }

    .sobre-description {
        font-size: 14px;
    }

    .sobre-content {
        grid-template-columns: 1fr;
    }

    .sobre-image {
        aspect-ratio: 3/4;
    }

    .sobre-image-decoration {
        display: none;
    }

    .sobre-stats {
        grid-template-columns: 1fr;
    }

    .feedbacks-title {
        font-size: 40px;
    }

    .feedbacks-subtitle {
        font-size: 13px;
        padding-top: 25px;
    }

    .feedbacks-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feedback-card {
        padding: 30px 25px;
    }

    .feedback-text {
        font-size: 14px;
    }

    .feedback-author h4 {
        font-size: 18px;
    }

    .contato-title {
        font-size: 40px;
    }

    .contato-subtitle {
        font-size: 13px;
        padding-top: 25px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social-icons {
        justify-content: center;
    }

    .contato-buttons {
        flex-direction: column;
        align-items: center;
    }

    .social-button {
        width: 80%;
        justify-content: center;
    }

    .lightbox-polaroid img {
        max-width: 500px;
        max-height: 400px;
        width: auto;
        height: auto;
        display: block;
        object-fit: contain;
        margin: 0 auto;
    }

}

@media (max-width: 480px) {
    .navbar {
        padding: 15px 20px;
    }

    .logo {
        height: 45px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .cta-button {
        padding: 15px 25px;
        font-size: 13px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .produto-image {
        height: 300px;
    }
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--cafe-claro);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--cafe-escuro), var(--verde-escuro));
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--verde-accent);
}
