/* ============================================
   Gps - Paisagismo & Irrigação Premium
   CSS Principal - Design Premium
   ============================================ */

/* Root Variables */
:root {
    --green-primary: #2D5A27;
    --green-light: #4A8740;
    --green-pale: #8DB87E;
    --green-accent: #6BAF5E;
    --gold: #C9A84C;
    --gold-light: #E4C56A;
    --gold-pale: #F0D98A;
    --dark: #0F1A0E;
    --dark-2: #1A2B18;
    --dark-3: #243522;
    --gray: #6B7280;
    --gray-light: #9CA3AF;
    --white: #FFFFFF;
    --off-white: #F8FAF7;
    --cream: #FAF8F3;

    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;

    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.25s ease;
    --shadow-sm: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-md: 0 8px 32px rgba(0,0,0,0.12);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);
    --shadow-green: 0 8px 30px rgba(45,90,39,0.25);

    --border-radius: 16px;
    --border-radius-sm: 8px;
    --border-radius-lg: 24px;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* ============================================
   LOADER
   ============================================ */
#loader {
    position: fixed;
    inset: 0;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.leaf-icon {
    font-size: 3rem;
    color: var(--green-accent);
    animation: leafPulse 1.5s ease-in-out infinite;
}

@keyframes leafPulse {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
    50% { transform: scale(1.2) rotate(10deg); opacity: 0.8; }
}

.loader-bar {
    width: 200px;
    height: 3px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    overflow: hidden;
}

.loader-bar::after {
    content: '';
    display: block;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--green-accent), var(--gold));
    border-radius: 10px;
    animation: loadBar 2s ease forwards;
}

@keyframes loadBar {
    to { width: 100%; }
}

/* ============================================
   NAVBAR
   ============================================ */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: var(--transition);
}

#navbar.scrolled {
    background: rgba(15, 26, 14, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.85rem 0;
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
}

.logo-icon {
    font-size: 1.5rem;
    color: var(--green-accent);
    filter: drop-shadow(0 0 8px rgba(107, 175, 94, 0.5));
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.5px;
}

.logo-accent {
    color: var(--gold);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    padding: 0.5rem 0.9rem;
    border-radius: 6px;
    transition: var(--transition-fast);
    letter-spacing: 0.3px;
}

.nav-link:hover {
    color: var(--white);
    background: rgba(255,255,255,0.08);
}

.nav-link.active {
    color: var(--green-accent);
}

.nav-cta {
    background: var(--green-light) !important;
    color: var(--white) !important;
    padding: 0.6rem 1.2rem !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    transition: var(--transition-fast) !important;
}

.nav-cta:hover {
    background: var(--green-primary) !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-green) !important;
}

.nav-produtos {
    background: rgba(201,168,76,0.12) !important;
    color: var(--gold-light) !important;
    border: 1px solid rgba(201,168,76,0.3) !important;
    padding: 0.5rem 1rem !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    gap: 0.4rem;
    display: inline-flex;
    align-items: center;
}

.nav-produtos:hover {
    background: rgba(201,168,76,0.25) !important;
    border-color: var(--gold) !important;
    color: var(--gold) !important;
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition-fast);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--green-light), var(--green-primary));
    color: var(--white);
    box-shadow: 0 4px 20px rgba(74, 135, 64, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(74, 135, 64, 0.45);
    background: linear-gradient(135deg, var(--green-accent), var(--green-light));
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-sm {
    padding: 0.6rem 1.2rem;
    font-size: 0.875rem;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://sspark.genspark.ai/cfimages?u1=SSpark.genspark.ai_cfimages');
    background: linear-gradient(to bottom right, #0F1A0E, #1A2B18, #0F1A0E);
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(45,90,39,0.4) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(107, 175, 94, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 60% 80%, rgba(201, 168, 76, 0.15) 0%, transparent 40%);
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234A8740' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(15,26,14,0.5) 0%, rgba(15,26,14,0.7) 50%, rgba(15,26,14,0.9) 100%);
}

.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--green-accent);
    border-radius: 50%;
    opacity: 0;
    animation: floatParticle var(--duration) var(--delay) infinite ease-in-out;
}

@keyframes floatParticle {
    0% { opacity: 0; transform: translateY(100vh) scale(0); }
    10% { opacity: 0.6; }
    90% { opacity: 0.3; }
    100% { opacity: 0; transform: translateY(-20vh) scale(1); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 2rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(201,168,76,0.15);
    border: 1px solid rgba(201,168,76,0.3);
    color: var(--gold-light);
    padding: 0.45rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    color: var(--gold);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5.5vw, 5rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.hero-highlight {
    font-style: italic;
    color: var(--green-accent);
    font-weight: 500;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: rgba(255,255,255,0.75);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1;
}

.stat-number::after {
    content: attr(data-suffix);
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.2);
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-down {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.5);
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition-fast);
}

