        @page {
            margin: 2cm;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: #C4CED4;
            padding-top: 10px;
            padding-bottom: 10px;
        }
        
        .container {
            max-width: 210mm;
            margin: 0 auto;
            background: white;
            padding: 20px;
            border-radius: 20px;
        }
        
        .header {
            background: linear-gradient(135deg, #0C2C56 0%, #005C5C 100%);
            padding: 30px;
            border-radius: 10px;
            margin-bottom: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo-section {
            display: flex;
            align-items: center;
            gap: 20px;
        }
        
        .logo {
            width: 80px;
            height: 80px;
            background: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 2px;
        }
        
        .logo img {
            width: 80px;
            height: 100%;
        }
        
        .company-name {
            color: white;
            font-size: 32px;
            font-weight: bold;
            letter-spacing: 2px;
        }
        
        .header-info {
            color: white;
            text-align: right;
            font-size: 14px;
        }
        
        .header-info p {
            margin: 5px 0;
        }
        
        .doc-title {
            text-align: center;
            margin: 40px 0 30px 0;
        }
        
        .doc-title h1 {
            color: #0C2C56;
            font-size: 36px;
            margin-bottom: 10px;
        }
        
        .doc-title p {
            color: #666;
            font-size: 16px;
        }
        
        .info-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin: 30px 0;
            padding: 20px;
            background: #C4CED4;
            border-radius: 10px;
        }
        
        .info-box h3 {
            color: #0C2C56;
            margin-bottom: 15px;
            font-size: 18px;
            border-bottom: 2px solid #D50032;
            padding-bottom: 8px;
        }
        
        .info-box p {
            margin: 8px 0;
            font-size: 14px;
        }
        
        .info-box strong {
            color: #0C2C56;
        }
        
        .section {
            margin: 40px 0;
        }
        
        .section-title {
            background: #0C2C56;
            color: white;
            padding: 12px 20px;
            border-radius: 5px;
            font-size: 20px;
            margin-bottom: 20px;
        }
        
        .project-description {
            background: #fff;
            padding: 20px;
            border-left: 4px solid #D50032;
            margin-bottom: 20px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        
        .tech-stack {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            margin: 20px 0;
        }
        
        .tech-badge {
            background: linear-gradient(135deg, #0C2C56 0%, #005C5C 100%);
            color: white;
            padding: 10px 20px;
            border-radius: 25px;
            font-weight: bold;
            font-size: 14px;
        }
        
        .features-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin: 20px 0;
        }
        
        .feature-item {
            display: flex;
            align-items: center;
            padding: 12px;
            background: #C4CED4;
            border-radius: 5px;
            border-left: 3px solid #D50032;
        }
        
        .feature-item::before {
            content: "✓";
            color: #D50032;
            font-weight: bold;
            margin-right: 10px;
            font-size: 18px;
        }
        
        .timeline {
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .phase {
            margin: 20px 0;
            padding: 15px;
            border-left: 4px solid #0C2C56;
            background: #C4CED4;
        }
        
        .phase-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
        }
        
        .phase-title {
            color: #0C2C56;
            font-weight: bold;
            font-size: 16px;
        }
        
        .phase-duration {
            background: #D50032;
            color: white;
            padding: 5px 15px;
            border-radius: 15px;
            font-size: 12px;
        }
        
        .pricing-section {
            background: linear-gradient(135deg, #C4CED4 0%, #e9ecef 100%);
            padding: 30px;
            border-radius: 10px;
            margin: 30px 0;
        }
        
        .pricing-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 20px;
            margin: 20px 0;
        }
        
        .pricing-detail {
            background: white;
            padding: 15px;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        
        .pricing-label {
            color: #666;
            font-size: 14px;
            margin-bottom: 8px;
        }
        
        .pricing-value {
            color: #0C2C56;
            font-size: 24px;
            font-weight: bold;
        }
        
        .total-box {
            background: linear-gradient(135deg, #0C2C56 0%, #005C5C 100%);
            color: white;
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            margin: 20px 0;
        }
        
        .total-label {
            font-size: 18px;
            margin-bottom: 10px;
        }
        
        .total-amount {
            font-size: 48px;
            font-weight: bold;
        }
        
        .payment-schedule {
            margin: 20px 0;
        }
        
        .payment-item {
            display: flex;
            justify-content: space-between;
            padding: 15px;
            margin: 10px 0;
            background: white;
            border-radius: 5px;
            border-left: 4px solid #D50032;
        }
        
        .payment-stage {
            font-weight: bold;
            color: #0C2C56;
        }
        
        .payment-amount {
            color: #D50032;
            font-weight: bold;
            font-size: 18px;
        }
        
        .deliverables {
            margin: 20px 0;
        }
        
        .deliverable-item {
            padding: 12px;
            margin: 10px 0;
            background: #C4CED4;
            border-left: 4px solid #0C2C56;
            border-radius: 5px;
        }
        
        .guarantee-box {
            background: #fff3cd;
            border: 2px solid #ffc107;
            border-radius: 10px;
            padding: 20px;
            margin: 20px 0;
        }
        
        .guarantee-box h4 {
            color: #856404;
            margin-bottom: 10px;
        }
        
        .modules-section {
            background: white;
            padding: 20px;
            border-radius: 10px;
            margin: 20px 0;
        }
        
        .module-card {
            background: #C4CED4;
            padding: 20px;
            margin: 15px 0;
            border-left: 4px solid #005C5C;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.08);
        }
        
        .module-card h4 {
            color: #0C2C56;
            font-size: 18px;
            margin-bottom: 10px;
        }
        
        .module-card ul {
            margin-left: 20px;
            margin-top: 10px;
        }
        
        .module-card li {
            margin: 5px 0;
            color: #333333;
        }
        
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin: 20px 0;
        }
        
        .benefit-card {
            background: linear-gradient(135deg, #C4CED4 0%, #e9ecef 100%);
            padding: 20px;
            border-radius: 10px;
            text-align: center;
            border: 2px solid #C4CED4;
            transition: all 0.3s ease;
        }
        
        .benefit-card:hover {
            border-color: #D50032;
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(213, 0, 50, 0.2);
        }
        
        .benefit-icon {
            font-size: 48px;
            margin-bottom: 15px;
        }
        
        .benefit-card h4 {
            color: #0C2C56;
            margin-bottom: 10px;
            font-size: 16px;
        }
        
        .benefit-card p {
            color: #666;
            font-size: 14px;
        }
        
        .footer {
            margin-top: 50px;
            padding-top: 30px;
            border-top: 3px solid #0C2C56;
            text-align: center;
        }
        
        .contact-info {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin: 20px 0;
            flex-wrap: wrap;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #0C2C56;
        }
        
        .signature-section {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            margin-top: 50px;
        }
        
        .signature-box {
            text-align: center;
            padding-top: 50px;
            border-top: 2px solid #333;
        }
        
        .signature-box p {
            margin-top: 10px;
            font-weight: bold;
        }

        .section-content {
            background: linear-gradient(135deg, #0C2C56 0%, #005C5C 100%); 
            padding: 40px; 
            border-radius: 15px; 
            color: white;
        }

        .section-content-items {
            display: grid; 
            grid-template-columns: repeat(3, 1fr); 
            gap: 30px;
        }

        .section-proximos-pasos{
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin: 30px 0;
        }

        .section-metodologia{
            display: grid;
            grid-template-columns: repeat(1, 1fr);
            gap: 20px;
            margin: 30px 0;
        }
        
        @media print {
            .container {
                max-width: 100%;
            }
            
            .section {
                page-break-inside: avoid;
            }
            
            .phase {
                page-break-inside: avoid;
            }
        }
        @media (max-width: 768px) {
            .info-grid, .features-list, .signature-section {
                grid-template-columns: 1fr;
            }
            
            .benefits-grid {
                grid-template-columns: 1fr 1fr;
            }

            .section-content-items {
                grid-template-columns: 1fr;
            }

            .section-proximos-pasos{
                grid-template-columns: 1fr;
            }

            .company-name {
                display: none;            
            }
        }