/* 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);
}

html {
    scroll-behavior: smooth;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    /* ... o resto do seu código ... */
}

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 BAR === */
.navbar {
    position: relative;
    background: #272727; /* Fundo cinza chumbo */
    box-shadow: var(--shadow-md);
    padding: 15px 0;
    width: 100%;
    transition: var(--transition);
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo-image {
    max-height: 50px;
    width: auto;
    display: block;
}
.nav-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}
.nav-link {
    text-decoration: none;
    font-weight: var(--fw-medium);
    font-size: 15px;
    transition: var(--transition);
    position: relative;
    color: var(--white);
    opacity: 0.9;
}
.nav-link:hover {
    color: var(--primary-gold);
    opacity: 1;
}
.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(--primary-gold);
    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(--yellow-gold);
}
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}
.bar {
    width: 25px;
    height: 3px;
    margin: 3px 0;
    transition: var(--transition);
    background: var(--white);
}

/* === HERO SECTION === */
.hero {
    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"),
                      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: 90px 0;
    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;
}

.hero-title {
    font-size: clamp(2.8rem, 5vw, 4rem);
    color: var(--deep-blue);
    line-height: 1.15;
    margin-bottom: 25px;
    font-weight: var(--fw-bold);
}

.hero-title span {
    color: var(--primary-gold);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--neutral-gray);
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-specialization {
    font-size: 1.1rem;
    color: var(--deep-blue);
    font-weight: var(--fw-semibold);
    margin-bottom: 40px;
    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);
}

.hero-cta.primary {
    background: var(--primary-gold);
    color: white;
    animation: pulse-glow 2.5s infinite;
}

@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);
    box-shadow: var(--shadow-lg);
    animation-play-state: paused;
}

.hero-cta.primary:hover i {
    transform: translateX(5px);
}

.hero-cta.secondary {
    background: linear-gradient(45deg, #00C853, #64DD17); /* Fundo verde brilhante */
    color: white;
    border-color: transparent; /* Remove a borda anterior */
    box-shadow: 0 4px 15px rgba(0, 200, 83, 0.3); /* Sombra verde */
    animation: pulse-green 2.5s infinite; /* Efeito pulsante */
}

.hero-cta.secondary:hover {
    background: linear-gradient(45deg, #00C853, #64DD17); /* Mantém o fundo */
    color: white;
    border-color: transparent;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 200, 83, 0.4);
    animation-play-state: paused;
}

.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;
    animation-fill-mode: both;
}

.hero-image-split img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05), 0 15px 35px rgba(0,0,0,0.1);
    border: 8px solid white;
}

/* === BEFORE & AFTER SECTION === */
.before-after {
    padding: var(--section-padding);
    background-color: var(--light-beige);
    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;
}

.before-after .section-title {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
    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;
}

@keyframes shine-effect {
    to { background-position: -200% center; }
}

.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 (Original) === */
.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 SECTION === */
.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 SECTION === */
.service-areas {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
    background-image: url('../images/tampabay.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.service-areas::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(39, 39, 39, 0.6);
    z-index: 1;
}

.service-areas .container {
    position: relative;
    z-index: 2;
}

.service-areas .section-title,
.service-areas .areas-intro {
    color: var(--white);
}

.service-areas .section-title::after {
    background: var(--primary-gold);
}

.areas-note {
    color: var(--light-beige);
    font-style: italic;
    font-size: 1rem;
    margin-bottom: 20px; /* Cria um espaço entre o texto e o botão abaixo */
    text-align: center;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.area-column {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-lg);
    padding: 30px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
    transition: var(--transition);
    text-align: center;
}

.area-column:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.service-areas .area-column h4 {
    color: var(--white);
    font-size: 1.4rem;
    font-weight: var(--fw-bold);
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 20px;
    display: inline-block;
    background: none;
}

.service-areas .area-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 4px;
    background: var(--primary-gold);
    border-radius: 3px;
    display: block;
}

.area-column li {
    padding: 8px 0;
    color: var(--white);
    font-weight: var(--fw-medium);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    text-align: left;
}

.area-column li:hover {
    color: var(--light-beige);
    padding-left: 10px;
}


/* === REVIEWS SECTION === */
.reviews {
    padding: var(--section-padding);
    background: #f8f9fa;
}

.reviews .section-title {
    color: var(--deep-blue);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.review-card-final {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    text-align: center;
    overflow: visible;
    position: relative;
}

.review-card-final:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.review-image-top {
    height: 200px;
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
    overflow: hidden;
}

.review-image-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.review-card-final:hover .review-image-top img {
    transform: scale(1.05);
}

.review-content-bottom {
    padding: 70px 30px 30px 30px;
}

.reviewer-avatar-final {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--white);
    box-shadow: var(--shadow-md);
    position: absolute;
    top: 150px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--light-gray);
}

.reviewer-avatar-final img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.review-content-bottom h4 {
    font-family: var(--font-accent);
    font-size: 1.3rem;
    color: var(--deep-blue);
    margin: 0;
}