.scroll-down:hover {
    color: var(--green-accent);
}

.scroll-arrow {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounceDown 2s ease infinite;
}

@keyframes bounceDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* ============================================
   SECTION COMMONS
   ============================================ */
.section {
    padding: 7rem 0;
}

.section-dark {
    background: var(--dark);
    color: var(--white);
}

.section-dark .section-tag {
    background: rgba(107, 175, 94, 0.15);
    border-color: rgba(107, 175, 94, 0.25);
    color: var(--green-pale);
}

.section-dark .section-title {
    color: var(--white);
}

.section-dark .section-subtitle {
    color: rgba(255,255,255,0.6);
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    background: rgba(45, 90, 39, 0.1);
    border: 1px solid rgba(45, 90, 39, 0.2);
    color: var(--green-light);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title em {
    color: var(--green-light);
    font-style: italic;
}

.section-dark .section-title em {
    color: var(--green-accent);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    background: var(--cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.about-img-main:hover img {
    transform: scale(1.05);
}

.about-img-secondary {
    position: absolute;
    bottom: -3rem;
    right: -2rem;
    width: 55%;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
    aspect-ratio: 4/3;
}

.about-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.about-img-secondary:hover img {
    transform: scale(1.05);
}

.about-experience-badge {
    position: absolute;
    top: -1.5rem;
    left: -1.5rem;
    background: linear-gradient(135deg, var(--green-primary), var(--green-light));
    color: var(--white);
    width: 110px;
    height: 110px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-green);
    z-index: 2;
}

.exp-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.exp-text {
    font-size: 0.65rem;
    text-align: center;
    opacity: 0.9;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-content {
    padding-bottom: 3rem;
}

.about-text {
    color: var(--gray);
    margin-bottom: 1.2rem;
    line-height: 1.8;
    font-size: 1rem;
}

.about-features {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--green-light), var(--green-primary));
    color: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(74,135,64,0.3);
}

.feature-text h4 {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.feature-text p {
    font-size: 0.875rem;
    color: var(--gray);
    line-height: 1.5;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    /* align-items: stretch; */
    max-width: 1000px; 
    margin: 0 auto;
}

.service-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(107,175,94,0.05), transparent);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    border-color: rgba(107,175,94,0.3);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card-featured {
    background: linear-gradient(135deg, rgba(45,90,39,0.4), rgba(36,53,34,0.6));
    border-color: rgba(107,175,94,0.25);
}

.service-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--gold);
    color: var(--dark);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.service-icon-wrapper {
    margin-bottom: 1.5rem;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--green-accent), var(--green-primary));
    color: var(--white);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 6px 20px rgba(107,175,94,0.3);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: rotate(-5deg) scale(1.1);
    box-shadow: 0 10px 30px rgba(107,175,94,0.45);
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.75rem;
    font-family: var(--font-display);
    font-size: 1.35rem;
}

.service-card p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-list {
    list-style: none;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
}

.service-list li i {
    color: var(--green-accent);
    font-size: 0.75rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--green-accent);
    font-size: 0.875rem;
    font-weight: 600;
    transition: var(--transition-fast);
}

.service-link:hover {
    gap: 0.8rem;
    color: var(--green-pale);
}

/* ============================================
   PORTFOLIO SECTION
   ============================================ */
.portfolio {
    background: var(--off-white);
}

.portfolio-filters {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.55rem 1.5rem;
    border: 2px solid rgba(45,90,39,0.2);
    border-radius: 50px;
    background: transparent;
    color: var(--gray);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
    font-family: var(--font-body);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--green-primary);
    border-color: var(--green-primary);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: var(--shadow-green);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.portfolio-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.portfolio-item.hidden {
    display: none;
}

