/* Reset e variáveis globais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores terrosas */
    --terracota: #B85450;
    --terracota-light: #D4696B;
    --terracota-dark: #A03E3A;
    --terra-brown: #8B4513;
    --clay: #C17A74;
    --sand: #E6B88A;
    --sage: #9CAF88;
    --cream: #F5F0E8;
    --warm-white: #FDF9F3;
    --deep-brown: #5D4037;
    --soft-brown: #8D6E63;
    --accent-gold: #DAA520;
    --promo-green: #28A745;
    --strike-red: #DC3545;
    
    /* Gradientes modernos */
    --gradient-primary: linear-gradient(135deg, var(--terracota) 0%, var(--terra-brown) 100%);
    --gradient-hero: linear-gradient(135deg, var(--warm-white) 0%, var(--cream) 30%, var(--sand) 100%);
    --gradient-card: linear-gradient(145deg, var(--warm-white) 0%, var(--cream) 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(184, 84, 80, 0.1) 0%, rgba(156, 175, 136, 0.1) 100%);
    --gradient-text: linear-gradient(135deg, var(--terracota) 0%, var(--terra-brown) 50%, var(--accent-gold) 100%);
    --gradient-section: linear-gradient(180deg, var(--warm-white) 0%, var(--cream) 50%, var(--sand) 100%);
    --gradient-footer: linear-gradient(135deg, var(--deep-brown) 0%, var(--terra-brown) 100%);
    
    /* Tipografia */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Sombras */
    --shadow-soft: 0 10px 40px rgba(93, 64, 55, 0.1);
    --shadow-medium: 0 20px 60px rgba(93, 64, 55, 0.15);
    --shadow-strong: 0 30px 80px rgba(93, 64, 55, 0.2);
    --shadow-terra: 0 15px 50px rgba(184, 84, 80, 0.3);
    --shadow-warm: 0 8px 32px rgba(139, 69, 19, 0.2);
    
    /* Transições */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Fontes e estilos globais */
body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--deep-brown);
    background: var(--gradient-section);
    overflow-x: hidden;
    position: relative;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Elementos base */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

/* Seções */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
}

.section-subtitle {
    font-size: 0.9rem;
    font-weight: 500;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1rem;
    display: inline-block;
    position: relative;
    animation: slideInUp 0.8s ease-out;
}

.section-subtitle::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-title {
    font-size: 3rem;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    font-weight: 700;
    animation: slideInUp 1s ease-out 0.2s both;
}

.section-description {
    font-size: 1.1rem;
    color: var(--soft-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 249, 243, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(184, 84, 80, 0.1);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-logo h2 {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    font-size: 1.2rem;
}

.nav-logo span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-desc {
    margin-left: 8px;
    white-space: nowrap;
    font-size: 1rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    text-decoration: none;
    color: var(--deep-brown);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-smooth);
}

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

.nav-link:hover {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateY(-2px);
}

.cta-button {
    background: var(--gradient-primary);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-terra);
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 20px 60px rgba(184, 84, 80, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--dark-brown);
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-hero);
    z-index: -2;
}