.reviewer-location {
    color: var(--neutral-gray);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.review-content-bottom .stars {
    color: var(--yellow-gold);
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.review-content-bottom blockquote {
    font-style: italic;
    color: var(--neutral-gray);
    line-height: 1.6;
    font-size: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

/* === QUOTE SECTION (NEW DESIGN FROM IMAGE) === */
.quote-section {
    padding: var(--section-padding);
    background-color: #FDFBF5; /* Light beige background from image */
}

.quote-main-title {
    font-family: var(--font-accent);
    font-weight: var(--fw-semibold);
    font-size: clamp(2rem, 4vw, 2.5rem);
    color: var(--deep-blue);
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 20px; /* Reduced margin */
}

.quote-main-title::after {
    /* The small underline accent from the image */
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary-gold);
    margin: 15px auto 0;
    border-radius: 2px;
}

.quote-container {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 40px;
}

.quote-form-column h3 {
    font-family: var(--font-accent);
    font-size: 1.3rem; /* Adjusted size */
    color: var(--deep-blue);
    font-weight: var(--fw-semibold);
    margin-bottom: 8px;
}

.quote-form-column p {
    color: var(--neutral-gray);
    margin-bottom: 30px;
    font-size: 1rem; /* Adjusted size */
}

.contact-form-wrapper {
    background: var(--white);
    padding: 30px;
    border-radius: 24px; /* Prominent rounded corners */
    box-shadow: 0 15px 40px -10px rgba(0,0,0,0.08); /* Soft shadow */
    border: 1px solid #F0F0F0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid #E9E9E9;
    border-radius: 12px;
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: var(--transition);
    background-color: #FDFDFD;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(201, 155, 83, 0.1);
}

.submit-btn {
    width: 100%;
    padding: 18px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: var(--fw-bold);
    cursor: pointer;
    transition: var(--transition);
    background: var(--primary-gold);
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.submit-btn:hover {
    background: #B58A4A; /* Slightly darker gold on hover */
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* --- Right Column Styling --- */
.quote-info-column {
    padding-top: 10px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}
.info-item i {
    color: var(--deep-blue);
    width: 24px;
    height: 24px;
    margin-top: 4px;
}
.info-item h4 {
    color: var(--deep-blue);
    font-weight: var(--fw-semibold);
    margin: 0 0 4px 0;
}
.info-item p {
    color: var(--neutral-gray);
    margin: 0;
    font-size: 1rem;
}

.guarantee-box {
    background: transparent; /* No background as per image */
    padding: 0;
    border-radius: 0;
    margin-top: 30px;
    box-shadow: none;
}
.guarantee-box h4 {
    color: var(--deep-blue);
    margin: 0 0 15px 0;
    font-weight: var(--fw-semibold);
}
.guarantee-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.guarantee-box li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--neutral-gray);
}
.guarantee-box li i {
    color: var(--deep-blue);
    width: 20px;
    height: 20px;
}

/* --- Standout SMS Button --- */
.sms-btn-cta {
    display: inline-flex; /* Alterado para o botão se ajustar ao conteúdo */
    align-items: center;
    justify-content: center;
    gap: 10px;
    /* width: 100%; -> REMOVIDO */
    margin-top: 20px;
    padding: 16px 32px; /* Adicionado mais espaço nas laterais */
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: var(--fw-bold);
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    background: linear-gradient(45deg, #00C853, #64DD17);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 200, 83, 0.3);
    animation: pulse-green 2.5s infinite;
}

.sms-btn-cta i {
    width: 22px;
    height: 22px;
    transition: transform 0.3s ease;
}

.sms-btn-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 200, 83, 0.4);
    animation-play-state: paused; /* Pausa a animação no hover para uma melhor experiência */
}

.sms-btn-cta:hover i {
    transform: scale(1.1);
}

/* Animação do Pulso Verde */
@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 200, 83, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(0, 200, 83, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 200, 83, 0);
    }
}

@media (max-width: 900px) {
    .quote-container {
        grid-template-columns: 1fr;
    }
    .quote-info-column {
        margin-top: 60px;
        padding-top: 0;
    }
}

/* === FINAL CTA & FOOTER === */

/* Final CTA Section */
.final-cta {
    padding: 120px 0;
    color: white;
    text-align: center;
    background-color: var(--deep-blue);
    background-image: linear-gradient(135deg, rgba(0,0,0,0.07) 25%, transparent 25%,
                      transparent 50%, rgba(0,0,0,0.07) 50%, rgba(0,0,0,0.07) 75%,
                      transparent 75%, transparent);
    background-size: 40px 40px;
}
.final-title {
    font-family: var(--font-accent);
    font-weight: var(--fw-bold);
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    margin-bottom: 20px;
    color: white;
    line-height: 1.3;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}