.portfolio-img {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.portfolio-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.portfolio-item:hover .portfolio-img img {
    transform: scale(1.08);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15,26,14,0.95) 0%, rgba(15,26,14,0.3) 60%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-info {
    transform: translateY(10px);
    transition: var(--transition);
    width: 100%;
}

.portfolio-item:hover .portfolio-info {
    transform: translateY(0);
}

.portfolio-tag {
    display: inline-block;
    background: var(--gold);
    color: var(--dark);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.75rem;
    border-radius: 50px;
    margin-bottom: 0.6rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.portfolio-info h3 {
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-family: var(--font-display);
    font-size: 1.25rem;
}

.portfolio-info p {
    color: rgba(255,255,255,0.7);
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
}

.portfolio-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    color: var(--white);
    font-size: 0.85rem;
    transition: var(--transition-fast);
    backdrop-filter: blur(10px);
}

.portfolio-btn:hover {
    background: var(--green-accent);
    border-color: var(--green-accent);
    transform: scale(1.1);
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 65px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--green-accent), transparent);
    opacity: 0.3;
}

.process-step {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    left: 64px;
    top: 50%;
    width: 4px;
    height: 4px;
    background: var(--green-accent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.step-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: rgba(107,175,94,0.12);
    line-height: 1;
    min-width: 80px;
    text-align: center;
    transition: var(--transition);
}

.process-step:hover .step-number {
    color: rgba(107,175,94,0.25);
}

.step-content {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--border-radius);
    padding: 2rem;
    flex: 1;
    transition: var(--transition);
}

.process-step:hover .step-content {
    border-color: rgba(107,175,94,0.25);
    background: rgba(107,175,94,0.05);
    transform: translateX(8px);
}

.step-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--green-accent), var(--green-primary));
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 16px rgba(107,175,94,0.3);
}

.step-content h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-family: var(--font-display);
    font-size: 1.3rem;
}

.step-content p {
    color: rgba(255,255,255,0.6);
    font-size: 0.925rem;
    line-height: 1.7;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
    background: var(--cream);
}

.testimonials-swiper {
    padding: 1rem 1rem 4rem;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(45,90,39,0.08);
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.testimonial-quote {
    font-size: 2rem;
    color: var(--green-light);
    margin-bottom: 1rem;
    opacity: 0.4;
}

.testimonial-text {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--green-light), var(--green-primary));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.author-info h4 {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.95rem;
}

.author-info span {
    color: var(--gray-light);
    font-size: 0.8rem;
}

.stars {
    color: var(--gold);
    font-size: 0.75rem;
    margin-top: 0.2rem;
}

/* Swiper customizations */
.swiper-pagination-bullet {
    background: var(--green-light) !important;
}

.swiper-pagination-bullet-active {
    background: var(--green-primary) !important;
}

.swiper-button-prev,
.swiper-button-next {
    color: var(--green-primary) !important;
    background: var(--white);
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-fast) !important;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: var(--green-primary) !important;
    color: var(--white) !important;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 0.8rem !important;
    font-weight: 700;
}

/* ============================================
   NUMBERS SECTION
   ============================================ */
.numbers-section {
    position: relative;
    padding: 5rem 0;
    overflow: hidden;
}

.numbers-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--green-primary), var(--dark-2), var(--green-primary));
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.numbers-section .container {
    position: relative;
    z-index: 1;
}

.numbers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.number-item {
    text-align: center;
    color: var(--white);
    padding: 2rem 1rem;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    background: rgba(255,255,255,0.05);
    transition: var(--transition);
}

.number-item:hover {
    border-color: rgba(107,175,94,0.4);
    background: rgba(107,175,94,0.1);
    transform: translateY(-4px);
}

.number-icon {
    font-size: 2rem;
    color: var(--green-accent);
    margin-bottom: 0.75rem;
    opacity: 0.8;
}

.big-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    display: inline;
}

.number-plus {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--gold);
    font-weight: 600;
}

.number-item p {
    color: rgba(255,255,255,0.65);
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    background: var(--off-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--green-light), var(--green-primary));
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(74,135,64,0.25);
}

.contact-detail h4 {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.contact-detail p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

.contact-social h4 {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.social-link {
    width: 42px;
    height: 42px;
    background: var(--white);
    border: 1px solid rgba(45,90,39,0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-primary);
    font-size: 1rem;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-sm);
}

.social-link:hover {
    background: var(--green-primary);
    color: var(--white);
    border-color: var(--green-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-green);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(45,90,39,0.08);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--dark);
    letter-spacing: 0.2px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1.1rem;
    border: 1.5px solid rgba(45,90,39,0.15);
    border-radius: var(--border-radius-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--dark);
    background: var(--off-white);
    transition: var(--transition-fast);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--green-light);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(74,135,64,0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-light);
}

.form-group textarea {
    resize: vertical;
    min-height: 130px;
}

