/* Base Styles */
:root {
    --primary-color: #acc6b4; /* Nova cor verde suave */
    --primary-dark: #93ab9a; /* Versão mais escura da nova cor para hover states */
    --text-color: #333333;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --dark-gray: #666666;
    --black: #000000;
    --overlay-color: rgba(0, 0, 0, 0.4);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'santral', sans-serif;
    font-weight: 400;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 2px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    z-index: -1;
}

.btn:hover:before {
    width: 100%;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--black);
    border: none;
    font-weight: 400;
    font-size: 0.9rem;
    padding: 12px 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    text-transform: none;
    border-radius: 0;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.btn-primary:hover {
    background-color: #6bc9c2;
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.btn-whatsapp {
    background-color: var(--primary-color);
    color: var(--black);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    font-size: 13px;
    border-radius: 0;
    border: none;
    letter-spacing: 1px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-whatsapp i {
    font-size: 16px;
}

.btn-whatsapp:hover {
    background-color: #6bc9c2;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 12px 0;
    transition: var(--transition);
}

.header.scrolled {
    padding: 8px 0;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    flex: 0 0 auto;
}

.logo img {
    height: 40px;
    transition: var(--transition);
}

.header.scrolled .logo img {
    height: 35px;
}

.main-nav {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
}

.main-nav ul {
    display: flex;
    gap: 40px;
}

.main-nav a {
    font-weight: 400;
    position: relative;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 0;
    color: var(--text-color);
    font-family: 'Cormorant Garamond', serif;
}

.main-nav a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    transition: width 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.main-nav a:hover:after {
    width: 100%;
}

.whatsapp-btn {
    margin-left: 20px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1010;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-color);
    transition: var(--transition);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 64px; /* Account for fixed header */
    overflow: hidden;
}

/* Hero Swiper */
.hero-swiper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.swiper-slide {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 1.5s ease, opacity 1.5s ease;
}

.swiper-slide-active {
    transform: scale(1.05);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 2;
}

.hero-text-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 10;
}

.hero-content {
    color: var(--white);
    max-width: 700px;
    padding: 0 20px;
    text-align: left;
}

.hero-content h1 {
    font-size: 5rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    color: var(--white);
    text-transform: none;
}

.divider {
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 25px 0;
}

.hero-content .subtitle {
    font-size: 2rem;
    margin-bottom: 40px;
    font-weight: 400;
    line-height: 1.4;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    color: var(--white);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.whatsapp-float a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: var(--black);
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    font-size: 28px;
    transition: var(--transition);
    position: relative;
}

.whatsapp-float a:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}

.whatsapp-tooltip {
    position: absolute;
    right: 75px;
    background-color: var(--white);
    color: var(--text-color);
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 14px;
    white-space: nowrap;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: var(--transition);
}

.whatsapp-tooltip:after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 6px solid var(--white);
}