.final-text {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}
.final-btn {
    display: inline-block;
    background: var(--primary-gold);
    color: var(--deep-blue);
    padding: 18px 40px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: var(--fw-bold);
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
}
.final-btn:hover {
    background: var(--yellow-gold);
    color: var(--deep-blue);
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Footer */
.footer {
    padding: 80px 0 30px;
    background-color: var(--light-gray); /* Fundo off-white */
    position: relative;
    /* Sombra de transição na parte superior */
    box-shadow: 0 -8px 15px -10px rgba(0,0,0,0.1); 
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-column {
    padding-right: 40px; /* Espaçamento para a linha separadora */
}

/* Adiciona a linha separadora para todas as colunas, exceto a última */
.footer-column:not(:last-child) {
    border-right: 1px solid #E0E0E0; 
}

/* Remove o espaçamento e a borda da última coluna */
.footer-column:last-child {
    padding-right: 0;
}

.footer-column .footer-logo {
    max-height: 60px;
    margin-bottom: 20px;
    /* Filtro de cor REMOVIDO para usar o logo original */
}

.footer-about {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--neutral-gray);
    padding-right: 20px;
}

.footer-column h4 {
    font-family: var(--font-accent);
    font-weight: var(--fw-semibold);
    font-size: 1.2rem;
    color: var(--deep-blue);
    margin-bottom: 25px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column li a {
    color: var(--neutral-gray);
    text-decoration: none;
    margin-bottom: 12px;
    display: inline-block;
    transition: var(--transition);
}

.footer-column li a:hover {
    color: var(--primary-gold);
    transform: translateX(5px);
}

.footer-column p {
    color: var(--neutral-gray);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.footer-column p i {
    color: var(--primary-gold);
    width: 20px;
    flex-shrink: 0;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    color: var(--neutral-gray);
    transition: var(--transition);
}

.footer-social a:hover {
    color: var(--primary-gold);
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #E0E0E0;
    color: var(--neutral-gray);
    font-size: 0.9rem;
}

/* === MISC & RESPONSIVE === */
.form-disclaimer {
    text-align: center;
    color: var(--neutral-gray);
    font-size: 0.9rem;
}

.floating-sms {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(45deg, #00C853, #64DD17); /* Mesmo gradiente verde */
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 200, 83, 0.3); /* Sombra verde */
    transition: var(--transition);
    z-index: 1000;
    animation: pulse-green 2.5s infinite; /* Animação pulsante */
}

.floating-sms:hover {
    transform: translateY(-3px) scale(1.05); /* Efeito de levantar e aumentar */
    box-shadow: 0 8px 25px rgba(0, 200, 83, 0.4); /* Sombra mais forte no hover */
    animation-play-state: paused; /* Pausa a animação */
}

.floating-sms i {
    width: 32px; /* Ícone um pouco maior */
    height: 32px;
}

.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;
}

@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); }
}

@media (max-width: 1024px) {
    .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: 900px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    .footer-info {
        grid-column: 1 / -1;
        text-align: center;
    }
    .footer .logo-image {
        margin: 0 auto 25px;
    }
    .footer-contact p {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px 0;
        --container-padding: 0 15px;
    }
    
    /* Ajustes na Hero Section para Mobile */
    .hero {
        padding: 60px 0; 
    }

    .hero-container-split {
        grid-template-columns: 1fr; /* Muda de 2 colunas para 1 */
        gap: 40px;
    }

    .hero-content-split {
        text-align: center; /* Centraliza os textos e botões */
        order: 2;           /* Diz que o texto é o 2º item na ordem */
    }

    .hero-image-split {
        order: 1;           /* Diz que a imagem é o 1º item na ordem */
        margin: 0 auto;
        max-width: 90%; 
    }

    .hero-title {
        font-size: clamp(2.2rem, 8vw, 3rem); 
    }

    .hero-subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions, .trust-indicators {
        justify-content: center; 
    }
    
    .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); }
    
    .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;
    }
    
    .floating-sms {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
    }
    
    .message {
        right: 15px;
        left: 15px;
        max-width: none;
    }
}

.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 .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); }
}

@media (max-width: 900px) {
    /* Remove as bordas e o espaçamento extra das colunas do rodapé no mobile */
    .footer-column,
    .footer-column:not(:last-child) {
        border-right: none;
        padding-right: 0;
        text-align: center; /* Centraliza o conteúdo das colunas empilhadas */
    }
    
    .footer-about {
        padding-right: 0;
    }

    .footer-column .footer-logo,
    .footer-column p {
        justify-content: center; /* Centraliza itens como logo e texto com ícone */
    }
}

/* --- Botão CTA na Seção de Áreas de Serviço --- */

.service-area-cta-container {
    text-align: center;
    margin-top: 40px; /* Adiciona espaço acima do botão */
}

.service-area-cta-btn {
    display: inline-block;
    background: var(--primary-gold);
    color: white;
    padding: 18px 40px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: var(--fw-bold);
    font-size: 1.1rem;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    border: none;
}

.service-area-cta-btn:hover {
    background: var(--yellow-gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}