.form-success {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(45,90,39,0.08);
    border: 1px solid rgba(45,90,39,0.2);
    border-radius: var(--border-radius-sm);
    padding: 1rem 1.25rem;
    color: var(--green-primary);
    font-size: 0.9rem;
    font-weight: 500;
}

.form-success i {
    font-size: 1.3rem;
    color: var(--green-light);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark);
    color: var(--white);
}

.footer-top {
    padding: 5rem 0 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.25rem;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
}

.footer-logo i {
    color: var(--green-accent);
    font-size: 1.3rem;
}

.footer-logo span span {
    color: var(--gold);
}

.footer-brand p {
    color: rgba(255,255,255,0.55);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.6rem;
}

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background: var(--green-light);
    border-color: var(--green-light);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-links h4,
.footer-contact h4 {
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links a {
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-links a::before {
    content: '→';
    opacity: 0;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--green-accent);
    padding-left: 0.25rem;
}

.footer-links a:hover::before {
    opacity: 1;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(255,255,255,0.55);
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.footer-contact-item i {
    color: var(--green-accent);
    font-size: 0.9rem;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1.5rem 0;
}

.footer-bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255,255,255,0.35);
    font-size: 0.825rem;
}

/* ============================================
   MODAL 
   ============================================ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    backdrop-filter: blur(8px);
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    max-width: 900px;
    width: 100%;
    background: var(--dark-2);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
    position: relative;
    animation: modalIn 0.3s ease;
}

@keyframes modalIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    color: var(--white);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    z-index: 1;
    backdrop-filter: blur(10px);
}

.modal-close:hover {
    background: rgba(255,255,255,0.1);
    transform: rotate(90deg);
}

#modalImage {
    width: 100%;
    max-height: 60vh;
    object-fit: cover;
}

.modal-info {
    padding: 1.5rem 2rem;
}

.modal-info span {
    display: inline-block;
    background: var(--gold);
    color: var(--dark);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.75rem;
    border-radius: 50px;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.modal-info h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.modal-info p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

/* ============================================
   FLOATING ELEMENTS
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 6px 24px rgba(37,211,102,0.4);
    z-index: 900;
    transition: var(--transition);
    animation: pulse-green 3s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 35px rgba(37,211,102,0.6);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--dark);
    color: var(--white);
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-fast);
    font-weight: 500;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

@keyframes pulse-green {
    0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 6px 40px rgba(37,211,102,0.7); }
}

.back-to-top {
    position: fixed;
    bottom: 5.5rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    background: var(--green-primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    cursor: pointer;
    box-shadow: var(--shadow-green);
    z-index: 900;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--green-light);
    transform: translateY(-3px);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 992px) {
    .section {
        padding: 5rem 0;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-images {
        order: 1;
        padding-bottom: 3rem;
    }

    .about-content {
        order: 2;
        padding-bottom: 0;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .numbers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .process-timeline::before {
        left: 40px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    @media (min-width: 768px) {
    .services-grid {
        /* Muda para 3 colunas iguais no desktop */
        grid-template-columns: repeat(3, 1fr); 
    }
}

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(15,26,14,0.98);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        gap: 0.5rem;
        transition: right 0.4s ease;
        backdrop-filter: blur(20px);
        box-shadow: -10px 0 40px rgba(0,0,0,0.3);
        z-index: 100;
        align-items: flex-start;
    }

    .nav-menu.open {
        right: 0;
    }

    .nav-link {
        font-size: 1.05rem;
        width: 100%;
        padding: 0.75rem 1rem;
    }

    .hero-stats {
        gap: 1rem;
    }

    .stat-divider {
        display: none;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom .container {
        justify-content: center;
        text-align: center;
    }

    .numbers-grid {
        grid-template-columns: 1fr 1fr;
    }

    .process-step {
        flex-direction: column;
        gap: 1rem;
    }

    .process-timeline::before {
        display: none;
    }

    .step-number {
        font-size: 2rem;
        min-width: auto;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .numbers-grid {
        grid-template-columns: 1fr;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
    }

    .section {
        padding: 4rem 0;
    }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
[data-aos] {
    pointer-events: none;
}

/* Força a visibilidade das imagens mesmo se o AOS falhar */
.about-img-main img, 
.about-img-secondary img {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

/* Evita que o AOS esconda os elementos se o script travar */
[data-aos] {
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto !important;
}

[data-aos].aos-animate {
    pointer-events: auto;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--dark);
}

::-webkit-scrollbar-thumb {
    background: var(--green-primary);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--green-light);
}

/* Selection */
::selection {
    background: var(--green-light);
    color: var(--white);
}
