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

        :root {
            --primary-color: #003d7a;
            --primary-dark: #002d5c;
            --secondary-color: #d4a574;
            --accent-color: #f39c12;
            --text-dark: #1a1a1a;
            --text-light: #666666;
            --text-muted: #999999;
            --bg-light: #f8f9fa;
            --bg-lighter: #ffffff;
            --border-color: #e8e8e8;
            --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
            --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
            --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.15);
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            background-color: var(--bg-lighter);
            font-weight: 400;
        }

        /* ===== HEADER ===== */
        header {
            background-color: var(--bg-lighter);
            border-bottom: 1px solid var(--border-color);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: var(--shadow-sm);
        }

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

        .logo-section {
            display: flex;
            align-items: center;
            gap: 2rem;
            flex: 1;
        }

        .logo-image {
            height: 80px;
            width: auto;
            filter: drop-shadow(0 2px 6px rgba(0, 61, 122, 0.15));
            transition: transform 0.3s ease;
        }

        .logo-image:hover {
            transform: scale(1.05);
        }

        .logo-text {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .logo-text h1 {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--primary-color);
            margin: 0;
            letter-spacing: -0.5px;
        }

        .logo-text p {
            font-size: 0.8rem;
            color: var(--secondary-color);
            margin: 0.25rem 0 0 0;
            font-weight: 600;
            letter-spacing: 0.5px;
        }

        nav {
            display: flex;
            gap: 2.5rem;
            align-items: center;
            margin-left: auto;
        }

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

        nav a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background-color: var(--secondary-color);
            transition: width 0.3s ease;
        }

        nav a:hover {
            color: var(--secondary-color);
        }

        nav a:hover::after {
            width: 100%;
        }

        .webmail-btn {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
            color: var(--bg-lighter);
            padding: 0.75rem 1.75rem;
            border-radius: 6px;
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 600;
            font-size: 0.9rem;
            border: none;
            cursor: pointer;
            box-shadow: var(--shadow-sm);
        }

        .webmail-btn:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
            background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
        }

        .menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--primary-color);
        }

        /* ===== HERO SECTION ===== */
        .hero {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
            color: var(--bg-lighter);
            padding: 7rem 2rem 6rem;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: rgba(212, 165, 116, 0.1);
            border-radius: 50%;
            z-index: 0;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -5%;
            width: 500px;
            height: 500px;
            background: rgba(212, 165, 116, 0.08);
            border-radius: 50%;
            z-index: 0;
        }

        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .hero-text h2 {
            font-size: 3rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
            line-height: 1.2;
        }

        .hero-text p {
            font-size: 1.15rem;
            margin-bottom: 2rem;
            opacity: 0.95;
            line-height: 1.8;
        }

        .hero-highlight {
            color: var(--secondary-color);
            font-weight: 600;
        }

        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
        }

        .btn {
            padding: 1rem 2.5rem;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid transparent;
            cursor: pointer;
            font-size: 0.95rem;
            display: inline-block;
        }

        .btn-primary {
            background-color: var(--secondary-color);
            color: var(--primary-color);
            box-shadow: var(--shadow-md);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
            background-color: #e6b85a;
        }

        .btn-secondary {
            background-color: transparent;
            color: var(--bg-lighter);
            border-color: var(--bg-lighter);
        }

        .btn-secondary:hover {
            background-color: var(--bg-lighter);
            color: var(--primary-color);
        }

        .hero-image {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .hero-image-box {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            padding: 3rem;
            text-align: center;
            min-height: 350px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .hero-image-box h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .hero-image-box p {
            font-size: 1rem;
            opacity: 0.9;
        }

        /* ===== SERVICES SECTION ===== */
        .services {
            padding: 6rem 2rem;
            background-color: var(--bg-light);
        }

        .services-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
        }

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

        .service-card {
            background-color: var(--bg-lighter);
            padding: 2.5rem;
            border-radius: 10px;
            box-shadow: var(--shadow-sm);
            transition: all 0.3s ease;
            border: 1px solid var(--border-color);
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--secondary-color), var(--accent-color));
        }

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

        .service-icon {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            display: inline-block;
        }

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

        .service-card p {
            color: var(--text-light);
            line-height: 1.8;
            font-size: 0.95rem;
        }

        /* ===== ABOUT SECTION ===== */
        .about {
            padding: 6rem 2rem;
            background-color: var(--bg-lighter);
        }

        .about-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: center;
        }

        .about-content h2 {
            color: var(--primary-color);
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            font-weight: 700;
        }

        .about-content p {
            color: var(--text-light);
            margin-bottom: 1.5rem;
            line-height: 1.9;
            font-size: 1rem;
        }

        .about-list {
            list-style: none;
            margin: 2rem 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .about-list li {
            padding: 0.75rem 0;
            color: var(--text-dark);
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            font-size: 0.95rem;
        }

        .about-list li::before {
            content: "✓";
            color: var(--secondary-color);
            font-weight: bold;
            font-size: 1.3rem;
            flex-shrink: 0;
            margin-top: -2px;
        }

        .about-image {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
            border-radius: 12px;
            padding: 3rem;
            text-align: center;
            color: var(--bg-lighter);
            min-height: 400px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            box-shadow: var(--shadow-lg);
            position: relative;
            overflow: hidden;
        }

        .about-image::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 400px;
            height: 400px;
            background: rgba(212, 165, 116, 0.1);
            border-radius: 50%;
        }

        .about-image h3 {
            font-size: 2rem;
            margin-bottom: 1rem;
            font-weight: 700;
            position: relative;
            z-index: 1;
        }

        .about-image p {
            color: rgba(255, 255, 255, 0.9);
            margin-bottom: 1rem;
            position: relative;
            z-index: 1;
        }

        /* ===== CONTACT SECTION ===== */
        .contact {
            padding: 6rem 2rem;
            background-color: var(--bg-light);
        }

        .contact-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .contact-item {
            background-color: var(--bg-lighter);
            padding: 2.5rem;
            border-radius: 10px;
            text-align: center;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-color);
            transition: all 0.3s ease;
        }

        .contact-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
            border-color: var(--secondary-color);
        }

        .contact-item-icon {
            font-size: 2.8rem;
            color: var(--secondary-color);
            margin-bottom: 1.5rem;
        }

        .contact-item h3 {
            color: var(--primary-color);
            margin-bottom: 1rem;
            font-size: 1.2rem;
            font-weight: 600;
        }

        .contact-item p {
            color: var(--text-light);
            font-size: 0.95rem;
            line-height: 1.8;
        }

        .contact-item a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
            display: inline-block;
            margin-top: 0.5rem;
        }

        .contact-item a:hover {
            color: var(--secondary-color);
        }

        /* ===== FOOTER ===== */
        footer {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
            color: var(--bg-lighter);
            padding: 4rem 2rem 1.5rem;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
        }

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

        .footer-section h4 {
            color: var(--secondary-color);
            margin-bottom: 1.5rem;
            font-size: 1rem;
            font-weight: 700;
            letter-spacing: 0.5px;
        }

        .footer-section p, .footer-section a {
            color: rgba(255, 255, 255, 0.85);
            text-decoration: none;
            margin-bottom: 0.75rem;
            display: block;
            font-size: 0.9rem;
            line-height: 1.7;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: var(--secondary-color);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            padding-top: 2rem;
            text-align: center;
        }

        .footer-bottom p {
            margin: 0.5rem 0;
            font-size: 0.85rem;
            opacity: 0.9;
        }

        /* ===== RESPONSIVIDADE ===== */
        @media (max-width: 1024px) {
            .hero-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .hero-text h2 {
                font-size: 2.2rem;
            }

            .about-container {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .about-list {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .header-container {
                flex-wrap: wrap;
                padding: 0.75rem 1rem;
            }

            .logo-image {
                height: 70px;
            }

            .logo-text h1 {
                font-size: 1.3rem;
            }

            nav {
                display: none;
                gap: 1rem;
                flex-direction: column;
                width: 100%;
                margin-top: 1rem;
                margin-left: 0;
            }

            nav.active {
                display: flex;
            }

            .menu-toggle {
                display: block;
            }

            .hero {
                padding: 4rem 1rem 3rem;
            }

            .hero-text h2 {
                font-size: 1.8rem;
            }

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

            .cta-buttons {
                flex-direction: column;
            }

            .btn {
                width: 100%;
                text-align: center;
            }

            .section-title {
                font-size: 2rem;
            }

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

            .footer-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .footer-section p, .footer-section a {
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .header-container {
                padding: 0.5rem;
            }

            .logo-section {
                gap: 1rem;
            }

            .logo-image {
                height: 55px;
            }

            .logo-text h1 {
                font-size: 1rem;
            }

            .logo-text p {
                font-size: 0.7rem;
            }

            .hero {
                padding: 2.5rem 1rem;
            }

            .hero-text h2 {
                font-size: 1.5rem;
            }

            .hero-text p {
                font-size: 0.9rem;
            }

            .section-title {
                font-size: 1.5rem;
                margin-bottom: 2rem;
            }

            .service-card {
                padding: 1.5rem;
            }

            .contact-grid {
                gap: 1rem;
            }

            .contact-item {
                padding: 1.5rem;
            }

            nav {
                gap: 0.5rem;
            }

            nav a {
                font-size: 0.85rem;
            }
        }