.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-overlay);
    z-index: -1;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.float-element {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(184, 84, 80, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s infinite ease-in-out;
}

.float-element:nth-child(1) {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.float-element:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: -7s;
}

.float-element:nth-child(3) {
    bottom: 20%;
    left: 60%;
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    25% { transform: translateY(-30px) rotate(90deg); }
    50% { transform: translateY(-60px) rotate(180deg); }
    75% { transform: translateY(-30px) rotate(270deg); }
}

.hero-container {
    padding: 8rem 2rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    color: var(--deep-brown);
    animation: slideInLeft 1s ease-out;
}

.hero-subtitle {
    font-size: 1rem;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    font-weight: 500;
    animation: slideInUp 0.8s ease-out 0.2s both;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideInUp 1s ease-out 0.4s both;
}

.highlight {
    background: linear-gradient(135deg, var(--terracota) 0%, var(--accent-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    text-shadow: 2px 2px 4px rgba(184, 84, 80, 0.3);
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: var(--soft-brown);
    animation: slideInUp 1s ease-out 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 4rem;
    animation: slideInUp 1s ease-out 0.8s both;
}

.btn-primary, .btn-primary:visited, .btn-primary:active {
    background: #a74e39 !important;
    color: #fff !important;
    min-width: 340px;
    padding: 1.2rem 4.5rem;
    font-size: 1.4rem;
    border-radius: 50px;
    text-decoration: none !important;
    font-weight: 600;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-terra);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
}
.btn-primary i {
    color: #fff !important;
    text-decoration: none !important;
}

.btn-primary::before { display: none !important; }
.btn-primary:hover::before { display: none !important; }

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 20px 60px rgba(184, 84, 80, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--deep-brown);
    border: 2px solid var(--terracota);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
    z-index: -1;
}

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

.btn-secondary:hover {
    color: white;
    transform: translateY(-3px) scale(1.05);
    border-color: var(--terracota-dark);
}

.hero-stats {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    margin-top: 2rem;
}

.stat-item {
    background: #fdf9f3;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(93,64,55,0.07);
    padding: 1.2rem 1.2rem;
    min-width: 120px;
    max-width: 160px;
    text-align: center;
    transition: box-shadow 0.3s;
}

.stat-item:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-medium);
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.2rem;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--soft-brown);
    font-weight: 500;
    letter-spacing: 1px;
    margin-top: 0.2rem;
    line-height: 1.2;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 1s ease-out 0.5s both;
}

/* Hero - formato retrato para profissional */
.hero .image-frame {
    position: relative;
    width: 400px;
    height: 600px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}

/* About - formato retrato para profissional */
.about .image-wrapper {
    position: relative;
    width: 400px;
    height: 600px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    margin: 0 auto;
}

.image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-placeholder,
.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: var(--cream);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--soft-brown);
    border: 2px dashed var(--terracota);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.image-placeholder::before,
.gallery-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(184, 84, 80, 0.1), transparent);
    transform: rotate(45deg);
    transition: transform 0.6s ease;
}

.image-placeholder:hover::before,
.gallery-placeholder:hover::before {
    transform: rotate(45deg) translate(50%, 50%);
}

.image-placeholder:hover,
.gallery-placeholder:hover {
    background: var(--sand);
    color: var(--terracota);
    border-color: var(--terracota-dark);
    transform: scale(1.02);
}

.image-placeholder i,
.gallery-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.image-placeholder span,
.gallery-placeholder span {
    font-weight: 500;
    font-size: 1rem;
}

.author-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--soft-brown);
    border: 2px solid var(--terracota);
    transition: var(--transition-smooth);
}

.author-placeholder:hover {
    background: var(--sand);
    color: var(--terracota);
    transform: scale(1.1);
}

.author-placeholder i {
    font-size: 1.5rem;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(108, 117, 125, 0.2) 0%, transparent 50%);
}

.floating-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--gradient-primary);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    box-shadow: var(--shadow-gray);
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Services Section */
.services {
    padding: 8rem 0;
    background: var(--gradient-section);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(184, 84, 80, 0.03) 0%, rgba(139, 69, 19, 0.03) 100%);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.service-card {
    background: var(--warm-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(184, 84, 80, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(184, 84, 80, 0.1), transparent);
    transition: left 0.6s ease;
}

.service-card:hover::after {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: var(--shadow-strong);
    border-color: var(--terracota);
}

.service-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: white;
}

.service-card.premium .service-icon {
    background: rgba(255, 255, 255, 0.2);
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-content p {
    color: var(--soft-brown);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 2rem;
    color: var(--soft-brown);
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: bold;
    font-size: 1.1rem;
}

.service-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(184, 84, 80, 0.2);
    position: relative;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--promo-green);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.price::before {
    content: none;
}

.duration {
    color: var(--soft-brown);
    font-size: 0.9rem;
    font-weight: 500;
}

