   
        /* Estilos específicos para a página de comodato */
        .page-hero {
            background: linear-gradient(135deg, var(--verde-principal) 0%, var(--verde-escuro) 100%);
            color: white;
            padding: 80px 0;
            text-align: center;
        }
        
        .page-hero h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: white;
        }
        
        .hero-description {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
        }
        
        .breadcrumb {
            background-color: #f5f5f5;
            padding: 15px 0;
            margin-bottom: 30px;
        }
        
        .breadcrumb a {
            color: var(--verde-principal);
            text-decoration: none;
        }
        
        .breadcrumb span {
            color: var(--cinza-medio);
        }
        
        .benefits-section {
            padding: 60px 0;
            background-color: #f9f9f9;
        }
        
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .benefit-card {
            background: white;
            border-radius: 8px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
        }
        
        .benefit-card:hover {
            transform: translateY(-5px);
        }
        
        .benefit-icon {
            font-size: 2.5rem;
            color: var(--verde-principal);
            margin-bottom: 20px;
        }
        
        .how-it-works {
            padding: 60px 0;
        }
        
        .process-steps {
            display: flex;
            flex-direction: column;
            gap: 30px;
            margin-top: 40px;
        }
        
        .step {
            display: flex;
            align-items: flex-start;
            gap: 20px;
        }
        
        .step-number {
            background: var(--verde-principal);
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            flex-shrink: 0;
        }
        
        .equipment-section {
            padding: 60px 0;
            background-color: #f9f9f9;
        }
        
        .equipment-tabs {
            margin-top: 40px;
        }
        
        .tab-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 30px;
        }
        
        .tab-btn {
            background: #e9ecef;
            border: none;
            padding: 12px 24px;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .tab-btn.active, .tab-btn:hover {
            background: var(--verde-principal);
            color: white;
        }
        
        .tab-content {
            display: none;
        }
        
        .tab-content.active {
            display: block;
        }
        
        .equipment-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .equipment-card {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .equipment-img img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .equipment-info {
            padding: 20px;
        }
        
        .equipment-info ul {
            list-style: none;
            padding: 0;
            margin: 15px 0;
        }
        
        .equipment-info li {
            margin-bottom: 8px;
            display: flex;
            align-items: center;
        }
        
        .equipment-info i {
            color: var(--verde-principal);
            margin-right: 10px;
        }
        
        .legal-section {
            padding: 60px 0;
        }
        
        .legal-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-top: 40px;
        }
        
        .legal-image img {
            width: 100%;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .rights-obligations {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin: 30px 0;
        }
        
        .comparison-section {
            padding: 60px 0;
            background-color: #f9f9f9;
        }
        
        .comparison-table {
            overflow-x: auto;
            margin: 40px 0;
        }
        
        table {
            width: 100%;
            border-collapse: collapse;
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        th, td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid #eee;
        }
        
        th {
            background-color: var(--verde-principal);
            color: white;
        }
        
        tr:hover {
            background-color: #f5f5f5;
        }
        
        .fa-check-circle {
            color: var(--verde-principal);
        }
        
        .fa-times-circle {
            color: #dc3545;
        }
        
        .faq-section {
            padding: 60px 0;
        }
        
        .faq-list {
            margin-top: 40px;
        }
        
        .faq-item {
            margin-bottom: 15px;
            border: 1px solid #eee;
            border-radius: 8px;
            overflow: hidden;
        }
        
        .faq-question {
            width: 100%;
            background: white;
            border: none;
            padding: 20px;
            text-align: left;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .faq-answer {
            padding: 0 20px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }
        
        .faq-item.active .faq-answer {
            padding: 20px;
            max-height: 500px;
        }
        
        .cta-final {
            background: linear-gradient(135deg, var(--verde-principal) 0%, var(--verde-escuro) 100%);
            color: white;
            padding: 80px 0;
            text-align: center;
        }
        
        @media (max-width: 768px) {
            .legal-content, .rights-obligations {
                grid-template-columns: 1fr;
            }
            
            .page-hero h1 {
                font-size: 2rem;
            }
        }
   
