/* Estilos específicos para a página de orientações */
        body {
            font-family: 'Open Sans', sans-serif;
            line-height: 1.6;
            color: #2d5016;
            background: linear-gradient(135deg, #f0f8e8 0%, #e8f5d8 50%, #d9f0c0 100%);
            min-height: 100vh;
        }

        /* Header */
        .header {
            background: linear-gradient(135deg, #4a7c59 0%, #2d5016 100%);
            color: white;
            padding: 2rem 0;
            text-align: center;
            box-shadow: 0 4px 20px rgba(77, 124, 89, 0.3);
        }

        .logo {
            width: 80px;
            height: 80px;
            margin: 0 auto 1rem;
            border-radius: 50%;
            border: 3px solid #b8d89e;
            box-shadow: 0 0 20px rgba(184, 216, 158, 0.5);
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .logo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .header h1 {
            font-family: 'Cinzel', serif;
            font-size: 2.5rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .header .subtitle {
            font-size: 1.1rem;
            opacity: 0.9;
            font-weight: 300;
        }

        /* Breadcrumb */
        .breadcrumb {
            display: none;
        }

        /* Container */
        .container {
            max-width: 900px;
            margin: 0 auto;
            padding: 3rem 2rem;
        }

        /* Content Card */
        .content-card {
            background: white;
            border-radius: 20px;
            padding: 3rem;
            box-shadow: 0 10px 40px rgba(77, 124, 89, 0.15);
            border: 1px solid rgba(184, 216, 158, 0.3);
            position: relative;
            overflow: hidden;
        }

        .content-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, #4a7c59, #6fa86f, #8bc34a, #6fa86f, #4a7c59);
        }

        /* Typography */
        .content-title {
            font-family: 'Cinzel', serif;
            font-size: 2.2rem;
            color: #2d5016;
            text-align: center;
            margin-bottom: 2rem;
            padding-bottom: 1rem;
            border-bottom: 2px solid #b8d89e;
            position: relative;
        }

        .content-title::after {
            content: '🌿';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: white;
            padding: 0 1rem;
            font-size: 1.5rem;
        }

        .section {
            margin-bottom: 2.5rem;
        }

        .section-title {
            font-family: 'Cinzel', serif;
            font-size: 1.4rem;
            color: #4a7c59;
            margin-bottom: 1rem;
            padding-left: 1rem;
            border-left: 4px solid #8bc34a;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .section-content {
            background: rgba(184, 216, 158, 0.1);
            padding: 1.5rem;
            border-radius: 15px;
            border: 1px solid rgba(184, 216, 158, 0.3);            
        }

        .section-content p {
            margin-bottom: 1rem;
            text-align: left;
        }

        .section-content p:last-child {
            margin-bottom: 0;
        }

        /* Lists */
        .guidelines-list {
            list-style: none;
            padding: 0;
        }

        .guidelines-list li {
            background: white;
            margin-bottom: 1rem;
            padding: 1rem 1.5rem;
            border-radius: 10px;
            border-left: 4px solid #8bc34a;
            box-shadow: 0 2px 10px rgba(77, 124, 89, 0.1);
            position: relative;
        }

        .guidelines-list li::before {
            content: '✓';
            position: absolute;
            left: 0.5rem;
            top: 50%;
            transform: translateY(-50%);
            color: #8bc34a;
            font-weight: bold;
            font-size: 1.2rem;
        }

        .guidelines-list li {
            padding-left: 2.5rem;
        }

        /* Important boxes */
        .important-box {
            background: linear-gradient(135deg, #fff9c4 0%, #fff59d 100%);
            border: 2px solid #f9a825;
            border-radius: 15px;
            padding: 1.5rem;
            margin: 2rem 0;
            position: relative;
        }

        .important-box::before {
            content: '⚠️';
            position: absolute;
            top: -15px;
            left: 20px;
            background: #fff9c4;
            padding: 0 0.5rem;
            font-size: 1.5rem;
        }

        .important-title {
            font-weight: 700;
            color: #e65100;
            margin-bottom: 0.5rem;
            font-size: 1.1rem;
        }

        /* Contact box */
        .contact-box {
            background: linear-gradient(135deg, #e8f5e8 0%, #c8e6c8 100%);
            border: 2px solid #4a7c59;
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            margin-top: 3rem;
        }

        .contact-title {
            font-family: 'Cinzel', serif;
            font-size: 1.3rem;
            color: #2d5016;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .contact-info {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
            margin-top: 1rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: #4a7c59;
            font-weight: 600;
        }

        .contact-item a {
            color: #4a7c59;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-item a:hover {
            color: #2d5016;
        }

        /* Newsletter box */
        .newsletter-box {
            background: linear-gradient(135deg, #f0f8e8 0%, #e8f5d8 100%);
            border: 2px solid #4a7c59;
            border-radius: 15px;
            padding: 2rem;
            text-align: center;
            margin: 3rem 0 2rem 0;
        }

        .newsletter-title {
            font-family: 'Cinzel', serif;
            font-size: 1.3rem;
            color: #2d5016;
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .newsletter-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            max-width: 400px;
            margin: 0 auto;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            text-align: left;
        }

        .form-group label {
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: #2d5016;
            font-size: 0.9rem;
        }

        .form-group input {
            padding: 0.8rem;
            border: 2px solid rgba(77, 124, 89, 0.3);
            border-radius: 8px;
            font-family: 'Open Sans', sans-serif;
            font-size: 0.9rem;
            transition: border-color 0.3s ease;
            background: white;
        }

        .form-group input:focus {
            outline: none;
            border-color: #4a7c59;
            box-shadow: 0 0 0 3px rgba(77, 124, 89, 0.1);
        }

        .btn-newsletter {
            background: linear-gradient(135deg, #4a7c59, #6fa86f);
            color: white;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 25px;
            font-family: 'Open Sans', sans-serif;
            font-weight: 600;
            cursor: pointer;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(77, 124, 89, 0.3);
            margin-top: 0.5rem;
        }

        .btn-newsletter:hover {
            background: linear-gradient(135deg, #6fa86f, #4a7c59);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(77, 124, 89, 0.4);
        }

        .btn-newsletter:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

        .success-message {
            color: #2d5016;
            font-weight: 600;
            margin-top: 1rem;
            padding: 0.8rem;
            background: rgba(139, 195, 74, 0.1);
            border: 1px solid rgba(139, 195, 74, 0.3);
            border-radius: 8px;
            display: none;
        }

        .error-message {
            color: #d32f2f;
            font-weight: 600;
            margin-top: 1rem;
            padding: 0.8rem;
            background: rgba(211, 47, 47, 0.1);
            border: 1px solid rgba(211, 47, 47, 0.3);
            border-radius: 8px;
            display: none;
        }

        /* Buttons */
        .btn-group {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-top: 2rem;
            flex-wrap: wrap;
        }

        .btn {
            padding: 0.8rem 2rem;
            border: none;
            border-radius: 25px;
            font-family: 'Open Sans', sans-serif;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .btn-primary {
            background: linear-gradient(135deg, #4a7c59, #6fa86f);
            color: white;
            box-shadow: 0 4px 15px rgba(77, 124, 89, 0.3);
        }

        .btn-primary:hover {
            background: linear-gradient(135deg, #6fa86f, #4a7c59);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(77, 124, 89, 0.4);
        }

        .btn-secondary {
            background: white;
            color: #4a7c59;
            border: 2px solid #4a7c59;
            box-shadow: 0 4px 15px rgba(77, 124, 89, 0.2);
        }

        .btn-secondary:hover {
            background: #4a7c59;
            color: white;
            transform: translateY(-2px);
        }

        /* Decorative elements */
        .decorative-divider {
            text-align: center;
            margin: 3rem 0;
            color: #8bc34a;
            font-size: 1.5rem;
            opacity: 0.7;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .header h1 {
                font-size: 2rem;
            }
            
            .container {
                padding: 2rem 1rem;
            }
            
            .content-card {
                padding: 2rem;
            }
            
            .content-title {
                font-size: 1.8rem;
            }
            
            .section-title {
                font-size: 1.2rem;
            }
            
            .contact-info {
                flex-direction: column;
                gap: 1rem;
            }
            
            .btn-group {
                flex-direction: column;
                align-items: center;
            }
            
            .newsletter-form {
                max-width: none;
            }
            
            .form-group input {
                font-size: 16px; /* Previne zoom em iOS */
            }
        }

        /* Animations */
        .fade-in {
            animation: fadeIn 0.8s ease-in;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* Print styles */
        @media print {
            * {
                box-shadow: none !important;
                border-radius: 0 !important;
                text-shadow: none !important;
                animation: none !important;
                transition: none !important;
            }
            
            body {
                background: white !important;
                font-family: Arial, sans-serif !important;
                font-size: 12pt !important;
                line-height: 1.4 !important;
                color: black !important;
                margin: 0 !important;
                padding: 0 !important;
            }
            
            .header, .btn-group, .decorative-divider {
                display: none !important;
            }
            
            .container {
                max-width: none !important;
                margin: 0 !important;
                padding: 20px !important;
            }
            
            .content-card {
                box-shadow: none !important;
                border: none !important;
                padding: 0 !important;
                background: white !important;
            }
            
            .content-card::before {
                display: none !important;
            }
            
            /* Cabeçalho do documento */
            .print-header {
                display: block !important;
                text-align: center !important;
                margin-bottom: 30px !important;
                border-bottom: 2px solid black !important;
                padding-bottom: 15px !important;
            }
            
            .print-title {
                font-size: 18pt !important;
                font-weight: bold !important;
                margin: 0 0 8px 0 !important;
                text-transform: uppercase !important;
            }
            
            .print-subtitle {
                font-size: 14pt !important;
                margin: 0 !important;
                font-style: italic !important;
            }
            
            .content-title {
                display: none !important;
            }
            
            .section {
                margin-bottom: 20px !important;
                page-break-inside: avoid !important;
            }
            
            .section-title {
                font-size: 14pt !important;
                font-weight: bold !important;
                color: black !important;
                margin: 20px 0 10px 0 !important;
                padding: 0 !important;
                border: none !important;
                display: block !important;
                text-transform: uppercase !important;
            }
            
            .section-content {
                background: white !important;
                padding: 0 !important;
                border: none !important;
                margin: 0 0 15px 0 !important;
            }
            
            .section-content p {
                margin: 0 0 10px 0 !important;
                text-align: justify !important;
                font-size: 11pt !important;
                line-height: 1.3 !important;
                text-indent: 0 !important;
            }
            
            .guidelines-list {
                margin: 10px 0 0 0 !important;
                padding: 0 0 0 25px !important;
                list-style: none !important;
            }
            
            .guidelines-list li {
                background: white !important;
                margin: 0 0 8px 0 !important;
                padding: 0 0 0 15px !important;
                border: none !important;
                box-shadow: none !important;
                font-size: 11pt !important;
                line-height: 1.3 !important;
                display: list-item !important;
                position: relative !important;
            }
            
            .guidelines-list li::before {
                content: "• " !important;
                position: absolute !important;
                left: -15px !important;
                top: 0 !important;
                color: black !important;
                font-weight: bold !important;
                transform: none !important;
            }
            
            .important-box {
                background: white !important;
                border: 2px solid black !important;
                border-radius: 0 !important;
                padding: 15px !important;
                margin: 20px 0 !important;
                page-break-inside: avoid !important;
                position: relative !important;
            }
            
            .important-box::before {
                content: "IMPORTANTE: " !important;
                position: static !important;
                background: white !important;
                padding: 0 !important;
                font-size: 12pt !important;
                font-weight: bold !important;
                display: block !important;
                margin-bottom: 8px !important;
                text-transform: uppercase !important;
            }
            
            .important-title {
                font-weight: bold !important;
                color: black !important;
                margin: 0 0 8px 0 !important;
                font-size: 11pt !important;
                text-transform: uppercase !important;
            }
            
            .important-box p {
                margin: 0 !important;
                font-size: 11pt !important;
                line-height: 1.3 !important;
                text-align: justify !important;
            }
            
            .contact-box {
                background: white !important;
                border: 1px solid black !important;
                border-radius: 0 !important;
                padding: 15px !important;
                text-align: left !important;
                margin: 20px 0 0 0 !important;
                page-break-inside: avoid !important;
            }
            
            .contact-title {
                font-size: 12pt !important;
                font-weight: bold !important;
                color: black !important;
                margin: 0 0 10px 0 !important;
                display: block !important;
                text-transform: uppercase !important;
            }
            
            .contact-info {
                display: block !important;
                margin: 0 !important;
            }
            
            .contact-item {
                display: block !important;
                margin: 5px 0 !important;
                color: black !important;
                font-size: 11pt !important;
            }
            
            .contact-item a {
                color: black !important;
                text-decoration: none !important;
            }
            
            .newsletter-box {
                background: white !important;
                border: 1px solid black !important;
                border-radius: 0 !important;
                padding: 15px !important;
                text-align: left !important;
                margin: 20px 0 !important;
                page-break-inside: avoid !important;
            }
            
            .newsletter-title {
                font-size: 12pt !important;
                font-weight: bold !important;
                color: black !important;
                margin: 0 0 10px 0 !important;
                display: block !important;
                text-transform: uppercase !important;
            }
            
            .newsletter-form {
                display: none !important;
            }
            
            /* Configurações da página */
            @page {
                margin: 2.5cm;
                size: A4;
            }
        }