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

:root {
            --primary-green: #1e8449;
            --dark-green: #156f3a;
            --light-green: #d5f4e6;
            --text-dark: #1d1d1d;
            --text-light: #666666;
            --text-muted: #6b6b6b;
            --bg-white: #ffffff;
            --bg-gray: #f5f5f5;
            --border-color: #e5e5e5;
            --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            --section-padding: clamp(2rem, 5.5vw, 3.5rem);
        }

html {
            scroll-behavior: smooth;
        }

body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background-color: var(--bg-white);
            font-weight: 400;
            letter-spacing: -0.3px;
        }

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

header {
            background-color: var(--bg-white);
            border-bottom: 1px solid var(--border-color);
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(10px);
            background-color: rgba(255, 255, 255, 0.95);
        }

nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.55rem clamp(0.9rem, 3.5vw, 2rem);
            max-width: 1400px;
            margin: 0 auto;
        }

.logo {
            font-size: clamp(1.3rem, 3vw, 1.6rem);
            font-weight: 600;
            color: var(--dark-green);
            text-decoration: none;
            letter-spacing: -0.5px;
        }

.nav-menu {
            display: flex;
            align-items: center;
            gap: 3.5rem;
        }

.nav-actions {
            display: flex;
            align-items: center;
            gap: 0.6rem;
        }

.nav-links {
            display: flex;
            list-style: none;
            gap: 3.5rem;
        }

.nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-size: 0.95rem;
            font-weight: 500;
            transition: color var(--transition);
            position: relative;
        }

.nav-links a:hover {
            color: var(--primary-green);
        }

.phone-button {
            background-color: var(--primary-green);
            color: white;
            padding: 0.85rem 2rem;
            min-height: 48px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 999px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all var(--transition);
            letter-spacing: -0.3px;
        }

.phone-button:hover {
            background-color: var(--dark-green);
            transform: scale(1.05);
        }

.email-button {
            background-color: #b45309;
            color: #fff;
            border: 1px solid #b45309;
            padding: 0.7rem 1.15rem;
            min-height: 42px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 999px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all var(--transition);
            letter-spacing: -0.3px;
        }

.email-button:hover {
            border-color: #92400e;
            background-color: #92400e;
            transform: scale(1.05);
        }

.quote-button {
            background-color: #2563eb;
            border-color: #2563eb;
            color: #fff;
        }

.quote-button:hover {
            background-color: #1d4ed8;
            border-color: #1d4ed8;
            color: #fff;
        }

.nav-actions .phone-button,
        .nav-actions .btn-call {
            padding-inline: clamp(0.85rem, 0.55rem + 0.85vw, 1.4rem);
        }

.nav-actions .whatsapp-button,
        .nav-actions .btn-whatsapp {
            padding-inline: clamp(0.8rem, 0.58rem + 0.62vw, 1.15rem);
        }

.nav-actions .email-button,
        .nav-actions .btn-email {
            padding-inline: clamp(0.8rem, 0.58rem + 0.62vw, 1.15rem);
        }

.breadcrumb {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0.85rem clamp(1rem, 5vw, 2rem) 0;
            font-size: 0.95rem;
            color: var(--text-muted);
        }

.breadcrumb a {
            color: var(--primary-green);
            text-decoration: none;
            font-weight: 500;
        }

.breadcrumb a:hover {
            text-decoration: underline;
        }

.breadcrumb [aria-current="page"] {
            color: var(--text-light);
            font-weight: 600;
        }

.page-hero {
            padding: clamp(2.1rem, 6vw, 3.6rem) clamp(1rem, 5vw, 3rem);
            background: linear-gradient(135deg, var(--primary-green) 0%, var(--dark-green) 100%);
            color: white;
            text-align: center;
        }

.page-hero h1 {
            font-size: clamp(2rem, 5vw, 3.5rem);
            font-weight: 700;
            margin-bottom: 1rem;
            letter-spacing: -0.8px;
        }

.page-hero p {
            font-size: clamp(1rem, 2vw, 1.2rem);
            max-width: 600px;
            margin: 0 auto;
            opacity: 0.95;
        }

.services-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: var(--section-padding) clamp(1rem, 5vw, 3rem);
        }

.services-intro {
            max-width: 860px;
            margin: 0 auto 2rem;
            text-align: center;
        }

.services-intro p {
            color: var(--text-light);
            line-height: 1.75;
            font-size: 1rem;
        }

.services-intro a {
            color: var(--dark-green);
            font-weight: 600;
            text-decoration: none;
        }

.services-intro a:hover {
            color: var(--primary-green);
        }

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

.service-card {
            background-color: var(--bg-white);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 2.5rem 2rem;
            text-align: center;
            transition: all var(--transition);
            text-decoration: none;
            color: inherit;
            cursor: pointer;
        }

.service-card:hover {
            border-color: var(--primary-green);
            box-shadow: 0 15px 40px rgba(46, 204, 113, 0.15);
            transform: translateY(-8px);
        }

.service-icon {
            width: 100%;
            aspect-ratio: 4 / 3;
            margin-bottom: 1.5rem;
            display: block;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid var(--border-color);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
        }

.service-icon img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

.service-card h3 {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }

.service-card p {
            color: var(--text-light);
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

.service-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--primary-green);
            font-weight: 600;
            text-decoration: none;
            transition: all var(--transition);
        }

.service-link:hover {
            gap: 1rem;
            color: var(--dark-green);
        }

.service-areas-panel,
        .services-faq {
            margin-top: 2.2rem;
            border: 1px solid var(--border-color);
            border-radius: 16px;
            background-color: var(--bg-gray);
            padding: clamp(1.25rem, 3vw, 1.8rem);
        }

.service-areas-panel h2,
        .services-faq h2 {
            font-size: clamp(1.4rem, 2.8vw, 1.9rem);
            margin-bottom: 0.8rem;
            letter-spacing: -0.3px;
        }

.service-areas-panel p,
        .services-faq p {
            color: var(--text-light);
            line-height: 1.7;
        }

.service-areas-panel p + p {
            margin-top: 0.7rem;
        }

.service-areas-panel a,
        .services-faq a {
            color: var(--dark-green);
            text-decoration: none;
            font-weight: 600;
        }

.service-areas-panel a:hover,
        .services-faq a:hover {
            color: var(--primary-green);
        }

.areas-inline {
            display: flex;
            flex-wrap: wrap;
            gap: 0.55rem;
            margin-top: 0.8rem;
        }

.areas-inline li {
            list-style: none;
            border: 1px solid #d4ded7;
            border-radius: 999px;
            padding: 0.35rem 0.7rem;
            font-size: 0.86rem;
            color: var(--text-dark);
            background-color: #fff;
        }

.faq-list {
            margin-top: 1rem;
            display: grid;
            gap: 0.75rem;
        }

.faq-item {
            background-color: #fff;
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 0.9rem 1rem;
        }

.faq-item h3 {
            font-size: 1rem;
            margin-bottom: 0.35rem;
            color: var(--text-dark);
        }

.faq-item p {
            font-size: 0.95rem;
            margin: 0;
        }

footer {
            background-color: var(--text-dark);
            color: white;
            text-align: center;
            padding: 3rem clamp(1rem, 5vw, 3rem);
            margin-top: 2.5rem;
        }

footer p {
            margin: 0.5rem 0;
            font-size: 0.9rem;
            opacity: 0.8;
        }

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

.service-card {
            animation: fadeInUp 0.8s ease-out forwards;
        }

.service-card:nth-child(1) { animation-delay: 0.1s; }

.service-card:nth-child(2) { animation-delay: 0.2s; }

.service-card:nth-child(3) { animation-delay: 0.3s; }

.service-card:nth-child(4) { animation-delay: 0.4s; }

.service-card:nth-child(5) { animation-delay: 0.5s; }

.service-card:nth-child(6) { animation-delay: 0.6s; }

.service-card:nth-child(7) { animation-delay: 0.7s; }

.service-card:nth-child(8) { animation-delay: 0.8s; }

.service-card:nth-child(9) { animation-delay: 0.9s; }

.service-card:nth-child(10) { animation-delay: 1s; }

.service-card:nth-child(11) { animation-delay: 1.1s; }

.service-card:nth-child(12) { animation-delay: 1.2s; }

.service-card:nth-child(13) { animation-delay: 1.3s; }

@media (max-width: 900px) {
            header {
                border-bottom: none;
            }

            .nav-links {
                display: none;
            }

            .nav-toggle {
                display: block;
                transform: translateY(0);
            }

            .nav-menu {
                display: none;
            }

            .nav-menu.is-open {
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                display: flex;
                flex-direction: column;
                background-color: white;
                border-bottom: none;
                padding: 1rem;
                gap: 0.75rem;
            }

            .nav-menu.is-open .nav-links {
                display: flex;
                flex-direction: column;
                gap: 0.4rem;
                width: 100%;
            }

            .nav-menu.is-open .nav-links a {
                display: block;
                padding: 0.65rem 0;
            }

            .nav-services-link {
                width: 100%;
                justify-content: space-between;
            }

            .nav-services-link::after {
                font-size: 0.8rem;
            }

            .nav-services-item.is-open .services-submenu {
                display: grid;
                gap: 0.1rem;
                margin: 0.12rem 0 0.35rem;
                padding: 0.4rem 0 0.15rem 0.8rem;
                border-left: 2px solid var(--border-color);
            }

            .services-submenu a {
                color: var(--text-light);
                font-size: 0.9rem;
                padding: 0.45rem 0;
            }

            .nav-menu.is-open .nav-links > li > a::before {
                display: none;
            }

            .nav-menu.is-open .nav-actions {
                width: 100%;
                display: grid;
                grid-template-columns: 1fr;
            }

            .nav-menu.is-open .phone-button,
            .nav-menu.is-open .whatsapp-button,
            .nav-menu.is-open .email-button {
                width: 100%;
                justify-content: center;
            }
        }

@media (max-width: 480px) {
            .page-hero h1 {
                font-size: 1.8rem;
            }

            .page-hero p {
                font-size: 1rem;
            }

            .services-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .service-card {
                padding: 2rem 1.5rem;
            }

            .service-icon {
                margin-bottom: 1.2rem;
            }

            .service-card h3 {
                font-size: 1.2rem;
            }

            .service-areas-panel,
            .services-faq {
                margin-top: 1.5rem;
            }
        }