.service-price span {
    display: block;
}
.service-price span:first-child {
    margin-bottom: 0.6em;
}

/* About Section */
.about {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--cream) 0%, var(--warm-white) 50%, var(--sand) 100%);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(184, 84, 80, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(156, 175, 136, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    position: relative;
}

.image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

.image-wrapper img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.decorative-frame {
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 3px solid var(--terracota);
    border-radius: 30px;
    z-index: -1;
    background: var(--gradient-primary);
    opacity: 0.1;
}

.about-text {
    padding-left: 2rem;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: var(--soft-brown);
}

.about-features {
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-item i {
    font-size: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 0.5rem;
}

.feature-item h4 {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.feature-item p {
    color: var(--soft-brown);
    line-height: 1.6;
}

.about-quote {
    background: var(--gradient-card);
    padding: 2.5rem;
    border-radius: 20px;
    border-left: 4px solid var(--terracota);
    box-shadow: var(--shadow-warm);
    position: relative;
    overflow: hidden;
}

.about-quote::before {
    content: '';
}

.about-quote blockquote {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--deep-brown);
    position: relative;
    z-index: 1;
}

.about-quote blockquote::before {
    content: '';
}

.about-quote blockquote::before {
    content: '';
}

.about-stats {
    display: flex;
    gap: 2rem;
    justify-content: flex-start;
    margin: 2.5rem 0 1.5rem 0;
}

.about-stat {
    background: #fdf9f3;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(93,64,55,0.07);
    padding: 1.1rem 1.5rem;
    min-width: 110px;
    text-align: center;
}

.about-stat-number {
    font-size: 1.7rem;
    font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.2rem;
    display: block;
}

.about-stat-label {
    font-size: 0.95rem;
    color: var(--soft-brown);
    font-weight: 500;
    letter-spacing: 1px;
    margin-top: 0.2rem;
    line-height: 1.2;
    display: block;
}

/* Testimonials Section */
.testimonials {
    padding: 8rem 0;
    background: var(--gradient-section);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(184, 84, 80, 0.05) 0%, rgba(139, 69, 19, 0.05) 100%);
    pointer-events: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: var(--warm-white);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: var(--shadow-warm);
    text-align: center;
    border: 1px solid rgba(184, 84, 80, 0.1);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(184, 84, 80, 0.1), transparent);
    transition: top 0.6s ease;
}

.testimonial-card:hover::before {
    top: 100%;
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-strong);
    border-color: var(--terracota);
}

.testimonial-stars {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial-stars .fa-star {
    color: #FFD700 !important;
    font-size: 24px;
    text-shadow: none !important;
    background: none !important;
    filter: none !important;
    transition: all 0.3s ease;
}

.testimonial-stars .fa-star:hover {
    color: #FFC700 !important;
    transform: scale(1.2);
}

.testimonial-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--soft-brown);
    margin-bottom: 2rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.2rem;
}

.author-info span {
    color: var(--soft-brown);
    font-size: 0.9rem;
}

/* Navegação removida - depoimentos agora são estáticos lado a lado */

