/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors */
    --primary-gold: #C99B53;
    --light-beige: #FFDFB0;
    --yellow-gold: #E5B461;
    --deep-blue: #1A4460;
    --neutral-gray: #444444;
    --dark-gray: #272727;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    
    /* Typography - Optimized */
    --font-primary: 'Montserrat', sans-serif;
    --font-accent: 'Poppins', sans-serif;
    --font-display: 'Anton', sans-serif;
    
    /* Font Weights */
    --fw-light: 300;
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 20px;
    --border-radius: 12px;
    --border-radius-lg: 20px;
    
    /* Shadows for Depth */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 25px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 15px 35px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 25px 50px rgba(0, 0, 0, 0.2);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: var(--font-primary);
    font-weight: var(--fw-regular);
    line-height: 1.6;
    color: var(--neutral-gray);
    overflow-x: hidden;
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Typography System */
.section-title {
    font-family: var(--font-accent);
    font-weight: var(--fw-semibold);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--deep-blue);
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--yellow-gold));
    border-radius: 2px;
}

/* Navigation */
.navbar {
    position: relative;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

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

.nav-logo h2 {
    font-family: var(--font-display);
    color: var(--primary-gold);
    font-size: 28px;
    margin-bottom: -5px;
}

.nav-logo span {
    font-family: var(--font-accent);
    font-size: 12px;
    color: var(--deep-blue);
    font-weight: var(--fw-light);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-link {
    text-decoration: none;
    color: var(--neutral-gray);
    font-weight: var(--fw-medium);
    font-size: 15px;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-gold);
}

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

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

.nav-cta {
    background: var(--deep-blue);
    color: white;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: var(--fw-semibold);
    font-size: 14px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.nav-cta:hover {
    background: var(--primary-gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--neutral-gray);
    margin: 3px 0;
    transition: var(--transition);
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/kitchen-hero.jpg') center/cover no-repeat;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 223, 176, 0.8) 50%, rgba(26, 68, 96, 0.7) 100%);
    z-index: 2;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 3;
}

.hero-content {
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-family: var(--font-accent);
    font-weight: var(--fw-semibold);
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--deep-blue);
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--neutral-gray);
    margin-bottom: 15px;
    font-weight: var(--fw-medium);
}

.hero-specialization {
    font-size: 1.1rem;
    color: var(--deep-blue);
    margin-bottom: 35px;
    font-weight: var(--fw-semibold);
}

.hero-cta {
    display: inline-block;
    background: var(--primary-gold);
    color: white;
    padding: 18px 36px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: var(--fw-semibold);
    font-size: 1.1rem;
    transition: var(--transition);
    margin-bottom: 15px;
    box-shadow: var(--shadow-md);
}

.hero-cta:hover {
    background: var(--yellow-gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.hero-response {
    color: var(--neutral-gray);
    font-style: italic;
    margin-bottom: 40px;
}

.trust-indicators {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--deep-blue);
    font-weight: var(--fw-medium);
    font-size: 14px;
}

.trust-item i {
    color: var(--primary-gold);
    width: 20px;
    height: 20px;
}

.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
    animation: fadeInRight 1s ease 0.3s both;
}

.stat-card {
    background: white;
    padding: 25px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    border: 1px solid rgba(201, 155, 83, 0.1);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--neutral-gray);
    font-weight: var(--fw-medium);
}

/* Before & After Section */
.before-after {
    padding: var(--section-padding);
    background: var(--light-beige); /* Alterado para o bege claro da marca */
}

.before-after-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.transformation-card {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.transformation-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.transformation-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.transformation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.transformation-card:hover .transformation-image img {
    transform: scale(1.05);
}

.transformation-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 30px;
    transform: translateY(20px);
    transition: var(--transition);
}

.transformation-card:hover .transformation-overlay {
    transform: translateY(0);
}

.transformation-label {
    display: inline-block;
    background: var(--primary-gold);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: var(--fw-semibold);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.transformation-overlay h3 {
    font-family: var(--font-accent);
    font-weight: var(--fw-semibold);
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.transformation-overlay p {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.5;
}

/* Services Section */
.services {
    padding: var(--section-padding);
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 30px;
}

.service-card {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    height: 400px;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-card.featured {
    grid-column: span 2;
    height: 450px;
}

.service-image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 68, 96, 0.9), rgba(201, 155, 83, 0.8));
    color: white;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon i {
    color: white;
    width: 30px;
    height: 30px;
}

.service-overlay h3 {
    font-family: var(--font-accent);
    font-weight: var(--fw-semibold);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-overlay p {
    font-size: 1rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
    font-size: 0.95rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--light-beige);
    font-weight: bold;
}

.service-cta {
    display: inline-block;
    background: white;
    color: var(--deep-blue);
    padding: 12px 24px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: var(--fw-semibold);
    transition: var(--transition);
    align-self: flex-start;
}

.service-cta:hover {
    background: var(--light-beige);
    transform: translateY(-2px);
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-gold);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

/* Why Gama Section */
.why-gama {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--light-beige) 0%, #fff 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    text-align: center;
    border: 1px solid rgba(201, 155, 83, 0.1);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-gold);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-gold), var(--yellow-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: var(--shadow-sm);
}