.whatsapp-float a:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .main-nav {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background-color: rgba(255, 255, 255, 0.95);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        z-index: 1000;
        padding-top: 100px;
        padding-left: 40px;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.05);
        border-left: 1px solid rgba(0, 0, 0, 0.05);
        transition: transform 0.4s ease;
        transform: translateX(100%);
    }
    
    .main-nav.active {
        display: flex;
        transform: translateX(0);
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 25px;
        align-items: flex-start;
    }
    
    .main-nav a {
        font-size: 17px;
        font-weight: 400;
        letter-spacing: 1.2px;
        font-family: 'Cormorant Garamond', serif;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .hero-content .subtitle {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
    }
    
    .logo {
        order: 1;
    }
    
    .whatsapp-btn {
        order: 2;
    }
    
    .mobile-menu-toggle {
        order: 3;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content .subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .hero-content {
        text-align: center;
        padding: 0 15px;
    }
    
    .divider {
        margin: 20px auto;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .whatsapp-btn {
        display: none;
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-content .subtitle {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
    }
    
    .logo {
        order: 1;
    }
    
    .whatsapp-btn {
        order: 2;
    }
    
    .mobile-menu-toggle {
        order: 3;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content .subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .hero-content {
        text-align: center;
    }
}

/* About Section Styles */
.about-section {
    padding: 120px 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/pattern-bg.png');
    background-repeat: repeat;
    background-size: 400px;
    opacity: 0.02;
    pointer-events: none;
}

/* About Header */
.about-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.elegant-subtitle {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 400;
    display: block;
}

.elegant-title {
    font-size: 3rem;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 25px;
    font-family: 'santral', sans-serif;
    line-height: 1.2;
}

.elegant-divider {
    width: 80px;
    height: 2px;
    background-color: var(--primary-color);
    margin: 0 auto 30px;
    position: relative;
}

.elegant-divider::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
}

/* About Wrapper */
.about-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    margin-bottom: 100px;
}

/* About Image */
.about-image {
    flex: 0 0 48%;
    position: relative;
}

.storefront-image {
    position: relative;
    z-index: 1;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: visible;
    max-width: 400px;
}

.main-about-img {
    max-width: 100%;
    height: auto;
    display: block;
    transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
    background-color: transparent;
}

.storefront-image:hover .main-about-img {
    transform: scale(1.05);
}

.image-frame {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border: 1px solid var(--primary-color);
    z-index: -1;
}

/* About Content */
.about-content {
    flex: 0 0 48%;
}

.about-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--dark-gray);
    margin-bottom: 30px;
    font-weight: 300;
}

.about-signature {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    padding-top: 20px;
}

.about-signature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.signature-name {
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.signature-title {
    font-size: 0.9rem;
    color: var(--dark-gray);
    font-style: italic;
}

/* About Features */
.about-features-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 100px;
}

.about-feature {
    padding: 40px 30px;
    background-color: rgba(245, 245, 245, 0.5);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
}

.about-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    background-color: white;
}

.feature-number {
    font-size: 3.5rem;
    font-weight: 200;
    color: rgba(128, 216, 208, 0.15);
    position: absolute;
    top: 20px;
    right: 20px;
    line-height: 1;
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--text-color);
    position: relative;
    z-index: 1;
}

.feature-desc {
    font-size: 1rem;
    color: var(--dark-gray);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* Gallery Showcase Styles */
.gallery-showcase {
    padding-top: 20px;
}

.gallery-title {
    text-align: center;
    margin-bottom: 60px;
}

.gallery-title h3 {
    font-size: 2rem;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto;
    gap: 30px;
}

.gallery-item {
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    padding: 30px 20px 20px;
    color: white;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-caption {
    opacity: 1;
    transform: translateY(0);
}

.gallery-caption h4 {
    font-size: 1.2rem;
    font-weight: 400;
    margin: 0;
}

/* Responsive Styles for About Section */
@media (max-width: 1200px) {
    .about-features-wrapper {
        gap: 25px;
    }
    
    .about-feature {
        padding: 30px 20px;
    }
}

@media (max-width: 992px) {
    .about-wrapper {
        flex-direction: column;
        gap: 60px;
    }
    
    .about-image, .about-content {
        flex: 0 0 100%;
        width: 100%;
    }
    
    .storefront-image {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
        box-shadow: none;
    }
    
    .main-about-img {
        width: 100%;
    }
    
    .about-features-wrapper {
        grid-template-columns: repeat(1, 1fr);
        gap: 30px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 80px 0;
    }
    
    .about-header {
        margin-bottom: 50px;
    }
    
    .elegant-title {
        font-size: 2.5rem;
    }
    
    .about-wrapper {
        margin-bottom: 70px;
    }
    
    .about-features-wrapper {
        margin-bottom: 70px;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 60px 0;
    }
    
    .elegant-title {
        font-size: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .image-frame {
        display: none;
    }
    
    .storefront-image {
        max-width: 280px;
        margin: 0 auto;
    }
    
    .main-about-img {
        width: 100%;
    }
}