/* Gallery Section */
.gallery {
    padding: 8rem 0;
    background: linear-gradient(180deg, var(--sand) 0%, var(--cream) 50%, var(--warm-white) 100%);
    position: relative;
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 30%, rgba(156, 175, 136, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.gallery-tabs {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.gallery-tabs .tab-button {
    background: #fff;
    color: #b85450;
    border: 2px solid #b85450;
    border-radius: 30px;
    padding: 0.7em 2em;
    font-size: 1.1rem;
    font-family: inherit;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, border 0.2s;
}

.gallery-tabs .tab-button.active {
    background: #b85450;
    color: #fff;
    border: 2px solid #b85450;
}

.tab-button {
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid var(--terracota);
    color: var(--terracota);
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.tab-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: left 0.4s ease;
    z-index: -1;
}

.tab-button.active::before,
.tab-button:hover::before {
    left: 0;
}

.tab-button.active,
.tab-button:hover {
    color: white;
    border-color: var(--terracota-dark);
    transform: translateY(-2px);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-grid.hidden {
    display: none;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

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

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

/* Galeria profissional - formato retrato */
#professional-gallery .gallery-item {
    aspect-ratio: 3/4;
}

#professional-gallery .gallery-item img,
#professional-gallery .gallery-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

/* Galeria espaço - formato quadrado */
#space-gallery .gallery-item {
    aspect-ratio: 1/1;
}

#space-gallery .gallery-item img,
#space-gallery .gallery-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

/* Remove diferença de tamanho para large */
.gallery-item.large {
    grid-column: span 1;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
    position: relative;
    background: var(--gradient-section);
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-overlay);
    opacity: 0.3;
    z-index: -1;
}

.faq-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--warm-white);
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 1px solid rgba(184, 84, 80, 0.1);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.faq-question {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--gradient-card);
    transition: var(--transition-smooth);
}

.faq-question:hover {
    background: var(--gradient-primary);
    color: white;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    color: inherit;
}

.faq-question i {
    font-size: 1.2rem;
    transition: var(--transition-smooth);
    color: var(--terracota);
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: white;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    /* Nada aqui, só o JS controla o max-height */
}

.faq-answer p {
    color: var(--soft-brown);
    line-height: 1.6;
    margin: 0;
    padding: 1rem 0;
}

/* Contact CTA Section */
.contact-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #a86a4a 0%, #c98a6a 100%) !important;
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
    z-index: 1;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.contact-cta .btn-primary {
    background: #fff !important;
    color: #984924 !important;
    border: 2px solid #984924 !important;
    min-width: 340px;
    padding: 1.2rem 4.5rem;
    font-size: 1.4rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-terra);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.contact-cta .btn-primary i {
    color: #984924 !important;
    text-decoration: none !important;
}

.contact-cta .btn-primary:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Footer */
.footer {
    background: #7a3c2e;
    color: #fff;
    padding: 4rem 0 2rem;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.1) 0%, rgba(184, 84, 80, 0.1) 100%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--sand) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.footer-section h4 {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--sand) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: var(--transition-smooth);
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: var(--shadow-terra);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--sand) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.1rem;
    width: 20px;
}