.benefit-icon i {
    color: white;
    width: 35px;
    height: 35px;
}

.benefit-card h3 {
    font-family: var(--font-accent);
    font-weight: var(--fw-semibold);
    color: var(--deep-blue);
    font-size: 1.3rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.benefit-card p {
    color: var(--neutral-gray);
    line-height: 1.6;
}

.testimonial-highlight {
    background: white;
    padding: 50px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-highlight::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 120px;
    color: var(--light-beige);
    font-family: serif;
    line-height: 1;
}

.testimonial-content blockquote {
    font-size: 1.4rem;
    color: var(--deep-blue);
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.5;
    font-weight: var(--fw-medium);
}

.testimonial-content cite {
    color: var(--primary-gold);
    font-weight: var(--fw-semibold);
    font-style: normal;
    font-size: 1.1rem;
}

/* Process Section */
.process {
    padding: var(--section-padding);
    background: var(--deep-blue);
    color: white;
}

.process .section-title {
    color: white;
}

.process .section-title::after {
    background: linear-gradient(90deg, var(--primary-gold), var(--yellow-gold));
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-gold), var(--yellow-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 2rem;
    color: white;
    margin: 0 auto 25px;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 2;
}

.step-content h3 {
    font-family: var(--font-accent);
    font-weight: var(--fw-semibold);
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: white;
}

.step-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Projects Gallery */
.projects-gallery {
    padding: var(--section-padding);
    background: var(--light-gray);
}

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

.gallery-item {
    position: relative;
    height: 250px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

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

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

.gallery-overlay h4 {
    font-family: var(--font-accent);
    font-weight: var(--fw-semibold);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.gallery-overlay p {
    color: var(--light-beige);
    font-size: 0.9rem;
}

/* Service Areas */
.service-areas {
    padding: var(--section-padding);
    background: white;
}

.areas-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--neutral-gray);
    margin-bottom: 50px;
    font-weight: var(--fw-medium);
}

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

.area-column {
    background: var(--light-gray);
    padding: 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.area-column:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.area-column h4 {
    font-family: var(--font-accent);
    font-weight: var(--fw-semibold);
    color: var(--deep-blue);
    font-size: 1.2rem;
    margin-bottom: 20px;
    text-align: center;
}

.area-column ul {
    list-style: none;
}

.area-column li {
    padding: 8px 0;
    color: var(--neutral-gray);
    font-weight: var(--fw-medium);
    border-bottom: 1px solid rgba(201, 155, 83, 0.1);
    transition: var(--transition);
}

.area-column li:hover {
    color: var(--primary-gold);
    padding-left: 10px;
}

.areas-note {
    text-align: center;
    font-size: 1.1rem;
    color: var(--primary-gold);
    font-weight: var(--fw-semibold);
    font-style: italic;
}

/* Reviews Section */
.reviews {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--deep-blue) 0%, #2a5a7a 100%);
}

.reviews .section-title {
    color: white;
}

.reviews .section-title::after {
    background: linear-gradient(90deg, var(--primary-gold), var(--yellow-gold));
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.review-card {
    background: white;
    padding: 35px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    position: relative;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.stars {
    color: var(--yellow-gold);
    font-size: 1.2rem;
}

.reviewer-info h4 {
    font-family: var(--font-accent);
    font-weight: var(--fw-semibold);
    color: var(--deep-blue);
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.reviewer-info span {
    color: var(--neutral-gray);
    font-size: 0.9rem;
}

.review-card blockquote {
    color: var(--neutral-gray);
    font-size: 1.1rem;
    line-height: 1.6;
    font-style: italic;
    position: relative;
}

.review-card blockquote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: -15px;
    font-size: 60px;
    color: var(--light-beige);
    font-family: serif;
    line-height: 1;
}

/* Quote Section */
.quote-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--light-beige) 0%, #fff 100%);
}

.quote-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.quote-title {
    font-family: var(--font-accent);
    font-weight: var(--fw-semibold);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--deep-blue);
    margin-bottom: 20px;
    line-height: 1.2;
}

