 /* Reset e Variáveis */
        :root {
            --verde: #55a742;
            --verde-claro: #55a742;
            --azul: #1E3A5F;
            --azul-claro: #2E5789;
            --branco: white;
            --cinza-claro: #f8f9fa;
            --cinza-medio: #e9ecef;
            --cinza-escuro: #2C3E50;
            --sombra: 0 10px 30px rgba(0, 0, 0, 0.1);
            --sombra-destaque: 0 15px 40px rgba(46, 139, 87, 0.2);
            --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            --highlight: #e8f5e8;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--cinza-escuro);
            background-color: var(--cinza-claro);
            margin: 0;
            padding: 0;
            min-height: 100vh;
            position: relative;
            overflow-x: hidden;
            background-image: url('Fotos/ori.png');
            background-size: cover;
            background-position: center 18%;
            background-repeat: no-repeat;
            background-attachment: fixed;
        }

        h1, h2, h3, h4 {
            font-weight: 600;
            color: var(--azul);
            line-height: 1.3;
        }
        
        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            padding: 15px 0;
            z-index: 1000;
            background-color: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
        }
        
        .header-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .logo-img {
            height: 50px;
            width: auto;
            border-radius: 8px;
        }
        
        /* Menu Hamburger */
        .menu-toggle {
            display: none;
            flex-direction: column;
            justify-content: space-between;
            width: 30px;
            height: 21px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 0;
            z-index: 1001;
        }
        
        .menu-toggle span {
            display: block;
            height: 3px;
            width: 100%;
            background-color: var(--azul);
            border-radius: 3px;
            transition: var(--transition);
        }
        
        .menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(6px, 6px);
        }
        
        .menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }
        
        .menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }
        
        .nav-menu {
            display: flex;
            gap: 30px;
            list-style: none;
            align-items: center;
        }
        
        .nav-menu a {
            color: var(--azul);
            font-weight: 500;
            font-size: 0.95rem;
            position: relative;
            padding: 5px 0;
        }
        
        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--verde), var(--azul));
            transition: var(--transition);
        }
        
        .nav-menu a:hover::after {
            width: 100%;
        }
        
        .nav-menu a:hover {
            color: var(--verde);
        }
        
        /* Hero Section */
        .hero {
            padding: 150px 0 80px;
            text-align: center;
            position: relative;
        }
        
        .hero::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.767) 100%);
            z-index: -1;
        }
        
        .profile-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-bottom: 40px;
        }
        
        .profile-image {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            object-fit: cover;
            border: 5px solid var(--verde);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
            margin-bottom: 25px;
            transition: var(--transition);
        }
        
        .profile-image:hover {
            transform: scale(1.05);
            box-shadow: 0 20px 40px rgba(85, 167, 66, 0.4);
        }
        
        .profile-logo {
            height: 70px;
            width: auto;
            margin-bottom: 20px;
            filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
        }
        
        .hero p {
            font-size: 1.2rem;
            color: var(--cinza-escuro);
            max-width: 700px;
            margin: 0 auto 40px;
            line-height: 1.6;
        }
        
        .stats-container {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 30px;
            flex-wrap: wrap;
        }
        
        .stat-box {
            background-color: rgba(255, 255, 255, 0.8);
            padding: 25px 35px;
            border-radius: 15px;
            box-shadow: var(--sombra);
            min-width: 200px;
            position: relative;
            overflow: hidden;
            transition: var(--transition);
        }
        
        .stat-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }
        
        .stat-box::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background-color: var(--verde);
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--azul);
            margin-bottom: 5px;
        }
        
        .stat-label {
            font-size: 0.9rem;
            color: var(--cinza-escuro);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Cards Section */
        .cards-section {
            padding: 80px 0;
            background-color: rgba(255, 255, 255, 0.85);
            position: relative;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 2.8rem;
            position: relative;
            display: inline-block;
            margin-bottom: 15px;
            font-family: 'Montserrat', sans-serif;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .section-title h2::after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background-color: var(--verde);
        }
        
        .section-title p {
            color: var(--cinza-escuro);
            max-width: 700px;
            margin: 0 auto;
            font-size: 1.1rem;
        }
        
        .cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .card {
            background-color: var(--branco);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--sombra);
            transition: var(--transition);
            position: relative;
            display: flex;
            flex-direction: column;
        }
        
        .card:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }
        
        .card-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background-color: var(--verde);
            color: var(--branco);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            z-index: 2;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }
        
        .card-image {
            height: 380px;
            overflow: hidden;
            position: relative;
        }
        
        .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }
        
        .card:hover .card-image img {
            transform: scale(1.1);
        }
        
        .card-content {
            padding: 25px;
            position: relative;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        
        .card-content h3 {
            font-size: 1.6rem;
            margin-bottom: 15px;
            color: var(--azul);
            position: relative;
            display: inline-block;
            font-family: 'Montserrat', sans-serif;
        }
        
        .card-content h3::after {
            content: "";
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 50px;
            height: 3px;
            background-color: var(--verde);
        }
        
        .card-content p {
            color: var(--cinza-escuro);
            margin-bottom: 20px;
            font-size: 1rem;
            line-height: 1.6;
            position: relative;
            padding-left: 15px;
        }
        
        .card-content p::before {
            content: "•";
            position: absolute;
            left: 0;
            color: var(--verde);
            font-size: 1.5rem;
            line-height: 1;
        }
        
        .card-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background-color: var(--azul);
            color: var(--branco);
            padding: 12px 25px;
            border-radius: 30px;
            font-weight: 500;
            font-size: 0.95rem;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
            margin-top: auto;
            width: fit-content;
        }
        
        .card-cta::before {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: 0.5s;
        }
        
        .card-cta:hover {
            background-color: var(--verde);
            transform: translateX(5px);
        }
        
        .card-cta:hover::before {
            left: 100%;
        }
        
        .card-cta i {
            transition: var(--transition);
        }
        
        .card-cta:hover i {
            transform: translateX(3px);
        }
        
        /* Footer */
        .footer {
            background-color: var(--azul);
            color: var(--branco);
            padding: 60px 0 30px;
            text-align: center;
            position: relative;
        }
        
        .footer::before {
            content: "";
            position: absolute;
            top: -50px;
            left: 0;
            width: 100%;
            height: 100px;
            background-color: var(--branco);
            border-bottom-left-radius: 100% 40px;
            border-bottom-right-radius: 100% 40px;
            z-index: 1;
        }
        
        .footer-content {
            position: relative;
            z-index: 2;
        }
        
        .footer-logo {
            margin-bottom: 30px;
        }
        
        .footer-logo img {
            height: 60px;
            margin: 0 auto;
            border-radius: 8px;
        }
        
        .footer-social {
            margin-top: 10px;
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .footer-social a {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--branco);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            transition: var(--transition);
        }
        
        .footer-social a:hover {
            background-color: var(--verde);
            color: var(--branco);
            transform: translateY(-5px) rotate(10deg);
        }
        
        .footer-info {
            font-size: 0.9rem;
            opacity: 0.8;
            margin-top: 20px;
        }
        
        .credits {
            margin-top: 40px;
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.6);
        }
        
        .credits a {
            color: var(--verde-claro);
            font-weight: 500;
        }
        
        /* Botão WhatsApp Flutuante */
        .floating-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--verde), var(--verde-claro));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 20px rgba(0,0,0,0.3);
            cursor: pointer;
            z-index: 1000;
            transition: all 0.3s ease;
            text-decoration: none;
            animation: pulse 2s infinite;
        }

        .floating-btn:hover {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 6px 25px rgba(0,0,0,0.4);
        }

        .floating-btn:active {
            transform: scale(0.95);
        }

        .floating-btn i {
            color: white;
            font-size: 28px;
            font-weight: bold;
        }

        .tooltip {
            position: absolute;
            right: 85px;
            background: rgba(0,0,0,0.8);
            color: white;
            padding: 10px 15px;
            border-radius: 8px;
            font-size: 14px;
            white-space: nowrap;
            opacity: 0;
            transform: translateX(10px);
            transition: all 0.3s ease;
            pointer-events: none;
        }

        .floating-btn:hover .tooltip {
            opacity: 1;
            transform: translateX(0);
        }

        /* Efeitos Especiais */
        .highlight-text {
            background: linear-gradient(to right, var(--verde-claro) 0%, var(--highlight) 50%, var(--verde-claro) 100%);
            background-size: 200% auto;
            color: var(--cinza-escuro);
            padding: 0 5px;
            border-radius: 3px;
            animation: shine 3s linear infinite;
            display: inline;
            font-weight: 600;
        }
        
        @keyframes shine {
            to {
                background-position: 200% center;
            }
        }
        
        @keyframes pulse {
            0% { box-shadow: 0 4px 20px rgba(85, 167, 66, 0.4); }
            50% { box-shadow: 0 4px 30px rgba(85, 167, 66, 0.8); }
            100% { box-shadow: 0 4px 20px rgba(85, 167, 66, 0.4); }
        }
        
        @keyframes bounce {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.2); }
        }
        
        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        
        @keyframes slideUp {
            from { 
                opacity: 0;
                transform: translateY(30px);
            }
            to { 
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .fade-in {
            animation: fadeIn 1s ease forwards;
        }
        
        .slide-up {
            animation: slideUp 0.8s ease forwards;
        }
        
        /* Responsive */
        @media (max-width: 1025px) {
            .cards-grid {
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            }
            
            .nav-menu {
                gap: 20px;
            }
            .card-image {
            height: 300px;
            overflow: hidden;
            position: relative;
        }
        }
        
        @media (max-width: 768px) {
            .hero {
                padding: 130px 0 60px;
            }
            
            .menu-toggle {
                display: flex;
            }
            
            .nav-menu {
                position: fixed;
                top: 80px;
                right: -100%;
                width: 80%;
                height: calc(100vh - 80px);
                background-color: var(--branco);
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 50px;
                transition: right 0.4s ease;
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
                gap: 30px;
            }
            
            .nav-menu.active {
                right: 0;
            }
            
            .profile-image {
                width: 180px;
                height: 180px;
            }
            
            .profile-logo {
                height: 60px;
            }
            
            .stats-container {
                margin-top: 20px;
                gap: 20px;
            }
            
            .stat-box {
                min-width: 160px;
                padding: 20px 25px;
            }
            
            .stat-number {
                font-size: 2rem;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .card-image {
                height: 350px;
            }
            
            .floating-btn {
                bottom: 20px;
                right: 20px;
                width: 60px;
                height: 60px;
            }
            
            .floating-btn i {
                font-size: 24px;
            }
            
            .tooltip {
                font-size: 12px;
                padding: 8px 12px;
                right: 75px;
            }
        }
        
        @media (max-width: 576px) {
            .hero {
                padding: 120px 0 40px;
            }
            
            .profile-image {
                width: 150px;
                height: 150px;
            }
            
            .profile-logo {
                height: 50px;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .stats-container {
                flex-direction: column;
                align-items: center;
            }
            
            .stat-box {
                width: 100%;
                max-width: 250px;
            }
            
            .cards-grid {
                grid-template-columns: 1fr;
            }
            
            .floating-btn {
                bottom: 15px;
                right: 15px;
                width: 55px;
                height: 55px;
            }
            
            .floating-btn i {
                font-size: 22px;
            }
            
            .tooltip {
                right: 65px;
            }
        }