.schedule {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.newsletter input {
    flex: 1;
    padding: 0.8rem;
    border: none;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.9rem;
}

.newsletter input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter button {
    padding: 0.8rem 1.5rem;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.newsletter button:hover {
    transform: translateY(-2px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--sand) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Responsividade */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-text {
        padding-left: 0;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
    
    .gallery-item.large {
        grid-column: span 1;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
        max-width: 100%;
    }
    
    .contact-cta {
        padding: 4rem 0;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .nav-container {
        padding: 1rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--warm-white);
        flex-direction: column;
        padding: 2rem 1rem;
        box-shadow: var(--shadow-medium);
        transform: translateY(-100%);
        transition: var(--transition-smooth);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        border-top: 1px solid rgba(184, 84, 80, 0.1);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu li {
        margin: 0.5rem 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-container {
        padding: 6rem 1rem 3rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        letter-spacing: 2px;
    }
    
    .image-frame {
        width: 100%;
        height: 400px;
        margin: 0 auto;
    }
    
    .services {
        padding: 4rem 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
        margin: 0;
    }
    
    .about {
        padding: 4rem 0;
    }
    
    .about-content {
        gap: 2rem;
    }
    
    .testimonials {
        padding: 4rem 0;
    }
    
    .testimonial-card {
        padding: 2rem 1.5rem;
        margin: 0;
    }
    
    .gallery {
        padding: 4rem 0;
    }
    
    .gallery-tabs {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .tab-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .faq {
        padding: 4rem 0;
    }
    
    .faq-question {
        padding: 1.5rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .footer {
        padding: 3rem 0 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .newsletter {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .nav-cta {
        display: none !important;
    }
    
    .nav-logo h2 {
        font-size: 1rem;
    }
    
    .nav-desc {
        font-size: 0.85rem;
    }

    .service-price {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    .service-price .old-price {
        margin-bottom: 0.7rem;
    }
    .service-price .price {
        margin-top: 0.7rem;
    }
}

@media (max-width: 480px) {
    * {
        max-width: 100%;
    }
    
    .contact-cta {
        padding: 3rem 0;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 0.9rem;
    }
    
    body {
        overflow-x: hidden;
    }
    
    .container {
        padding: 0 0.8rem;
        width: 100%;
        max-width: 100vw;
    }
    
    .nav-container {
        padding: 0.8rem;
    }
    
    .nav-logo h2 {
        font-size: 1.5rem;
    }
    
    .cta-button {
        padding: 0.6rem 1.5rem;
        font-size: 0.8rem;
    }
    
    .hero-container {
        padding: 5rem 0.8rem 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.25;
        max-width: 320px;
        margin: 0 auto 1rem auto;
        word-break: break-word;
        white-space: normal;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
    
    .hero-description {
        font-size: 1rem;
        max-width: 320px;
        margin: 0 auto 1.5rem auto;
        word-break: break-word;
        white-space: normal;
    }
    
    .hero-buttons {
        gap: 0.8rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
        max-width: 280px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
        line-height: 1.2;
    }
    
    .section-subtitle {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .image-frame {
        height: 350px;
        border-radius: 20px;
    }
    
    .floating-badge {
        top: -10px;
        right: -10px;
        padding: 0.8rem 1rem;
        font-size: 0.85rem;
    }
    
    .services,
    .about,
    .testimonials,
    .gallery,
    .faq {
        padding: 3rem 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .service-card {
        padding: 1.5rem 1rem;
        border-radius: 15px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .service-content h3 {
        font-size: 1.3rem;
    }
    
    .price {
        font-size: 1.6rem;
    }
    
    .about-content {
        gap: 1.5rem;
    }
    
    .image-wrapper {
        border-radius: 20px;
    }
    
    .feature-item {
        gap: 1rem;
    }
    
    .feature-item i {
        font-size: 1.5rem;
    }
    
    .about-quote {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem 1rem;
        border-radius: 20px;
    }
    
    .testimonial-content p {
        font-size: 1rem;
    }
    
    .testimonials-nav {
        margin-top: 2rem;
    }
    
    .gallery-tabs {
        gap: 0.8rem;
    }
    
    .tab-button {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
        border-radius: 25px;
    }
    
    .gallery-grid {
        gap: 0.8rem;
    }
    
    .gallery-item {
        border-radius: 15px;
    }
    
    .gallery-placeholder i {
        font-size: 2rem;
    }
    
    .gallery-placeholder span {
        font-size: 0.9rem;
    }
    
    .faq-item {
        border-radius: 12px;
        margin-bottom: 1rem;
    }
    
    .faq-question {
        padding: 1.2rem;
    }
    
    .faq-question h3 {
        font-size: 0.95rem;
        line-height: 1.3;
    }
    
    .faq-answer {
        padding: 0 1.2rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.2rem 1.2rem;
    }
    
    .footer {
        padding: 2.5rem 0 1.5rem;
    }
    
    .footer-content {
        gap: 1.5rem;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 1.1rem;
    }
    
    .contact-info {
        gap: 0.8rem;
    }
    
    .contact-item {
        font-size: 0.9rem;
    }
    
    .schedule-item {
        font-size: 0.9rem;
    }
    
    .newsletter input {
        padding: 0.7rem;
        font-size: 0.9rem;
    }
    
    .newsletter button {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        padding-top: 1.5rem;
        font-size: 0.9rem;
    }
    
    .floating-elements {
        display: none;
    }
    
    /* Previne scroll horizontal */
    .hero-content,
    .about-content,
    .services-grid,
    .gallery-grid,
    .testimonials-slider,
    .faq-grid {
        width: 100%;
        max-width: 100vw;
        box-sizing: border-box;
    }
}

/* Animações modernas */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.scroll-animation {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-animation.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Animações específicas para diferentes elementos */
.service-card {
    animation: fadeInScale 0.8s ease-out both;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

.gallery-item {
    animation: slideInUp 0.8s ease-out both;
}

.gallery-item:nth-child(1) { animation-delay: 0.1s; }
.gallery-item:nth-child(2) { animation-delay: 0.2s; }
.gallery-item:nth-child(3) { animation-delay: 0.3s; }
.gallery-item:nth-child(4) { animation-delay: 0.4s; }
.gallery-item:nth-child(5) { animation-delay: 0.5s; }

.faq-item {
    animation: slideInLeft 0.8s ease-out both;
}

.faq-item:nth-child(1) { animation-delay: 0.1s; }
.faq-item:nth-child(2) { animation-delay: 0.2s; }
.faq-item:nth-child(3) { animation-delay: 0.3s; }
.faq-item:nth-child(4) { animation-delay: 0.4s; }
.faq-item:nth-child(5) { animation-delay: 0.5s; }
.faq-item:nth-child(6) { animation-delay: 0.6s; }

.about-image {
    animation: slideInLeft 1s ease-out;
}

.about-text {
    animation: slideInRight 1s ease-out 0.3s both;
}

.feature-item {
    animation: slideInUp 0.8s ease-out both;
}

.feature-item:nth-child(1) { animation-delay: 0.8s; }
.feature-item:nth-child(2) { animation-delay: 1s; }
.feature-item:nth-child(3) { animation-delay: 1.2s; }

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Prevenção de scroll horizontal */
html, body {
    max-width: 100vw;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

/* Melhorias adicionais para mobile */
@media (max-width: 768px) {
    .hero-stats {
        width: 100%;
        max-width: 100%;
    }
    
    .testimonials-slider {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    
    .gallery-tabs {
        width: 100%;
        max-width: 100%;
    }
    
    .nav-menu.active {
        width: 100vw;
        max-width: 100vw;
    }
}

/* Menu hamburger animado */
.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Scrollbar personalizada */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--cream);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-gold-dark);
}

/* Adicionar efeitos modernos globais */
.section-with-effects {
    position: relative;
    overflow: hidden;
}

/* Animações de entrada */
.slide-in-up {
    opacity: 0;
    transform: translateY(50px);
    filter: blur(5px);
    transition: all 0.8s ease-out;
}

.slide-in-up.animate {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0px);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    filter: blur(5px);
    transition: all 0.8s ease-out;
}

.slide-in-left.animate {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0px);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    filter: blur(5px);
    transition: all 0.8s ease-out;
}

.slide-in-right.animate {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0px);
}

/* Efeito parallax sutil */
.parallax-bg {
    position: relative;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.parallax-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(184, 84, 80, 0.1), rgba(139, 69, 19, 0.1));
    pointer-events: none;
}

/* Feedback interativo */
.interactive-hover {
    transition: all 0.3s ease;
}

.interactive-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    filter: brightness(1.05);
}

/* Estrelas amarelas para depoimentos */
.testimonial-stars,
.stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
    justify-content: center;
}

.testimonial-stars .fa-star,
.stars .fa-star {
    color: #FFD700 !important;
    font-size: 24px;
    text-shadow: none !important;
    background: none !important;
    filter: none !important;
    transition: all 0.3s ease;
}

.testimonial-stars .fa-star:hover,
.stars .fa-star:hover {
    color: #FFC700 !important;
    transform: scale(1.2);
}

/* Ajustar grid da galeria para 6 fotos */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    aspect-ratio: 1 / 1;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Aplicar efeitos nas seções */
.services {
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(184, 84, 80, 0.05), rgba(139, 69, 19, 0.05));
    pointer-events: none;
}

.about {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(156, 175, 136, 0.05), rgba(218, 165, 32, 0.05));
    pointer-events: none;
}

.testimonials {
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(184, 84, 80, 0.05), rgba(139, 69, 19, 0.05));
    pointer-events: none;
}

.gallery {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(156, 175, 136, 0.05), rgba(218, 165, 32, 0.05));
    pointer-events: none;
}

.faq {
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(184, 84, 80, 0.05), rgba(139, 69, 19, 0.05));
    pointer-events: none;
}

/* Responsividade para galeria */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery-item {
        aspect-ratio: 4 / 3;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1025px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Botão flutuante WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
    color: #fff !important;
    text-decoration: none !important;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Efeito hover nos cards de serviço */
.service-card {
    transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}
.service-card:hover {
    background: #f5e3db;
    color: var(--terracota-dark);
    box-shadow: 0 8px 32px rgba(184,84,80,0.13);
}
.service-card:hover h3,
.service-card:hover p,
.service-card:hover .service-features li,
.service-card:hover .service-price {
    color: var(--terracota-dark);
}

/* Rodapé e CTA final com cor mais escura */
.footer {
    background: #7a3c2e;
    color: #fff;
}
.footer-section h3, .footer-section h4, .footer-section p, .footer-links, .footer-bottom {
    color: #fff;
}
.contact-cta {
    background: #7a3c2e;
}
.cta-content h2, .cta-content p, .contact-cta .btn-primary {
    color: #fff;
}

#space-gallery .gallery-grid {
  grid-template-columns: repeat(3, 1fr) !important;
}

@media (max-width: 600px) {
  body {
    overflow-x: hidden;
  }
  .hero-container {
    padding: 0 10px;
    box-sizing: border-box;
  }
  .hero-content {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    display: flex;
  }
  .hero-text {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    text-align: center;
    word-break: break-word;
    white-space: normal;
  }
  .hero-title {
    font-size: 2rem;
    line-height: 1.25;
    max-width: 320px;
    margin: 0 auto 1rem auto;
    word-break: break-word;
    white-space: normal;
  }
  .hero-description {
    font-size: 1rem;
    max-width: 320px;
    margin: 0 auto 1.5rem auto;
    word-break: break-word;
    white-space: normal;
  }
  .hero {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  .hero .image-frame {
    width: 100vw;
    height: 105vw;
    max-width: 100vw;
    min-width: 0;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    background: none;
    overflow: visible;
    position: static;
  }
  .hero .image-frame img {
    width: 100vw;
    height: 105vw;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
    display: block;
  }
  .hero .image-overlay {
    display: none !important;
  }
  .about-text {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    text-align: center;
    word-break: break-word;
    white-space: normal;
  }
  .about-description {
    font-size: 1rem;
    max-width: 320px;
    margin: 0 auto 1.5rem auto;
    word-break: break-word;
    white-space: normal;
    line-height: 1.5;
  }
  .about-description br {
    display: block;
    margin-bottom: 0.7em;
  }
  .about-stats {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 1.2rem auto 1.2rem auto;
    max-width: 320px;
  }
  .about-stat {
    min-width: 70px;
    max-width: 90px;
    padding: 0.4rem 0.4rem;
    font-size: 0.85rem;
    border-radius: 10px;
    background: #f5f0e8;
    box-shadow: 0 2px 8px rgba(93,64,55,0.07);
  }
  .about-stat-number {
    font-size: 1.1rem;
  }
  .about-stat-label {
    font-size: 0.75rem;
  }
  .about .image-wrapper {
    width: 100vw;
    max-width: 100vw;
    height: 90vw;
    min-width: 0;
    margin: 0 0 20px 0;
    border-radius: 0;
    box-shadow: none;
    background: none;
    overflow: hidden;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  .about .image-wrapper img {
    width: 100vw;
    height: 90vw;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
    display: block;
    margin: 0;
  }
  .about-text {
    width: 100%;
    max-width: 320px;
    margin: 0 0 0 10px;
    text-align: left;
    word-break: break-word;
    white-space: normal;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}