.quote-subtitle {
    font-size: 1.1rem;
    color: var(--neutral-gray);
    margin-bottom: 40px;
    font-weight: var(--fw-medium);
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 18px 15px;
    border: 2px solid #e0e0e0;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: var(--transition);
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(201, 155, 83, 0.1);
}

.form-group label {
    position: absolute;
    top: 18px;
    left: 15px;
    color: #999;
    transition: var(--transition);
    pointer-events: none;
    background: white;
    padding: 0 5px;
    font-weight: var(--fw-medium);
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group select:focus + label,
.form-group select:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label {
    top: -10px;
    left: 10px;
    font-size: 0.85rem;
    color: var(--primary-gold);
}

.submit-btn {
    width: 100%;
    background: var(--primary-gold);
    color: white;
    padding: 18px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.1rem;
    font-weight: var(--fw-semibold);
    font-family: var(--font-primary);
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 15px;
    box-shadow: var(--shadow-md);
}

.submit-btn:hover {
    background: var(--yellow-gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.form-disclaimer {
    text-align: center;
    color: var(--neutral-gray);
    font-size: 0.9rem;
}

.quote-image {
    position: relative;
    background: url('../images/bathroom-hero.jpg') center/cover;
    min-height: 500px;
    border-radius: var(--border-radius-lg);
    display: flex;
    align-items: flex-end;
    padding: 40px;
}

.quote-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 68, 96, 0.8), rgba(201, 155, 83, 0.6));
    border-radius: var(--border-radius-lg);
}

.quote-stats {
    position: relative;
    z-index: 2;
    display: flex;
    gap: 30px;
    width: 100%;
    justify-content: space-around;
}

.quote-stats .stat-item {
    text-align: center;
    color: white;
}

.quote-stats .stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--light-beige);
    margin-bottom: 5px;
}

.quote-stats .stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: var(--fw-medium);
}

/* Final CTA Section */
.final-cta {
    padding: var(--section-padding);
    background: var(--deep-blue);
    text-align: center;
    color: white;
}

.final-title {
    font-family: var(--font-accent);
    font-weight: var(--fw-semibold);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 30px;
    color: white;
    line-height: 1.2;
}

