        :root {
            --primary: #0053a0;
            --secondary: #e6ac00;
            --light: #f1f7fd;
            --dark: #333;
            --gray: #555;
            --gold: #e6ac00;
            --silver: #c0c0c0;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #555;
            margin: 0;
            padding: 0;
            background-color: #f8f9fa;
        }
        
        .meet-greet-section {
            padding: 80px 0;
            background: linear-gradient(135deg, var(--light) 0%, #f9fbfd 100%);
            position: relative;
            overflow: hidden;
        }
        
        .meet-greet-section::before {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 300px;
            height: 300px;
            background: var(--secondary);
            opacity: 0.1;
            border-radius: 50%;
            z-index: 0;
        }
        
        .meet-greet-section::after {
            content: '';
            position: absolute;
            bottom: -50px;
            left: -50px;
            width: 200px;
            height: 200px;
            background: var(--primary);
            opacity: 0.1;
            border-radius: 50%;
            z-index: 0;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }
        
        .section-title {
            color: var(--primary);
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
            text-align: center;
            font-size: 2.5rem;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
            bottom: 0;
            width: 80px;
            height: 4px;
            background: var(--secondary);
            border-radius: 2px;
        }
        
        .section-subtitle {
            text-align: center;
            margin-bottom: 50px;
            font-size: 1.2rem;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            color: var(--gray);
        }
        
        .sub-title {
            color: var(--primary);
            margin: 25px 0 15px;
            display: flex;
            align-items: center;
        }
        
        .sub-title i {
            margin-right: 12px;
            color: var(--secondary);
        }
        
        .btn-mahs {
            display: inline-flex;
            align-items: center;
            background: var(--primary);
            color: white;
            padding: 14px 32px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            margin-top: 15px;
            box-shadow: 0 4px 15px rgba(0, 83, 160, 0.3);
            border: none;
            cursor: pointer;
        }
        
        .btn-mahs:hover {
            background: #003d70;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 83, 160, 0.4);
            color: white;
        }
        
        .btn-mahs i {
            margin-left: 8px;
            transition: transform 0.3s ease;
        }
        
        .btn-mahs:hover i {
            transform: translateX(4px);
        }
        
        .btn-premium {
            display: inline-flex;
            align-items: center;
            background: linear-gradient(135deg, var(--gold) 0%, #d99a00 100%);
            color: white;
            padding: 14px 32px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            margin-top: 15px;
            box-shadow: 0 4px 15px rgba(230, 172, 0, 0.3);
            border: none;
            cursor: pointer;
        }
        
        .btn-premium:hover {
            background: linear-gradient(135deg, #d99a00 0%, #bf8a00 100%);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(230, 172, 0, 0.4);
            color: white;
        }
        
        .content-box {
            background: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            height: 100%;
            transition: all 0.3s ease;
        }
        
        .content-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .premium-box {
            background: linear-gradient(135deg, #ffffff 0%, #f9f9f9 100%);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            border-left: 4px solid var(--gold);
            transition: all 0.3s ease;
        }
        
        .premium-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
        }
        
        .row {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -15px;
        }
        
        .col-12, .col-lg-6, .col-md-6, .col-lg-4, .col-md-4, .col-lg-3 {
            padding: 0 15px;
            box-sizing: border-box;
        }
        
        .col-12 { width: 100%; }
        .col-lg-6 { width: 50%; }
        .col-md-6 { width: 50%; }
        .col-lg-4 { width: 33.3333%; }
        .col-md-4 { width: 33.3333%; }
        .col-lg-3 { width: 25%; }
        
        .mb-4 { margin-bottom: 1.5rem; }
        .mb-5 { margin-bottom: 3rem; }
        
        .text-center { text-align: center; }
        
        .align-items-center { align-items: center; }
        
        .h-100 { height: 100%; }
        
        .img-fluid { max-width: 100%; height: auto; }
        
        /* Estilos específicos para a seção Meet and Greet */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin: 40px 0;
        }
        
        .service-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            text-align: center;
            padding: 30px 20px;
            position: relative;
        }
        
        .service-card.premium {
            border-top: 4px solid var(--gold);
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .service-icon {
            width: 80px;
            height: 80px;
            background: var(--light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: var(--primary);
            font-size: 2rem;
        }
        
        .premium .service-icon {
            background: rgba(230, 172, 0, 0.1);
            color: var(--gold);
        }
        
        .service-title {
            color: var(--primary);
            margin: 0 0 15px;
            font-size: 1.4rem;
        }
        
        .premium .service-title {
            color: var(--gold);
        }
        
        .service-description {
            color: var(--gray);
            margin-bottom: 20px;
        }
        
        .meet-image {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
            transition: all 0.5s ease;
        }
        
        .meet-image:hover {
            transform: scale(1.02);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
        }
        
        .meet-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .meet-image::before {
            content: '';
            position: absolute;
            top: -15px;
            right: -15px;
            width: 100%;
            height: 100%;
            border: 3px solid var(--secondary);
            border-radius: 12px;
            z-index: -1;
            opacity: 0.5;
        }
        
        .benefits-list {
            list-style: none;
            padding: 0;
            margin: 20px 0;
        }
        
        .benefits-list li {
            margin-bottom: 12px;
            padding: 12px 15px 12px 45px;
            position: relative;
            color: var(--dark);
            background: rgba(255, 255, 255, 0.8);
            border-radius: 8px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }
        
        .benefits-list li:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .benefits-list li::before {
            content: '✓';
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            width: 26px;
            height: 26px;
            background: var(--secondary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }
        
        .premium-list li::before {
            background: var(--gold);
        }
        
        .stat-item {
            padding: 20px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            text-align: center;
            margin-bottom: 20px;
            height: 100%;
            transition: all 0.3s ease;
        }
        
        .stat-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 8px;
        }
        
        .stat-label {
            color: var(--gray);
            font-size: 1rem;
        }
        
        
        .experience-steps {
            display: flex;
            justify-content: space-between;
            margin: 40px 0;
            position: relative;
        }
        
        .experience-steps::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--primary);
            opacity: 0.2;
            z-index: 0;
        }
        
        .experience-step {
            text-align: center;
            position: relative;
            z-index: 1;
            flex: 1;
        }
        
        .step-number {
            width: 80px;
            height: 80px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            font-weight: bold;
            margin: 0 auto 20px;
            position: relative;
        }
        
        .premium .step-number {
            background: var(--gold);
        }
        
        .step-title {
            color: var(--primary);
            margin-bottom: 10px;
            font-weight: 600;
        }
        
        .premium .step-title {
            color: var(--gold);
        }
        
        .step-description {
            color: var(--gray);
            font-size: 0.9rem;
            padding: 0 10px;
        }
        
        .testimonial-section {
            background: linear-gradient(135deg, var(--primary) 0%, #003d70 100%);
            color: white;
            padding: 60px 40px;
            border-radius: 10px;
            margin: 40px 0;
            text-align: center;
        }
        
        .testimonial-text {
            font-size: 1.3rem;
            font-style: italic;
            margin-bottom: 20px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .testimonial-author {
            font-weight: 600;
            font-size: 1.1rem;
        }
        
        .testimonial-role {
            opacity: 0.8;
        }
        
        /* Responsividade */
        @media (max-width: 992px) {
            .col-lg-6, .col-md-6, .col-lg-4, .col-md-4, .col-lg-3 {
                width: 100%;
                margin-bottom: 20px;
            }
            
            .partner-section {
                flex-direction: column;
                text-align: center;
            }
            
            .partner-logo {
                margin-right: 0;
                margin-bottom: 20px;
                flex: 0 0 auto;
            }
            
            .experience-steps {
                flex-direction: column;
            }
            
            .experience-steps::before {
                display: none;
            }
            
            .experience-step {
                margin-bottom: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
        }
        
        
        
         /*para detalhes do servico de meet and greet que vai aparecer no hover*/
        .service-details {
            display: none;
            background-color: #f8f9fa;
            border-radius: 8px;
            padding: 5px;
            margin-top: 10px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .service-details ul {
            list-style-type: none;
            padding-left: 0;
        }

        .service-details li {
            margin-bottom: 8px;
            position: relative;
            padding-left: 20px;
        }

        .service-details li:before {
            content: "✓";
            color: #28a745;
            font-weight: bold;
            position: absolute;
            font-size:10;
            left: 0;
        }
    