.final-text {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.final-btn {
    display: inline-block;
    background: var(--primary-gold);
    color: white;
    padding: 20px 40px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: var(--fw-semibold);
    font-size: 1.2rem;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
}

.final-btn:hover {
    background: var(--yellow-gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

/* Footer */
.footer {
    background: var(--deep-blue);
    color: white;
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 40px;
}

.footer-logo h3 {
    font-family: var(--font-display);
    color: var(--primary-gold);
    font-size: 28px;
    margin-bottom: -5px;
}

.footer-logo span {
    font-family: var(--font-accent);
    font-size: 12px;
    color: var(--light-beige);
    font-weight: var(--fw-light);
}

.footer-contact {
    margin-top: 25px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--light-beige);
    font-weight: var(--fw-medium);
}

.footer-contact i {
    width: 18px;
    height: 18px;
    color: var(--primary-gold);
}

.footer-links h4 {
    font-family: var(--font-accent);
    font-weight: var(--fw-semibold);
    color: white;
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    color: var(--light-beige);
    text-decoration: none;
    margin-bottom: 12px;
    transition: var(--transition);
    font-weight: var(--fw-medium);
}

.footer-links a:hover {
    color: var(--primary-gold);
    padding-left: 10px;
}

.footer-badges {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.badge {
    background: var(--primary-gold);
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: var(--fw-semibold);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.badge:hover {
    background: var(--yellow-gold);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* Floating SMS Button */
.floating-sms {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary-gold);
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    z-index: 1000;
    animation: pulse 2s infinite;
}

.floating-sms:hover {
    background: var(--deep-blue);
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

.floating-sms i {
    width: 28px;
    height: 28px;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(201, 155, 83, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(201, 155, 83, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(201, 155, 83, 0);
    }
}

/* Messages */
.message {
    position: fixed;
    top: 100px;
    right: 30px;
    padding: 20px 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    z-index: 1001;
    transform: translateX(400px);
    transition: var(--transition);
    max-width: 350px;
    font-weight: var(--fw-medium);
}

.message.show {
    transform: translateX(0);
}

.success-message {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .hero-stats {
        flex-direction: row;
        justify-content: center;
        gap: 30px;
    }
    
    .service-card.featured {
        grid-column: span 1;
        height: 400px;
    }
    
    .quote-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .quote-image {
        order: -1;
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px 0;
        --container-padding: 0 15px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 40px 0;
        gap: 25px;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .before-after-grid,
    .services-grid,
    .benefits-grid,
    .process-grid,
    .gallery-grid,
    .areas-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .quote-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .footer-badges {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .floating-sms {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    
    .message {
        right: 15px;
        left: 15px;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .trust-indicators {
        flex-direction: column;
        gap: 15px;
    }
    
    .transformation-card,
    .service-card,
    .benefit-card,
    .review-card {
        margin: 0 10px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .quote-image {
        padding: 30px 20px;
    }
}

/* Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Loading States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.loading .submit-btn {
    background: #ccc;
    cursor: not-allowed;
}

.loading .submit-btn::after {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid #fff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    display: inline-block;
    margin-left: 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Form Validation Styles */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.form-group input.error + label,
.form-group select.error + label,
.form-group textarea.error + label {
    color: #dc3545;
}

/* === HERO SECTION REFINEMENTS & ANIMATIONS === */

.hero {
    /* CAMADA 1: Ondas Douradas Sutis (SVG) */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='none' stroke='%23C99B53' stroke-opacity='0.15' stroke-width='20' d='M0,128L60,149.3C120,171,240,213,360,208C480,203,600,149,720,149.3C840,149,960,203,1080,202.7C1200,203,1320,149,1380,122.7L1440,96L1440,320L1380,320C1320,320,1200,320,1080,320C960,320,840,320,720,320C600,320,480,320,360,320C240,320,120,320,60,320L0,320Z'%3E%3C/path%3E%3C/svg%3E"),
                      /* CAMADA 2: Gradiente de Fundo */
                      linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: 100% auto;

    min-height: auto;
    display: flex;
    align-items: center;
    padding: 30px 0; /* CORRIGIDO E AJUSTADO */
    overflow: hidden;
    position: relative;
}

.hero-container-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content-split {
    text-align: left;
    animation: fadeInUp 1s ease-out; /* Animação de entrada */
}

.hero-title {
    font-size: clamp(2.8rem, 5vw, 4rem); /* Título um pouco maior */
    color: var(--deep-blue);
    line-height: 1.15;
    margin-bottom: 25px;
    font-weight: var(--fw-bold);
}

/* Cor dourada para o trecho destacado do título */
.hero-title span {
    color: var(--primary-gold);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--neutral-gray);
    margin-bottom: 30px;
    max-width: 500px; /* Limita a largura para melhor leitura */
}

.hero-specialization {
    font-size: 1.1rem;
    color: var(--deep-blue);
    font-weight: var(--fw-semibold);
    margin-bottom: 40px; /* Mais espaço antes dos botões */
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: var(--fw-bold);
    font-size: 1rem;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    box-shadow: var(--shadow-md);
}

.hero-cta i {
    transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1); /* Animação para o ícone */
}

/* Botão Primário com animação de pulso */
.hero-cta.primary {
    background: var(--primary-gold);
    color: white;
    animation: pulse-glow 2.5s infinite; /* Animação de pulso */
}

/* Animação de pulso para o botão principal */
@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(201, 155, 83, 0.4);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(201, 155, 83, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(201, 155, 83, 0);
    }
}

.hero-cta.primary:hover {
    background: var(--yellow-gold);
    transform: translateY(-4px) scale(1.03); /* Efeito de hover aprimorado */
    box-shadow: var(--shadow-lg);
    animation-play-state: paused; /* Pausa a animação de pulso no hover */
}

.hero-cta.primary:hover i {
    transform: translateX(5px); /* Movimento do ícone no hover */
}

.hero-cta.secondary {
    background: transparent;
    color: var(--deep-blue);
    border-color: #d1d1d1;
}

.hero-cta.secondary:hover {
    background: var(--deep-blue);
    color: white;
    border-color: var(--deep-blue);
    transform: translateY(-4px);
}

.trust-indicators {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--neutral-gray);
    font-weight: var(--fw-medium);
}

.trust-item i {
    color: var(--primary-gold);
}

.hero-image-split {
    animation: fadeInRight 1s ease-out 0.2s; /* Animação de entrada */
    animation-fill-mode: both;
}

.hero-image-split img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    /* Sombra mais suave e detalhada */
    box-shadow: 0 4px 15px rgba(0,0,0,0.05), 0 15px 35px rgba(0,0,0,0.1);
    border: 8px solid white; /* Borda branca para dar um acabamento */
}

/* Responsividade */
@media (max-width: 900px) {
    .hero {
        padding: 60px 0;
    }
    .hero-container-split {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-content-split, .hero-specialization, .hero-actions, .trust-indicators {
        text-align: center;
        justify-content: center;
    }
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-image-split {
        order: -1; /* Imagem vem primeiro no mobile */
        margin-bottom: 40px;
    }
}

/* === NAVBAR & LOGO UPDATES === */

/* === AJUSTE FINAL DO MENU (FUNDO MARROM CAFÉ #4E342E) === */

/* Estilo para a imagem da logo (já deve estar correto, mas garantindo) */
.logo-image {
    max-height: 50px;
    width: auto;
    display: block;
}

/* Define o fundo marrom APENAS para a barra de navegação */
.navbar, .navbar.scrolled {
    background: #272727; /* Nova cor: Cinza Chumbo */
    box-shadow: var(--shadow-md);
    padding: 15px 0;
}

/* Ajusta a cor dos links para branco, para ler no fundo escuro */
.nav-link {
    color: var(--white);
    opacity: 0.9;
}

.nav-link:hover {
    color: var(--primary-gold); /* Destaque dourado ao passar o mouse */
    opacity: 1;
}

.nav-link:hover::after {
    background: var(--primary-gold);
}

/* Ajusta o botão de CTA para se destacar no menu marrom */
.nav-cta {
    background: var(--primary-gold);
    color: white;
}

.nav-cta:hover {
    background: var(--yellow-gold);
}

/* Ajusta a cor do ícone do menu mobile para branco */
.bar {
    background: var(--white);
}

/* === SEÇÃO "BEFORE & AFTER" COM TEXTURA E TÍTULO DESTACADO === */

.before-after {
    padding: var(--section-padding);
    background-color: var(--light-beige); /* Cor de fundo principal */
    
    /* Adiciona a textura de linhas diagonais por cima da cor */
    background-image: linear-gradient(135deg, rgba(255, 255, 255, .02) 25%, transparent 25%,
                      transparent 50%, rgba(255, 255, 255, .02) 50%, rgba(255, 255, 255, .02) 75%,
                      transparent 75%, transparent);
    background-size: 40px 40px;
    position: relative; /* Necessário para o z-index do título */
}

/* Título com mais destaque e animação de brilho */
.before-after .section-title {
    font-size: clamp(2.2rem, 5vw, 3.2rem); /* Aumenta o tamanho da fonte */
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1); /* Adiciona sombra sutil */
    position: relative; /* Garante que o título fique sobre a textura */
    z-index: 2;

    /* Animação de brilho que você gostou */
    background: linear-gradient(
        90deg, 
        var(--deep-blue) 0%, 
        var(--deep-blue) 40%, 
        var(--primary-gold) 50%, 
        var(--deep-blue) 60%, 
        var(--deep-blue) 100%
    );
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shine-effect 5s linear infinite;
}

/* A animação de brilho (não precisa mudar) */
@keyframes shine-effect {
    to {
        background-position: -200% center;
    }
}

/* === SEÇÃO "SERVICE AREAS" COM EFEITO DE VIDRO (GLASSMORPHISM) === */

.service-areas {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden; /* Garante que o fundo não vaze */
    
    /* Imagem de fundo para o efeito de vidro */
    background-image: url('../images/construction-team.jpg'); /* Imagem de fundo profissional */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Efeito parallax */
}

/* Adiciona uma sobreposição escura para garantir a leitura */
.service-areas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(39, 39, 39, 0.6); /* Sobreposição escura */
    z-index: 1;
}

/* Garante que o conteúdo fique sobre a sobreposição */
.service-areas .container {
    position: relative;
    z-index: 2;
}

/* Ajusta as cores dos textos para o fundo escuro */
.service-areas .section-title,
.service-areas .areas-intro {
    color: var(--white);
}

.service-areas .section-title::after {
    background: var(--primary-gold);
}

.service-areas .areas-note {
    color: var(--light-beige);
}

/* Estilo dos cards de vidro */
.area-column {
    background: rgba(255, 255, 255, 0.05); /* Fundo translúcido */
    backdrop-filter: blur(10px); /* O efeito de desfoque (vidro fosco) */
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1); /* Borda sutil */
    border-radius: var(--border-radius-lg);
    padding: 30px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2); /* Sombra para dar profundidade */
    transition: var(--transition);
}

.area-column:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Textos dentro dos cards */
.area-column h4 {
    color: var(--primary-gold);
    font-size: 1.3rem;
}

.area-column li {
    color: var(--white);
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.area-column li:hover {
    color: var(--light-beige);
    padding-left: 10px;
}